2007-11-16 20:58:56 +00:00
|
|
|
unit schRemesasClienteServer_Intf;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2007-11-20 15:45:03 +00:00
|
|
|
Classes, DB, SysUtils, uROClasses, uDADataTable, uDABusinessProcessor, FmtBCD, uROXMLIntf, schRemesasClienteClient_Intf;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
const
|
|
|
|
|
{ Delta rules ids
|
|
|
|
|
Feel free to change them to something more human readable
|
|
|
|
|
but make sure they are unique in the context of your application }
|
2007-11-20 15:45:03 +00:00
|
|
|
RID_darReferenciaDelta = '{93BE415A-B388-496F-B435-1AA6D4F3535C}';
|
|
|
|
|
RID_RemesasClienteDelta = '{090FFD4E-3541-40D8-9577-9A6BBB35ECEB}';
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
{ IdarReferenciaDelta }
|
|
|
|
|
IdarReferenciaDelta = interface(IdarReferencia)
|
2007-11-20 15:45:03 +00:00
|
|
|
['{93BE415A-B388-496F-B435-1AA6D4F3535C}']
|
2007-11-16 20:58:56 +00:00
|
|
|
{ Property getters and setters }
|
|
|
|
|
function GetOldVALORValue : String;
|
|
|
|
|
|
|
|
|
|
{ Properties }
|
|
|
|
|
property OldVALOR : String read GetOldVALORValue;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
{ TdarReferenciaBusinessProcessorRules }
|
|
|
|
|
TdarReferenciaBusinessProcessorRules = class(TDABusinessProcessorRules, IdarReferencia, IdarReferenciaDelta)
|
|
|
|
|
private
|
|
|
|
|
protected
|
|
|
|
|
{ Property getters and setters }
|
|
|
|
|
function GetVALORValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetVALORIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldVALORValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldVALORIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetVALORValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetVALORIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
{ Properties }
|
|
|
|
|
property VALOR : String read GetVALORValue write SetVALORValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property VALORIsNull : Boolean read GetVALORIsNull write SetVALORIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldVALOR : String read GetOldVALORValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldVALORIsNull : Boolean read GetOldVALORIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
{ IRemesasClienteDelta }
|
|
|
|
|
IRemesasClienteDelta = interface(IRemesasCliente)
|
2007-11-20 15:45:03 +00:00
|
|
|
['{090FFD4E-3541-40D8-9577-9A6BBB35ECEB}']
|
2007-11-16 20:58:56 +00:00
|
|
|
{ Property getters and setters }
|
|
|
|
|
function GetOldIDValue : Integer;
|
|
|
|
|
function GetOldID_EMPRESAValue : Integer;
|
|
|
|
|
function GetOldREFERENCIAValue : String;
|
|
|
|
|
function GetOldTIPOValue : String;
|
|
|
|
|
function GetOldFECHA_REMESAValue : DateTime;
|
|
|
|
|
function GetOldDESCRIPCIONValue : String;
|
|
|
|
|
function GetOldID_DATOS_BANCOValue : Integer;
|
|
|
|
|
function GetOldFECHA_ALTAValue : DateTime;
|
|
|
|
|
function GetOldFECHA_MODIFICACIONValue : DateTime;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldUSUARIOValue : String;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldNOMBREValue : String;
|
|
|
|
|
function GetOldENTIDADValue : String;
|
|
|
|
|
function GetOldSUCURSALValue : String;
|
|
|
|
|
function GetOldDCValue : String;
|
|
|
|
|
function GetOldCUENTAValue : String;
|
|
|
|
|
function GetOldSUFIJO_N19Value : String;
|
|
|
|
|
function GetOldSUFIJO_N58Value : String;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldIMPORTE_TOTALValue : Currency;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
{ Properties }
|
|
|
|
|
property OldID : Integer read GetOldIDValue;
|
|
|
|
|
property OldID_EMPRESA : Integer read GetOldID_EMPRESAValue;
|
|
|
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
|
|
|
property OldTIPO : String read GetOldTIPOValue;
|
|
|
|
|
property OldFECHA_REMESA : DateTime read GetOldFECHA_REMESAValue;
|
|
|
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
|
|
|
|
property OldID_DATOS_BANCO : Integer read GetOldID_DATOS_BANCOValue;
|
|
|
|
|
property OldFECHA_ALTA : DateTime read GetOldFECHA_ALTAValue;
|
|
|
|
|
property OldFECHA_MODIFICACION : DateTime read GetOldFECHA_MODIFICACIONValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldUSUARIO : String read GetOldUSUARIOValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
|
|
|
property OldENTIDAD : String read GetOldENTIDADValue;
|
|
|
|
|
property OldSUCURSAL : String read GetOldSUCURSALValue;
|
|
|
|
|
property OldDC : String read GetOldDCValue;
|
|
|
|
|
property OldCUENTA : String read GetOldCUENTAValue;
|
|
|
|
|
property OldSUFIJO_N19 : String read GetOldSUFIJO_N19Value;
|
|
|
|
|
property OldSUFIJO_N58 : String read GetOldSUFIJO_N58Value;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
{ TRemesasClienteBusinessProcessorRules }
|
|
|
|
|
TRemesasClienteBusinessProcessorRules = class(TDABusinessProcessorRules, IRemesasCliente, IRemesasClienteDelta)
|
|
|
|
|
private
|
|
|
|
|
protected
|
|
|
|
|
{ Property getters and setters }
|
|
|
|
|
function GetIDValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetIDIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldIDValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldIDIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetID_EMPRESAValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetID_EMPRESAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldID_EMPRESAValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldID_EMPRESAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetID_EMPRESAValue(const aValue: Integer); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetID_EMPRESAIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetREFERENCIAValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetREFERENCIAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldREFERENCIAValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldREFERENCIAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetREFERENCIAValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetTIPOValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetTIPOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldTIPOValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldTIPOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetTIPOValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetTIPOIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetFECHA_REMESAValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetFECHA_REMESAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldFECHA_REMESAValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldFECHA_REMESAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetFECHA_REMESAValue(const aValue: DateTime); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetFECHA_REMESAIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetDESCRIPCIONValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetDESCRIPCIONIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldDESCRIPCIONValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldDESCRIPCIONIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetDESCRIPCIONValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetDESCRIPCIONIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetID_DATOS_BANCOValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetID_DATOS_BANCOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldID_DATOS_BANCOValue: Integer; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldID_DATOS_BANCOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetID_DATOS_BANCOValue(const aValue: Integer); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetID_DATOS_BANCOIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetFECHA_ALTAValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetFECHA_ALTAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldFECHA_ALTAValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldFECHA_ALTAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetFECHA_ALTAValue(const aValue: DateTime); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetFECHA_ALTAIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetFECHA_MODIFICACIONValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetFECHA_MODIFICACIONIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldFECHA_MODIFICACIONValue: DateTime; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldFECHA_MODIFICACIONIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetFECHA_MODIFICACIONValue(const aValue: DateTime); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetFECHA_MODIFICACIONIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetUSUARIOValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetUSUARIOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldUSUARIOValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldUSUARIOIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetUSUARIOValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetUSUARIOIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetNOMBREValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetNOMBREIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldNOMBREValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldNOMBREIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetNOMBREValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetNOMBREIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetENTIDADValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetENTIDADIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldENTIDADValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldENTIDADIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetENTIDADValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetENTIDADIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetSUCURSALValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetSUCURSALIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldSUCURSALValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldSUCURSALIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetSUCURSALValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetSUCURSALIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetDCValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetDCIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldDCValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldDCIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetDCValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetDCIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetCUENTAValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetCUENTAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldCUENTAValue: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldCUENTAIsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetCUENTAValue(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetCUENTAIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetSUFIJO_N19Value: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetSUFIJO_N19IsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldSUFIJO_N19Value: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldSUFIJO_N19IsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetSUFIJO_N19Value(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetSUFIJO_N19IsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetSUFIJO_N58Value: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetSUFIJO_N58IsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetOldSUFIJO_N58Value: String; virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
function GetOldSUFIJO_N58IsNull: Boolean; virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure SetSUFIJO_N58Value(const aValue: String); virtual;
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure SetSUFIJO_N58IsNull(const aValue: Boolean); virtual;
|
|
|
|
|
function GetIMPORTE_TOTALValue: Currency; virtual;
|
|
|
|
|
function GetIMPORTE_TOTALIsNull: Boolean; virtual;
|
|
|
|
|
function GetOldIMPORTE_TOTALValue: Currency; virtual;
|
|
|
|
|
function GetOldIMPORTE_TOTALIsNull: Boolean; virtual;
|
|
|
|
|
procedure SetIMPORTE_TOTALValue(const aValue: Currency); virtual;
|
|
|
|
|
procedure SetIMPORTE_TOTALIsNull(const aValue: Boolean); virtual;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
{ Properties }
|
|
|
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldID : Integer read GetOldIDValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property ID_EMPRESA : Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property ID_EMPRESAIsNull : Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldID_EMPRESA : Integer read GetOldID_EMPRESAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldID_EMPRESAIsNull : Boolean read GetOldID_EMPRESAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property REFERENCIA : String read GetREFERENCIAValue write SetREFERENCIAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property REFERENCIAIsNull : Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldREFERENCIAIsNull : Boolean read GetOldREFERENCIAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property TIPO : String read GetTIPOValue write SetTIPOValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property TIPOIsNull : Boolean read GetTIPOIsNull write SetTIPOIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldTIPO : String read GetOldTIPOValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldTIPOIsNull : Boolean read GetOldTIPOIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property FECHA_REMESA : DateTime read GetFECHA_REMESAValue write SetFECHA_REMESAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property FECHA_REMESAIsNull : Boolean read GetFECHA_REMESAIsNull write SetFECHA_REMESAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldFECHA_REMESA : DateTime read GetOldFECHA_REMESAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldFECHA_REMESAIsNull : Boolean read GetOldFECHA_REMESAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property DESCRIPCION : String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property DESCRIPCIONIsNull : Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldDESCRIPCIONIsNull : Boolean read GetOldDESCRIPCIONIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property ID_DATOS_BANCO : Integer read GetID_DATOS_BANCOValue write SetID_DATOS_BANCOValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property ID_DATOS_BANCOIsNull : Boolean read GetID_DATOS_BANCOIsNull write SetID_DATOS_BANCOIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldID_DATOS_BANCO : Integer read GetOldID_DATOS_BANCOValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldID_DATOS_BANCOIsNull : Boolean read GetOldID_DATOS_BANCOIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property FECHA_ALTA : DateTime read GetFECHA_ALTAValue write SetFECHA_ALTAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property FECHA_ALTAIsNull : Boolean read GetFECHA_ALTAIsNull write SetFECHA_ALTAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldFECHA_ALTA : DateTime read GetOldFECHA_ALTAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldFECHA_ALTAIsNull : Boolean read GetOldFECHA_ALTAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property FECHA_MODIFICACION : DateTime read GetFECHA_MODIFICACIONValue write SetFECHA_MODIFICACIONValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property FECHA_MODIFICACIONIsNull : Boolean read GetFECHA_MODIFICACIONIsNull write SetFECHA_MODIFICACIONIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldFECHA_MODIFICACION : DateTime read GetOldFECHA_MODIFICACIONValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldFECHA_MODIFICACIONIsNull : Boolean read GetOldFECHA_MODIFICACIONIsNull;
|
|
|
|
|
property USUARIO : String read GetUSUARIOValue write SetUSUARIOValue;
|
|
|
|
|
property USUARIOIsNull : Boolean read GetUSUARIOIsNull write SetUSUARIOIsNull;
|
|
|
|
|
property OldUSUARIO : String read GetOldUSUARIOValue;
|
|
|
|
|
property OldUSUARIOIsNull : Boolean read GetOldUSUARIOIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property NOMBRE : String read GetNOMBREValue write SetNOMBREValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property NOMBREIsNull : Boolean read GetNOMBREIsNull write SetNOMBREIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldNOMBREIsNull : Boolean read GetOldNOMBREIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property ENTIDAD : String read GetENTIDADValue write SetENTIDADValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property ENTIDADIsNull : Boolean read GetENTIDADIsNull write SetENTIDADIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldENTIDAD : String read GetOldENTIDADValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldENTIDADIsNull : Boolean read GetOldENTIDADIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property SUCURSAL : String read GetSUCURSALValue write SetSUCURSALValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property SUCURSALIsNull : Boolean read GetSUCURSALIsNull write SetSUCURSALIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldSUCURSAL : String read GetOldSUCURSALValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldSUCURSALIsNull : Boolean read GetOldSUCURSALIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property DC : String read GetDCValue write SetDCValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property DCIsNull : Boolean read GetDCIsNull write SetDCIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldDC : String read GetOldDCValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldDCIsNull : Boolean read GetOldDCIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property CUENTA : String read GetCUENTAValue write SetCUENTAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property CUENTAIsNull : Boolean read GetCUENTAIsNull write SetCUENTAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldCUENTA : String read GetOldCUENTAValue;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldCUENTAIsNull : Boolean read GetOldCUENTAIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property SUFIJO_N19 : String read GetSUFIJO_N19Value write SetSUFIJO_N19Value;
|
2007-11-20 15:45:03 +00:00
|
|
|
property SUFIJO_N19IsNull : Boolean read GetSUFIJO_N19IsNull write SetSUFIJO_N19IsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldSUFIJO_N19 : String read GetOldSUFIJO_N19Value;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldSUFIJO_N19IsNull : Boolean read GetOldSUFIJO_N19IsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property SUFIJO_N58 : String read GetSUFIJO_N58Value write SetSUFIJO_N58Value;
|
2007-11-20 15:45:03 +00:00
|
|
|
property SUFIJO_N58IsNull : Boolean read GetSUFIJO_N58IsNull write SetSUFIJO_N58IsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
property OldSUFIJO_N58 : String read GetOldSUFIJO_N58Value;
|
2007-11-20 15:45:03 +00:00
|
|
|
property OldSUFIJO_N58IsNull : Boolean read GetOldSUFIJO_N58IsNull;
|
|
|
|
|
property IMPORTE_TOTAL : Currency read GetIMPORTE_TOTALValue write SetIMPORTE_TOTALValue;
|
|
|
|
|
property IMPORTE_TOTALIsNull : Boolean read GetIMPORTE_TOTALIsNull write SetIMPORTE_TOTALIsNull;
|
|
|
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
|
|
|
|
property OldIMPORTE_TOTALIsNull : Boolean read GetOldIMPORTE_TOTALIsNull;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2007-11-20 15:45:03 +00:00
|
|
|
Variants, uROBinaryHelpers, uDAInterfaces;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
{ TdarReferenciaBusinessProcessorRules }
|
|
|
|
|
constructor TdarReferenciaBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
destructor TdarReferenciaBusinessProcessorRules.Destroy;
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TdarReferenciaBusinessProcessorRules.GetVALORValue: String;
|
|
|
|
|
begin
|
|
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_darReferenciaVALOR];
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TdarReferenciaBusinessProcessorRules.GetVALORIsNull: Boolean;
|
|
|
|
|
begin
|
|
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_darReferenciaVALOR]);
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-16 20:58:56 +00:00
|
|
|
function TdarReferenciaBusinessProcessorRules.GetOldVALORValue: String;
|
|
|
|
|
begin
|
|
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_darReferenciaVALOR];
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TdarReferenciaBusinessProcessorRules.GetOldVALORIsNull: Boolean;
|
|
|
|
|
begin
|
|
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_darReferenciaVALOR]);
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-16 20:58:56 +00:00
|
|
|
procedure TdarReferenciaBusinessProcessorRules.SetVALORValue(const aValue: String);
|
|
|
|
|
begin
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_darReferenciaVALOR] := aValue;
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TdarReferenciaBusinessProcessorRules.SetVALORIsNull(const aValue: Boolean);
|
|
|
|
|
begin
|
|
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_darReferenciaVALOR] := Null;
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
{ TRemesasClienteBusinessProcessorRules }
|
|
|
|
|
constructor TRemesasClienteBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
destructor TRemesasClienteBusinessProcessorRules.Destroy;
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TRemesasClienteBusinessProcessorRules.GetIDValue: Integer;
|
|
|
|
|
begin
|
|
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID];
|
|
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetIDIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldIDValue: Integer;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetID_EMPRESAValue: Integer;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_EMPRESA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetID_EMPRESAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_EMPRESA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldID_EMPRESAValue: Integer;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID_EMPRESA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldID_EMPRESAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID_EMPRESA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetID_EMPRESAValue(const aValue: Integer);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_EMPRESA] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetID_EMPRESAIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_EMPRESA] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetREFERENCIAValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteREFERENCIA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteREFERENCIA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteREFERENCIA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteREFERENCIA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteREFERENCIA] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteREFERENCIA] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetTIPOValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteTIPO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetTIPOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteTIPO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldTIPOValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteTIPO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldTIPOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteTIPO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetTIPOValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteTIPO] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetTIPOIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteTIPO] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_REMESAValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_REMESA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_REMESAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_REMESA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_REMESAValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_REMESA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_REMESAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_REMESA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_REMESAValue(const aValue: DateTime);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_REMESA] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_REMESAIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_REMESA] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetDESCRIPCIONValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDESCRIPCION];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetDESCRIPCIONIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDESCRIPCION]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldDESCRIPCIONValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteDESCRIPCION];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldDESCRIPCIONIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteDESCRIPCION]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetDESCRIPCIONValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDESCRIPCION] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetDESCRIPCIONIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDESCRIPCION] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetID_DATOS_BANCOValue: Integer;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_DATOS_BANCO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetID_DATOS_BANCOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_DATOS_BANCO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldID_DATOS_BANCOValue: Integer;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID_DATOS_BANCO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldID_DATOS_BANCOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteID_DATOS_BANCO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetID_DATOS_BANCOValue(const aValue: Integer);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_DATOS_BANCO] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetID_DATOS_BANCOIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteID_DATOS_BANCO] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_ALTAValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_ALTA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_ALTAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_ALTA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_ALTAValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_ALTA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_ALTAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_ALTA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_ALTAValue(const aValue: DateTime);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_ALTA] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_ALTAIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_ALTA] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_MODIFICACIONValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_MODIFICACION];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetFECHA_MODIFICACIONIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_MODIFICACION]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONValue: DateTime;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_MODIFICACION];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteFECHA_MODIFICACION]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_MODIFICACIONValue(const aValue: DateTime);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_MODIFICACION] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetFECHA_MODIFICACIONIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteFECHA_MODIFICACION] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetUSUARIOValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteUSUARIO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetUSUARIOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteUSUARIO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldUSUARIOValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteUSUARIO];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldUSUARIOIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteUSUARIO]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetUSUARIOValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteUSUARIO] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetUSUARIOIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteUSUARIO] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetNOMBREValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteNOMBRE];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetNOMBREIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteNOMBRE]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldNOMBREValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteNOMBRE];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldNOMBREIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteNOMBRE]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetNOMBREValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteNOMBRE] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetNOMBREIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteNOMBRE] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetENTIDADValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteENTIDAD];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetENTIDADIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteENTIDAD]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldENTIDADValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteENTIDAD];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldENTIDADIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteENTIDAD]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetENTIDADValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteENTIDAD] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetENTIDADIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteENTIDAD] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUCURSALValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUCURSAL];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUCURSALIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUCURSAL]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUCURSALValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUCURSAL];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUCURSALIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUCURSAL]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUCURSALValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUCURSAL] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUCURSALIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUCURSAL] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetDCValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDC];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetDCIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDC]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldDCValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteDC];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldDCIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteDC]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetDCValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDC] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetDCIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteDC] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetCUENTAValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteCUENTA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetCUENTAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteCUENTA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldCUENTAValue: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteCUENTA];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldCUENTAIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteCUENTA]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetCUENTAValue(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteCUENTA] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetCUENTAIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteCUENTA] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUFIJO_N19Value: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N19];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUFIJO_N19IsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N19]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUFIJO_N19Value: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUFIJO_N19];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUFIJO_N19IsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUFIJO_N19]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUFIJO_N19Value(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N19] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUFIJO_N19IsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N19] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUFIJO_N58Value: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N58];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetSUFIJO_N58IsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N58]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUFIJO_N58Value: String;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUFIJO_N58];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldSUFIJO_N58IsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteSUFIJO_N58]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUFIJO_N58Value(const aValue: String);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N58] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetSUFIJO_N58IsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteSUFIJO_N58] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetIMPORTE_TOTALValue: Currency;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteIMPORTE_TOTAL];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetIMPORTE_TOTALIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteIMPORTE_TOTAL]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldIMPORTE_TOTALValue: Currency;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteIMPORTE_TOTAL];
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
function TRemesasClienteBusinessProcessorRules.GetOldIMPORTE_TOTALIsNull: Boolean;
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_RemesasClienteIMPORTE_TOTAL]);
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetIMPORTE_TOTALValue(const aValue: Currency);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteIMPORTE_TOTAL] := aValue;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
2007-11-20 15:45:03 +00:00
|
|
|
procedure TRemesasClienteBusinessProcessorRules.SetIMPORTE_TOTALIsNull(const aValue: Boolean);
|
2007-11-16 20:58:56 +00:00
|
|
|
begin
|
2007-11-20 15:45:03 +00:00
|
|
|
if aValue then
|
|
|
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_RemesasClienteIMPORTE_TOTAL] := Null;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initialization
|
|
|
|
|
RegisterBusinessProcessorRules(RID_darReferenciaDelta, TdarReferenciaBusinessProcessorRules);
|
|
|
|
|
RegisterBusinessProcessorRules(RID_RemesasClienteDelta, TRemesasClienteBusinessProcessorRules);
|
|
|
|
|
|
|
|
|
|
end.
|