TAnticipo

<< Click to Display Table of Contents >>

Navigation:  Web Service > Funciones > Classes >

TAnticipo

TAnticipo = class(TRemotable)

private

   FNuCliente: LongInt;

   FNuClienteDisPRO: LongInt;

   FReferencia:LongInt;    

 {Folio de transferencia, este Folio se usara para

 verificar que no se duplique el anticipo}

   FFecha: TDateTime;

   FDescripcion: string;   {Motivo del Anticipo}

   FImporte: Double;       {Los Importes siempre son en PESOS}

   FCtaPago: string;       {Los últimos 4 Dígitos de la Tarjeta}

   FAutorizacion: string;  {Código de Autorización de Transferencia}

published

  property NuCliente:      LongInt  read FNuCliente write FNuCliente;

  property NuClienteDisPRO:      LongInt  read FNuClienteDisPRO write FNuClienteDisPRO;

  property Referencia:     LongInt  read FReferencia write FReferencia;

  property Fecha:          TDateTime  read FFecha write FFecha;

  property Descripcion:    string   read FDescripcion write FDescripcion;

  property Importe:        Double   read FImporte write FImporte;

  property CtaPago:        string   read FCtaPago write FCtaPago;

  property Autorizacion:   string   read FAutorizacion write FAutorizacion;

end;