git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@168 93f398dd-4eb6-7a46-baf6-13f46f578da2
4905 lines
225 KiB
ObjectPascal
4905 lines
225 KiB
ObjectPascal
unit schContratosClienteServer_Intf;
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, DB, SysUtils, uROClasses, uDADataTable, uDABusinessProcessor, FmtBCD, uROXMLIntf, schContratosClienteClient_Intf;
|
|
|
|
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 }
|
|
RID_ValoresDelta = '{AB534F6D-5CB4-42AE-99A6-DB32A159786A}';
|
|
RID_PropiedadesDelta = '{0A5AD994-2440-429C-ABFF-1A05AF5DC3BD}';
|
|
RID_ListaAnosContratosDelta = '{C4285284-A679-4D2C-951A-917136D03E11}';
|
|
RID_ContratosClienteBeneficiosDelta = '{22C5CA7A-0598-4FF2-83F9-20D7A73F174B}';
|
|
RID_ContratosClienteDelta = '{540F2A27-DE58-4367-92D9-9033464DF39E}';
|
|
RID_TiposCapitulosDelta = '{46EF310E-1A4F-4C79-B660-A75D73C0ECF8}';
|
|
RID_ContratosCliente_DetallesDelta = '{83816E0E-FC42-447E-BEFB-CC135039BF11}';
|
|
|
|
type
|
|
{ IValoresDelta }
|
|
IValoresDelta = interface(IValores)
|
|
['{AB534F6D-5CB4-42AE-99A6-DB32A159786A}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_PROPIEDADValue : Integer;
|
|
function GetOldDESCRIPCIONValue : String;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_PROPIEDAD : Integer read GetOldID_PROPIEDADValue;
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
|
end;
|
|
|
|
{ TValoresBusinessProcessorRules }
|
|
TValoresBusinessProcessorRules = class(TDABusinessProcessorRules, IValores, IValoresDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetID_PROPIEDADValue: Integer; virtual;
|
|
function GetID_PROPIEDADIsNull: Boolean; virtual;
|
|
function GetOldID_PROPIEDADValue: Integer; virtual;
|
|
function GetOldID_PROPIEDADIsNull: Boolean; virtual;
|
|
procedure SetID_PROPIEDADValue(const aValue: Integer); virtual;
|
|
procedure SetID_PROPIEDADIsNull(const aValue: Boolean); virtual;
|
|
function GetDESCRIPCIONValue: String; virtual;
|
|
function GetDESCRIPCIONIsNull: Boolean; virtual;
|
|
function GetOldDESCRIPCIONValue: String; virtual;
|
|
function GetOldDESCRIPCIONIsNull: Boolean; virtual;
|
|
procedure SetDESCRIPCIONValue(const aValue: String); virtual;
|
|
procedure SetDESCRIPCIONIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property ID_PROPIEDAD : Integer read GetID_PROPIEDADValue write SetID_PROPIEDADValue;
|
|
property ID_PROPIEDADIsNull : Boolean read GetID_PROPIEDADIsNull write SetID_PROPIEDADIsNull;
|
|
property OldID_PROPIEDAD : Integer read GetOldID_PROPIEDADValue;
|
|
property OldID_PROPIEDADIsNull : Boolean read GetOldID_PROPIEDADIsNull;
|
|
property DESCRIPCION : String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
|
|
property DESCRIPCIONIsNull : Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
|
property OldDESCRIPCIONIsNull : Boolean read GetOldDESCRIPCIONIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IPropiedadesDelta }
|
|
IPropiedadesDelta = interface(IPropiedades)
|
|
['{0A5AD994-2440-429C-ABFF-1A05AF5DC3BD}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldDESCRIPCIONValue : String;
|
|
function GetOldID_PROPIEDAD_VALORESValue : Integer;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
|
property OldID_PROPIEDAD_VALORES : Integer read GetOldID_PROPIEDAD_VALORESValue;
|
|
end;
|
|
|
|
{ TPropiedadesBusinessProcessorRules }
|
|
TPropiedadesBusinessProcessorRules = class(TDABusinessProcessorRules, IPropiedades, IPropiedadesDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetDESCRIPCIONValue: String; virtual;
|
|
function GetDESCRIPCIONIsNull: Boolean; virtual;
|
|
function GetOldDESCRIPCIONValue: String; virtual;
|
|
function GetOldDESCRIPCIONIsNull: Boolean; virtual;
|
|
procedure SetDESCRIPCIONValue(const aValue: String); virtual;
|
|
procedure SetDESCRIPCIONIsNull(const aValue: Boolean); virtual;
|
|
function GetID_PROPIEDAD_VALORESValue: Integer; virtual;
|
|
function GetID_PROPIEDAD_VALORESIsNull: Boolean; virtual;
|
|
function GetOldID_PROPIEDAD_VALORESValue: Integer; virtual;
|
|
function GetOldID_PROPIEDAD_VALORESIsNull: Boolean; virtual;
|
|
procedure SetID_PROPIEDAD_VALORESValue(const aValue: Integer); virtual;
|
|
procedure SetID_PROPIEDAD_VALORESIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property DESCRIPCION : String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
|
|
property DESCRIPCIONIsNull : Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
|
|
property OldDESCRIPCION : String read GetOldDESCRIPCIONValue;
|
|
property OldDESCRIPCIONIsNull : Boolean read GetOldDESCRIPCIONIsNull;
|
|
property ID_PROPIEDAD_VALORES : Integer read GetID_PROPIEDAD_VALORESValue write SetID_PROPIEDAD_VALORESValue;
|
|
property ID_PROPIEDAD_VALORESIsNull : Boolean read GetID_PROPIEDAD_VALORESIsNull write SetID_PROPIEDAD_VALORESIsNull;
|
|
property OldID_PROPIEDAD_VALORES : Integer read GetOldID_PROPIEDAD_VALORESValue;
|
|
property OldID_PROPIEDAD_VALORESIsNull : Boolean read GetOldID_PROPIEDAD_VALORESIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IListaAnosContratosDelta }
|
|
IListaAnosContratosDelta = interface(IListaAnosContratos)
|
|
['{C4285284-A679-4D2C-951A-917136D03E11}']
|
|
{ Property getters and setters }
|
|
function GetOldANOValue : String;
|
|
|
|
{ Properties }
|
|
property OldANO : String read GetOldANOValue;
|
|
end;
|
|
|
|
{ TListaAnosContratosBusinessProcessorRules }
|
|
TListaAnosContratosBusinessProcessorRules = class(TDABusinessProcessorRules, IListaAnosContratos, IListaAnosContratosDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetANOValue: String; virtual;
|
|
function GetANOIsNull: Boolean; virtual;
|
|
function GetOldANOValue: String; virtual;
|
|
function GetOldANOIsNull: Boolean; virtual;
|
|
procedure SetANOValue(const aValue: String); virtual;
|
|
procedure SetANOIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ANO : String read GetANOValue write SetANOValue;
|
|
property ANOIsNull : Boolean read GetANOIsNull write SetANOIsNull;
|
|
property OldANO : String read GetOldANOValue;
|
|
property OldANOIsNull : Boolean read GetOldANOIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IContratosClienteBeneficiosDelta }
|
|
IContratosClienteBeneficiosDelta = interface(IContratosClienteBeneficios)
|
|
['{22C5CA7A-0598-4FF2-83F9-20D7A73F174B}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldREFERENCIAValue : String;
|
|
function GetOldFECHA_CONTRATOValue : DateTime;
|
|
function GetOldREFERENCIA_CLIENTEValue : String;
|
|
function GetOldNOMBREValue : String;
|
|
function GetOldNIF_CIFValue : String;
|
|
function GetOldIMPORTE_NETOValue : Currency;
|
|
function GetOldIMPORTE_DESCUENTOValue : Currency;
|
|
function GetOldBASE_IMPONIBLEValue : Currency;
|
|
function GetOldIMPORTE_FACTURAS_PROVEEDORValue : Currency;
|
|
function GetOldIMPORTE_BENEFICIOValue : Currency;
|
|
function GetOldPORCENTAJE_BENEFICIOValue : Currency;
|
|
function GetOldIMPORTE_FACTURAS_CLIENTEValue : Currency;
|
|
function GetOldIMPORTE_BENEFICIO_REALValue : Currency;
|
|
function GetOldPORCENTAJE_BENEFICIO_REALValue : Currency;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldFECHA_CONTRATO : DateTime read GetOldFECHA_CONTRATOValue;
|
|
property OldREFERENCIA_CLIENTE : String read GetOldREFERENCIA_CLIENTEValue;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldNIF_CIF : String read GetOldNIF_CIFValue;
|
|
property OldIMPORTE_NETO : Currency read GetOldIMPORTE_NETOValue;
|
|
property OldIMPORTE_DESCUENTO : Currency read GetOldIMPORTE_DESCUENTOValue;
|
|
property OldBASE_IMPONIBLE : Currency read GetOldBASE_IMPONIBLEValue;
|
|
property OldIMPORTE_FACTURAS_PROVEEDOR : Currency read GetOldIMPORTE_FACTURAS_PROVEEDORValue;
|
|
property OldIMPORTE_BENEFICIO : Currency read GetOldIMPORTE_BENEFICIOValue;
|
|
property OldPORCENTAJE_BENEFICIO : Currency read GetOldPORCENTAJE_BENEFICIOValue;
|
|
property OldIMPORTE_FACTURAS_CLIENTE : Currency read GetOldIMPORTE_FACTURAS_CLIENTEValue;
|
|
property OldIMPORTE_BENEFICIO_REAL : Currency read GetOldIMPORTE_BENEFICIO_REALValue;
|
|
property OldPORCENTAJE_BENEFICIO_REAL : Currency read GetOldPORCENTAJE_BENEFICIO_REALValue;
|
|
end;
|
|
|
|
{ TContratosClienteBeneficiosBusinessProcessorRules }
|
|
TContratosClienteBeneficiosBusinessProcessorRules = class(TDABusinessProcessorRules, IContratosClienteBeneficios, IContratosClienteBeneficiosDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIAValue: String; virtual;
|
|
function GetREFERENCIAIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIAValue: String; virtual;
|
|
function GetOldREFERENCIAIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIAValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
|
|
function GetFECHA_CONTRATOValue: DateTime; virtual;
|
|
function GetFECHA_CONTRATOIsNull: Boolean; virtual;
|
|
function GetOldFECHA_CONTRATOValue: DateTime; virtual;
|
|
function GetOldFECHA_CONTRATOIsNull: Boolean; virtual;
|
|
procedure SetFECHA_CONTRATOValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_CONTRATOIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIA_CLIENTEValue: String; virtual;
|
|
function GetREFERENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIA_CLIENTEValue: String; virtual;
|
|
function GetOldREFERENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIA_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIA_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetNOMBREValue: String; virtual;
|
|
function GetNOMBREIsNull: Boolean; virtual;
|
|
function GetOldNOMBREValue: String; virtual;
|
|
function GetOldNOMBREIsNull: Boolean; virtual;
|
|
procedure SetNOMBREValue(const aValue: String); virtual;
|
|
procedure SetNOMBREIsNull(const aValue: Boolean); virtual;
|
|
function GetNIF_CIFValue: String; virtual;
|
|
function GetNIF_CIFIsNull: Boolean; virtual;
|
|
function GetOldNIF_CIFValue: String; virtual;
|
|
function GetOldNIF_CIFIsNull: Boolean; virtual;
|
|
procedure SetNIF_CIFValue(const aValue: String); virtual;
|
|
procedure SetNIF_CIFIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_NETOValue: Currency; virtual;
|
|
function GetIMPORTE_NETOIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_NETOValue: Currency; virtual;
|
|
function GetOldIMPORTE_NETOIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_NETOValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_NETOIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_DESCUENTOValue: Currency; virtual;
|
|
function GetIMPORTE_DESCUENTOIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_DESCUENTOValue: Currency; virtual;
|
|
function GetOldIMPORTE_DESCUENTOIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_DESCUENTOValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_DESCUENTOIsNull(const aValue: Boolean); virtual;
|
|
function GetBASE_IMPONIBLEValue: Currency; virtual;
|
|
function GetBASE_IMPONIBLEIsNull: Boolean; virtual;
|
|
function GetOldBASE_IMPONIBLEValue: Currency; virtual;
|
|
function GetOldBASE_IMPONIBLEIsNull: Boolean; virtual;
|
|
procedure SetBASE_IMPONIBLEValue(const aValue: Currency); virtual;
|
|
procedure SetBASE_IMPONIBLEIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_FACTURAS_PROVEEDORValue: Currency; virtual;
|
|
function GetIMPORTE_FACTURAS_PROVEEDORIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_FACTURAS_PROVEEDORValue: Currency; virtual;
|
|
function GetOldIMPORTE_FACTURAS_PROVEEDORIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_FACTURAS_PROVEEDORValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_FACTURAS_PROVEEDORIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_BENEFICIOValue: Currency; virtual;
|
|
function GetIMPORTE_BENEFICIOIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_BENEFICIOValue: Currency; virtual;
|
|
function GetOldIMPORTE_BENEFICIOIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_BENEFICIOValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_BENEFICIOIsNull(const aValue: Boolean); virtual;
|
|
function GetPORCENTAJE_BENEFICIOValue: Currency; virtual;
|
|
function GetPORCENTAJE_BENEFICIOIsNull: Boolean; virtual;
|
|
function GetOldPORCENTAJE_BENEFICIOValue: Currency; virtual;
|
|
function GetOldPORCENTAJE_BENEFICIOIsNull: Boolean; virtual;
|
|
procedure SetPORCENTAJE_BENEFICIOValue(const aValue: Currency); virtual;
|
|
procedure SetPORCENTAJE_BENEFICIOIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_FACTURAS_CLIENTEValue: Currency; virtual;
|
|
function GetIMPORTE_FACTURAS_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_FACTURAS_CLIENTEValue: Currency; virtual;
|
|
function GetOldIMPORTE_FACTURAS_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_FACTURAS_CLIENTEValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_FACTURAS_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_BENEFICIO_REALValue: Currency; virtual;
|
|
function GetIMPORTE_BENEFICIO_REALIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_BENEFICIO_REALValue: Currency; virtual;
|
|
function GetOldIMPORTE_BENEFICIO_REALIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_BENEFICIO_REALValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_BENEFICIO_REALIsNull(const aValue: Boolean); virtual;
|
|
function GetPORCENTAJE_BENEFICIO_REALValue: Currency; virtual;
|
|
function GetPORCENTAJE_BENEFICIO_REALIsNull: Boolean; virtual;
|
|
function GetOldPORCENTAJE_BENEFICIO_REALValue: Currency; virtual;
|
|
function GetOldPORCENTAJE_BENEFICIO_REALIsNull: Boolean; virtual;
|
|
procedure SetPORCENTAJE_BENEFICIO_REALValue(const aValue: Currency); virtual;
|
|
procedure SetPORCENTAJE_BENEFICIO_REALIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property REFERENCIA : String read GetREFERENCIAValue write SetREFERENCIAValue;
|
|
property REFERENCIAIsNull : Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIAIsNull : Boolean read GetOldREFERENCIAIsNull;
|
|
property FECHA_CONTRATO : DateTime read GetFECHA_CONTRATOValue write SetFECHA_CONTRATOValue;
|
|
property FECHA_CONTRATOIsNull : Boolean read GetFECHA_CONTRATOIsNull write SetFECHA_CONTRATOIsNull;
|
|
property OldFECHA_CONTRATO : DateTime read GetOldFECHA_CONTRATOValue;
|
|
property OldFECHA_CONTRATOIsNull : Boolean read GetOldFECHA_CONTRATOIsNull;
|
|
property REFERENCIA_CLIENTE : String read GetREFERENCIA_CLIENTEValue write SetREFERENCIA_CLIENTEValue;
|
|
property REFERENCIA_CLIENTEIsNull : Boolean read GetREFERENCIA_CLIENTEIsNull write SetREFERENCIA_CLIENTEIsNull;
|
|
property OldREFERENCIA_CLIENTE : String read GetOldREFERENCIA_CLIENTEValue;
|
|
property OldREFERENCIA_CLIENTEIsNull : Boolean read GetOldREFERENCIA_CLIENTEIsNull;
|
|
property NOMBRE : String read GetNOMBREValue write SetNOMBREValue;
|
|
property NOMBREIsNull : Boolean read GetNOMBREIsNull write SetNOMBREIsNull;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldNOMBREIsNull : Boolean read GetOldNOMBREIsNull;
|
|
property NIF_CIF : String read GetNIF_CIFValue write SetNIF_CIFValue;
|
|
property NIF_CIFIsNull : Boolean read GetNIF_CIFIsNull write SetNIF_CIFIsNull;
|
|
property OldNIF_CIF : String read GetOldNIF_CIFValue;
|
|
property OldNIF_CIFIsNull : Boolean read GetOldNIF_CIFIsNull;
|
|
property IMPORTE_NETO : Currency read GetIMPORTE_NETOValue write SetIMPORTE_NETOValue;
|
|
property IMPORTE_NETOIsNull : Boolean read GetIMPORTE_NETOIsNull write SetIMPORTE_NETOIsNull;
|
|
property OldIMPORTE_NETO : Currency read GetOldIMPORTE_NETOValue;
|
|
property OldIMPORTE_NETOIsNull : Boolean read GetOldIMPORTE_NETOIsNull;
|
|
property IMPORTE_DESCUENTO : Currency read GetIMPORTE_DESCUENTOValue write SetIMPORTE_DESCUENTOValue;
|
|
property IMPORTE_DESCUENTOIsNull : Boolean read GetIMPORTE_DESCUENTOIsNull write SetIMPORTE_DESCUENTOIsNull;
|
|
property OldIMPORTE_DESCUENTO : Currency read GetOldIMPORTE_DESCUENTOValue;
|
|
property OldIMPORTE_DESCUENTOIsNull : Boolean read GetOldIMPORTE_DESCUENTOIsNull;
|
|
property BASE_IMPONIBLE : Currency read GetBASE_IMPONIBLEValue write SetBASE_IMPONIBLEValue;
|
|
property BASE_IMPONIBLEIsNull : Boolean read GetBASE_IMPONIBLEIsNull write SetBASE_IMPONIBLEIsNull;
|
|
property OldBASE_IMPONIBLE : Currency read GetOldBASE_IMPONIBLEValue;
|
|
property OldBASE_IMPONIBLEIsNull : Boolean read GetOldBASE_IMPONIBLEIsNull;
|
|
property IMPORTE_FACTURAS_PROVEEDOR : Currency read GetIMPORTE_FACTURAS_PROVEEDORValue write SetIMPORTE_FACTURAS_PROVEEDORValue;
|
|
property IMPORTE_FACTURAS_PROVEEDORIsNull : Boolean read GetIMPORTE_FACTURAS_PROVEEDORIsNull write SetIMPORTE_FACTURAS_PROVEEDORIsNull;
|
|
property OldIMPORTE_FACTURAS_PROVEEDOR : Currency read GetOldIMPORTE_FACTURAS_PROVEEDORValue;
|
|
property OldIMPORTE_FACTURAS_PROVEEDORIsNull : Boolean read GetOldIMPORTE_FACTURAS_PROVEEDORIsNull;
|
|
property IMPORTE_BENEFICIO : Currency read GetIMPORTE_BENEFICIOValue write SetIMPORTE_BENEFICIOValue;
|
|
property IMPORTE_BENEFICIOIsNull : Boolean read GetIMPORTE_BENEFICIOIsNull write SetIMPORTE_BENEFICIOIsNull;
|
|
property OldIMPORTE_BENEFICIO : Currency read GetOldIMPORTE_BENEFICIOValue;
|
|
property OldIMPORTE_BENEFICIOIsNull : Boolean read GetOldIMPORTE_BENEFICIOIsNull;
|
|
property PORCENTAJE_BENEFICIO : Currency read GetPORCENTAJE_BENEFICIOValue write SetPORCENTAJE_BENEFICIOValue;
|
|
property PORCENTAJE_BENEFICIOIsNull : Boolean read GetPORCENTAJE_BENEFICIOIsNull write SetPORCENTAJE_BENEFICIOIsNull;
|
|
property OldPORCENTAJE_BENEFICIO : Currency read GetOldPORCENTAJE_BENEFICIOValue;
|
|
property OldPORCENTAJE_BENEFICIOIsNull : Boolean read GetOldPORCENTAJE_BENEFICIOIsNull;
|
|
property IMPORTE_FACTURAS_CLIENTE : Currency read GetIMPORTE_FACTURAS_CLIENTEValue write SetIMPORTE_FACTURAS_CLIENTEValue;
|
|
property IMPORTE_FACTURAS_CLIENTEIsNull : Boolean read GetIMPORTE_FACTURAS_CLIENTEIsNull write SetIMPORTE_FACTURAS_CLIENTEIsNull;
|
|
property OldIMPORTE_FACTURAS_CLIENTE : Currency read GetOldIMPORTE_FACTURAS_CLIENTEValue;
|
|
property OldIMPORTE_FACTURAS_CLIENTEIsNull : Boolean read GetOldIMPORTE_FACTURAS_CLIENTEIsNull;
|
|
property IMPORTE_BENEFICIO_REAL : Currency read GetIMPORTE_BENEFICIO_REALValue write SetIMPORTE_BENEFICIO_REALValue;
|
|
property IMPORTE_BENEFICIO_REALIsNull : Boolean read GetIMPORTE_BENEFICIO_REALIsNull write SetIMPORTE_BENEFICIO_REALIsNull;
|
|
property OldIMPORTE_BENEFICIO_REAL : Currency read GetOldIMPORTE_BENEFICIO_REALValue;
|
|
property OldIMPORTE_BENEFICIO_REALIsNull : Boolean read GetOldIMPORTE_BENEFICIO_REALIsNull;
|
|
property PORCENTAJE_BENEFICIO_REAL : Currency read GetPORCENTAJE_BENEFICIO_REALValue write SetPORCENTAJE_BENEFICIO_REALValue;
|
|
property PORCENTAJE_BENEFICIO_REALIsNull : Boolean read GetPORCENTAJE_BENEFICIO_REALIsNull write SetPORCENTAJE_BENEFICIO_REALIsNull;
|
|
property OldPORCENTAJE_BENEFICIO_REAL : Currency read GetOldPORCENTAJE_BENEFICIO_REALValue;
|
|
property OldPORCENTAJE_BENEFICIO_REALIsNull : Boolean read GetOldPORCENTAJE_BENEFICIO_REALIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IContratosClienteDelta }
|
|
IContratosClienteDelta = interface(IContratosCliente)
|
|
['{540F2A27-DE58-4367-92D9-9033464DF39E}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_EMPRESAValue : Integer;
|
|
function GetOldID_CLIENTEValue : Integer;
|
|
function GetOldNOMBRE_CLIENTEValue : String;
|
|
function GetOldREF_CLIENTEValue : String;
|
|
function GetOldNOMBRE_COMERCIAL_CLIENTEValue : String;
|
|
function GetOldPROCEDENCIA_CLIENTEValue : String;
|
|
function GetOldNIF_CIFValue : String;
|
|
function GetOldNOMBREValue : String;
|
|
function GetOldID_DIRECCIONValue : Integer;
|
|
function GetOldCALLEValue : String;
|
|
function GetOldPOBLACIONValue : String;
|
|
function GetOldPROVINCIAValue : String;
|
|
function GetOldCODIGO_POSTALValue : String;
|
|
function GetOldTELEFONOValue : String;
|
|
function GetOldMOVILValue : String;
|
|
function GetOldREFERENCIAValue : String;
|
|
function GetOldFECHA_CONTRATOValue : DateTime;
|
|
function GetOldSITUACIONValue : String;
|
|
function GetOldFORMA_PAGOValue : IROStrings;
|
|
function GetOldPLAZO_ENTREGAValue : IROStrings;
|
|
function GetOldOBSERVACIONESValue : IROStrings;
|
|
function GetOldINCIDENCIASValue : IROStrings;
|
|
function GetOldINCIDENCIAS_ACTIVASValue : Integer;
|
|
function GetOldFECHA_ALTAValue : DateTime;
|
|
function GetOldFECHA_MODIFICACIONValue : DateTime;
|
|
function GetOldUSUARIOValue : String;
|
|
function GetOldRECARGO_EQUIVALENCIAValue : SmallInt;
|
|
function GetOldREValue : Float;
|
|
function GetOldIMPORTE_REValue : Currency;
|
|
function GetOldID_TIPO_IVAValue : Integer;
|
|
function GetOldIVAValue : Float;
|
|
function GetOldIMPORTE_IVAValue : Currency;
|
|
function GetOldIMPORTE_NETOValue : Currency;
|
|
function GetOldIMPORTE_PORTEValue : Currency;
|
|
function GetOldID_TIENDAValue : Integer;
|
|
function GetOldTIENDAValue : String;
|
|
function GetOldBASE_IMPONIBLEValue : Currency;
|
|
function GetOldDESCUENTOValue : Float;
|
|
function GetOldIMPORTE_DESCUENTOValue : Currency;
|
|
function GetOldIMPORTE_TOTALValue : Currency;
|
|
function GetOldID_FORMA_PAGOValue : Integer;
|
|
function GetOldID_VENDEDORValue : Integer;
|
|
function GetOldVENDEDORValue : String;
|
|
function GetOldPERSONA_CONTACTOValue : String;
|
|
function GetOldTIPO_CONTRATOValue : String;
|
|
function GetOldREFERENCIA_CLIENTEValue : String;
|
|
function GetOldFACTURA_ASOCIADAValue : String;
|
|
function GetOldBASE_IMPONIBLE_FACTURASValue : Currency;
|
|
function GetOldPRECIO_PUNTOValue : Currency;
|
|
function GetOldID_DIRECCION_ENVIOValue : Integer;
|
|
function GetOldCALLE_ENVIOValue : String;
|
|
function GetOldPOBLACION_ENVIOValue : String;
|
|
function GetOldPROVINCIA_ENVIOValue : String;
|
|
function GetOldCODIGO_POSTAL_ENVIOValue : String;
|
|
function GetOldPERS_CONTACTO_ENVIOValue : String;
|
|
function GetOldTLFS_ENVIOValue : String;
|
|
function GetOldNOTAS_ENVIOValue : String;
|
|
function GetOldENVIADA_REVISADAValue : SmallInt;
|
|
function GetOldID_CONTRATO_ASOCIADOValue : Integer;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_EMPRESA : Integer read GetOldID_EMPRESAValue;
|
|
property OldID_CLIENTE : Integer read GetOldID_CLIENTEValue;
|
|
property OldNOMBRE_CLIENTE : String read GetOldNOMBRE_CLIENTEValue;
|
|
property OldREF_CLIENTE : String read GetOldREF_CLIENTEValue;
|
|
property OldNOMBRE_COMERCIAL_CLIENTE : String read GetOldNOMBRE_COMERCIAL_CLIENTEValue;
|
|
property OldPROCEDENCIA_CLIENTE : String read GetOldPROCEDENCIA_CLIENTEValue;
|
|
property OldNIF_CIF : String read GetOldNIF_CIFValue;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldID_DIRECCION : Integer read GetOldID_DIRECCIONValue;
|
|
property OldCALLE : String read GetOldCALLEValue;
|
|
property OldPOBLACION : String read GetOldPOBLACIONValue;
|
|
property OldPROVINCIA : String read GetOldPROVINCIAValue;
|
|
property OldCODIGO_POSTAL : String read GetOldCODIGO_POSTALValue;
|
|
property OldTELEFONO : String read GetOldTELEFONOValue;
|
|
property OldMOVIL : String read GetOldMOVILValue;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldFECHA_CONTRATO : DateTime read GetOldFECHA_CONTRATOValue;
|
|
property OldSITUACION : String read GetOldSITUACIONValue;
|
|
property OldFORMA_PAGO : IROStrings read GetOldFORMA_PAGOValue;
|
|
property OldPLAZO_ENTREGA : IROStrings read GetOldPLAZO_ENTREGAValue;
|
|
property OldOBSERVACIONES : IROStrings read GetOldOBSERVACIONESValue;
|
|
property OldINCIDENCIAS : IROStrings read GetOldINCIDENCIASValue;
|
|
property OldINCIDENCIAS_ACTIVAS : Integer read GetOldINCIDENCIAS_ACTIVASValue;
|
|
property OldFECHA_ALTA : DateTime read GetOldFECHA_ALTAValue;
|
|
property OldFECHA_MODIFICACION : DateTime read GetOldFECHA_MODIFICACIONValue;
|
|
property OldUSUARIO : String read GetOldUSUARIOValue;
|
|
property OldRECARGO_EQUIVALENCIA : SmallInt read GetOldRECARGO_EQUIVALENCIAValue;
|
|
property OldRE : Float read GetOldREValue;
|
|
property OldIMPORTE_RE : Currency read GetOldIMPORTE_REValue;
|
|
property OldID_TIPO_IVA : Integer read GetOldID_TIPO_IVAValue;
|
|
property OldIVA : Float read GetOldIVAValue;
|
|
property OldIMPORTE_IVA : Currency read GetOldIMPORTE_IVAValue;
|
|
property OldIMPORTE_NETO : Currency read GetOldIMPORTE_NETOValue;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldID_TIENDA : Integer read GetOldID_TIENDAValue;
|
|
property OldTIENDA : String read GetOldTIENDAValue;
|
|
property OldBASE_IMPONIBLE : Currency read GetOldBASE_IMPONIBLEValue;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldIMPORTE_DESCUENTO : Currency read GetOldIMPORTE_DESCUENTOValue;
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
|
property OldID_FORMA_PAGO : Integer read GetOldID_FORMA_PAGOValue;
|
|
property OldID_VENDEDOR : Integer read GetOldID_VENDEDORValue;
|
|
property OldVENDEDOR : String read GetOldVENDEDORValue;
|
|
property OldPERSONA_CONTACTO : String read GetOldPERSONA_CONTACTOValue;
|
|
property OldTIPO_CONTRATO : String read GetOldTIPO_CONTRATOValue;
|
|
property OldREFERENCIA_CLIENTE : String read GetOldREFERENCIA_CLIENTEValue;
|
|
property OldFACTURA_ASOCIADA : String read GetOldFACTURA_ASOCIADAValue;
|
|
property OldBASE_IMPONIBLE_FACTURAS : Currency read GetOldBASE_IMPONIBLE_FACTURASValue;
|
|
property OldPRECIO_PUNTO : Currency read GetOldPRECIO_PUNTOValue;
|
|
property OldID_DIRECCION_ENVIO : Integer read GetOldID_DIRECCION_ENVIOValue;
|
|
property OldCALLE_ENVIO : String read GetOldCALLE_ENVIOValue;
|
|
property OldPOBLACION_ENVIO : String read GetOldPOBLACION_ENVIOValue;
|
|
property OldPROVINCIA_ENVIO : String read GetOldPROVINCIA_ENVIOValue;
|
|
property OldCODIGO_POSTAL_ENVIO : String read GetOldCODIGO_POSTAL_ENVIOValue;
|
|
property OldPERS_CONTACTO_ENVIO : String read GetOldPERS_CONTACTO_ENVIOValue;
|
|
property OldTLFS_ENVIO : String read GetOldTLFS_ENVIOValue;
|
|
property OldNOTAS_ENVIO : String read GetOldNOTAS_ENVIOValue;
|
|
property OldENVIADA_REVISADA : SmallInt read GetOldENVIADA_REVISADAValue;
|
|
property OldID_CONTRATO_ASOCIADO : Integer read GetOldID_CONTRATO_ASOCIADOValue;
|
|
end;
|
|
|
|
{ TContratosClienteBusinessProcessorRules }
|
|
TContratosClienteBusinessProcessorRules = class(TDABusinessProcessorRules, IContratosCliente, IContratosClienteDelta)
|
|
private
|
|
f_FORMA_PAGO: IROStrings;
|
|
f_PLAZO_ENTREGA: IROStrings;
|
|
f_OBSERVACIONES: IROStrings;
|
|
f_INCIDENCIAS: IROStrings;
|
|
procedure FORMA_PAGO_OnChange(Sender: TObject);
|
|
procedure PLAZO_ENTREGA_OnChange(Sender: TObject);
|
|
procedure OBSERVACIONES_OnChange(Sender: TObject);
|
|
procedure INCIDENCIAS_OnChange(Sender: TObject);
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetID_EMPRESAValue: Integer; virtual;
|
|
function GetID_EMPRESAIsNull: Boolean; virtual;
|
|
function GetOldID_EMPRESAValue: Integer; virtual;
|
|
function GetOldID_EMPRESAIsNull: Boolean; virtual;
|
|
procedure SetID_EMPRESAValue(const aValue: Integer); virtual;
|
|
procedure SetID_EMPRESAIsNull(const aValue: Boolean); virtual;
|
|
function GetID_CLIENTEValue: Integer; virtual;
|
|
function GetID_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldID_CLIENTEValue: Integer; virtual;
|
|
function GetOldID_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetID_CLIENTEValue(const aValue: Integer); virtual;
|
|
procedure SetID_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetNOMBRE_CLIENTEValue: String; virtual;
|
|
function GetNOMBRE_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldNOMBRE_CLIENTEValue: String; virtual;
|
|
function GetOldNOMBRE_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetNOMBRE_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetNOMBRE_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetREF_CLIENTEValue: String; virtual;
|
|
function GetREF_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldREF_CLIENTEValue: String; virtual;
|
|
function GetOldREF_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetREF_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetREF_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetNOMBRE_COMERCIAL_CLIENTEValue: String; virtual;
|
|
function GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldNOMBRE_COMERCIAL_CLIENTEValue: String; virtual;
|
|
function GetOldNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetPROCEDENCIA_CLIENTEValue: String; virtual;
|
|
function GetPROCEDENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldPROCEDENCIA_CLIENTEValue: String; virtual;
|
|
function GetOldPROCEDENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetPROCEDENCIA_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetPROCEDENCIA_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetNIF_CIFValue: String; virtual;
|
|
function GetNIF_CIFIsNull: Boolean; virtual;
|
|
function GetOldNIF_CIFValue: String; virtual;
|
|
function GetOldNIF_CIFIsNull: Boolean; virtual;
|
|
procedure SetNIF_CIFValue(const aValue: String); virtual;
|
|
procedure SetNIF_CIFIsNull(const aValue: Boolean); virtual;
|
|
function GetNOMBREValue: String; virtual;
|
|
function GetNOMBREIsNull: Boolean; virtual;
|
|
function GetOldNOMBREValue: String; virtual;
|
|
function GetOldNOMBREIsNull: Boolean; virtual;
|
|
procedure SetNOMBREValue(const aValue: String); virtual;
|
|
procedure SetNOMBREIsNull(const aValue: Boolean); virtual;
|
|
function GetID_DIRECCIONValue: Integer; virtual;
|
|
function GetID_DIRECCIONIsNull: Boolean; virtual;
|
|
function GetOldID_DIRECCIONValue: Integer; virtual;
|
|
function GetOldID_DIRECCIONIsNull: Boolean; virtual;
|
|
procedure SetID_DIRECCIONValue(const aValue: Integer); virtual;
|
|
procedure SetID_DIRECCIONIsNull(const aValue: Boolean); virtual;
|
|
function GetCALLEValue: String; virtual;
|
|
function GetCALLEIsNull: Boolean; virtual;
|
|
function GetOldCALLEValue: String; virtual;
|
|
function GetOldCALLEIsNull: Boolean; virtual;
|
|
procedure SetCALLEValue(const aValue: String); virtual;
|
|
procedure SetCALLEIsNull(const aValue: Boolean); virtual;
|
|
function GetPOBLACIONValue: String; virtual;
|
|
function GetPOBLACIONIsNull: Boolean; virtual;
|
|
function GetOldPOBLACIONValue: String; virtual;
|
|
function GetOldPOBLACIONIsNull: Boolean; virtual;
|
|
procedure SetPOBLACIONValue(const aValue: String); virtual;
|
|
procedure SetPOBLACIONIsNull(const aValue: Boolean); virtual;
|
|
function GetPROVINCIAValue: String; virtual;
|
|
function GetPROVINCIAIsNull: Boolean; virtual;
|
|
function GetOldPROVINCIAValue: String; virtual;
|
|
function GetOldPROVINCIAIsNull: Boolean; virtual;
|
|
procedure SetPROVINCIAValue(const aValue: String); virtual;
|
|
procedure SetPROVINCIAIsNull(const aValue: Boolean); virtual;
|
|
function GetCODIGO_POSTALValue: String; virtual;
|
|
function GetCODIGO_POSTALIsNull: Boolean; virtual;
|
|
function GetOldCODIGO_POSTALValue: String; virtual;
|
|
function GetOldCODIGO_POSTALIsNull: Boolean; virtual;
|
|
procedure SetCODIGO_POSTALValue(const aValue: String); virtual;
|
|
procedure SetCODIGO_POSTALIsNull(const aValue: Boolean); virtual;
|
|
function GetTELEFONOValue: String; virtual;
|
|
function GetTELEFONOIsNull: Boolean; virtual;
|
|
function GetOldTELEFONOValue: String; virtual;
|
|
function GetOldTELEFONOIsNull: Boolean; virtual;
|
|
procedure SetTELEFONOValue(const aValue: String); virtual;
|
|
procedure SetTELEFONOIsNull(const aValue: Boolean); virtual;
|
|
function GetMOVILValue: String; virtual;
|
|
function GetMOVILIsNull: Boolean; virtual;
|
|
function GetOldMOVILValue: String; virtual;
|
|
function GetOldMOVILIsNull: Boolean; virtual;
|
|
procedure SetMOVILValue(const aValue: String); virtual;
|
|
procedure SetMOVILIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIAValue: String; virtual;
|
|
function GetREFERENCIAIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIAValue: String; virtual;
|
|
function GetOldREFERENCIAIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIAValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
|
|
function GetFECHA_CONTRATOValue: DateTime; virtual;
|
|
function GetFECHA_CONTRATOIsNull: Boolean; virtual;
|
|
function GetOldFECHA_CONTRATOValue: DateTime; virtual;
|
|
function GetOldFECHA_CONTRATOIsNull: Boolean; virtual;
|
|
procedure SetFECHA_CONTRATOValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_CONTRATOIsNull(const aValue: Boolean); virtual;
|
|
function GetSITUACIONValue: String; virtual;
|
|
function GetSITUACIONIsNull: Boolean; virtual;
|
|
function GetOldSITUACIONValue: String; virtual;
|
|
function GetOldSITUACIONIsNull: Boolean; virtual;
|
|
procedure SetSITUACIONValue(const aValue: String); virtual;
|
|
procedure SetSITUACIONIsNull(const aValue: Boolean); virtual;
|
|
function GetFORMA_PAGOValue: IROStrings; virtual;
|
|
function GetFORMA_PAGOIsNull: Boolean; virtual;
|
|
function GetOldFORMA_PAGOValue: IROStrings; virtual;
|
|
function GetOldFORMA_PAGOIsNull: Boolean; virtual;
|
|
procedure SetFORMA_PAGOIsNull(const aValue: Boolean); virtual;
|
|
function GetPLAZO_ENTREGAValue: IROStrings; virtual;
|
|
function GetPLAZO_ENTREGAIsNull: Boolean; virtual;
|
|
function GetOldPLAZO_ENTREGAValue: IROStrings; virtual;
|
|
function GetOldPLAZO_ENTREGAIsNull: Boolean; virtual;
|
|
procedure SetPLAZO_ENTREGAIsNull(const aValue: Boolean); virtual;
|
|
function GetOBSERVACIONESValue: IROStrings; virtual;
|
|
function GetOBSERVACIONESIsNull: Boolean; virtual;
|
|
function GetOldOBSERVACIONESValue: IROStrings; virtual;
|
|
function GetOldOBSERVACIONESIsNull: Boolean; virtual;
|
|
procedure SetOBSERVACIONESIsNull(const aValue: Boolean); virtual;
|
|
function GetINCIDENCIASValue: IROStrings; virtual;
|
|
function GetINCIDENCIASIsNull: Boolean; virtual;
|
|
function GetOldINCIDENCIASValue: IROStrings; virtual;
|
|
function GetOldINCIDENCIASIsNull: Boolean; virtual;
|
|
procedure SetINCIDENCIASIsNull(const aValue: Boolean); virtual;
|
|
function GetINCIDENCIAS_ACTIVASValue: Integer; virtual;
|
|
function GetINCIDENCIAS_ACTIVASIsNull: Boolean; virtual;
|
|
function GetOldINCIDENCIAS_ACTIVASValue: Integer; virtual;
|
|
function GetOldINCIDENCIAS_ACTIVASIsNull: Boolean; virtual;
|
|
procedure SetINCIDENCIAS_ACTIVASValue(const aValue: Integer); virtual;
|
|
procedure SetINCIDENCIAS_ACTIVASIsNull(const aValue: Boolean); virtual;
|
|
function GetFECHA_ALTAValue: DateTime; virtual;
|
|
function GetFECHA_ALTAIsNull: Boolean; virtual;
|
|
function GetOldFECHA_ALTAValue: DateTime; virtual;
|
|
function GetOldFECHA_ALTAIsNull: Boolean; virtual;
|
|
procedure SetFECHA_ALTAValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_ALTAIsNull(const aValue: Boolean); virtual;
|
|
function GetFECHA_MODIFICACIONValue: DateTime; virtual;
|
|
function GetFECHA_MODIFICACIONIsNull: Boolean; virtual;
|
|
function GetOldFECHA_MODIFICACIONValue: DateTime; virtual;
|
|
function GetOldFECHA_MODIFICACIONIsNull: Boolean; virtual;
|
|
procedure SetFECHA_MODIFICACIONValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_MODIFICACIONIsNull(const aValue: Boolean); virtual;
|
|
function GetUSUARIOValue: String; virtual;
|
|
function GetUSUARIOIsNull: Boolean; virtual;
|
|
function GetOldUSUARIOValue: String; virtual;
|
|
function GetOldUSUARIOIsNull: Boolean; virtual;
|
|
procedure SetUSUARIOValue(const aValue: String); virtual;
|
|
procedure SetUSUARIOIsNull(const aValue: Boolean); virtual;
|
|
function GetRECARGO_EQUIVALENCIAValue: SmallInt; virtual;
|
|
function GetRECARGO_EQUIVALENCIAIsNull: Boolean; virtual;
|
|
function GetOldRECARGO_EQUIVALENCIAValue: SmallInt; virtual;
|
|
function GetOldRECARGO_EQUIVALENCIAIsNull: Boolean; virtual;
|
|
procedure SetRECARGO_EQUIVALENCIAValue(const aValue: SmallInt); virtual;
|
|
procedure SetRECARGO_EQUIVALENCIAIsNull(const aValue: Boolean); virtual;
|
|
function GetREValue: Float; virtual;
|
|
function GetREIsNull: Boolean; virtual;
|
|
function GetOldREValue: Float; virtual;
|
|
function GetOldREIsNull: Boolean; virtual;
|
|
procedure SetREValue(const aValue: Float); virtual;
|
|
procedure SetREIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_REValue: Currency; virtual;
|
|
function GetIMPORTE_REIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_REValue: Currency; virtual;
|
|
function GetOldIMPORTE_REIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_REValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_REIsNull(const aValue: Boolean); virtual;
|
|
function GetID_TIPO_IVAValue: Integer; virtual;
|
|
function GetID_TIPO_IVAIsNull: Boolean; virtual;
|
|
function GetOldID_TIPO_IVAValue: Integer; virtual;
|
|
function GetOldID_TIPO_IVAIsNull: Boolean; virtual;
|
|
procedure SetID_TIPO_IVAValue(const aValue: Integer); virtual;
|
|
procedure SetID_TIPO_IVAIsNull(const aValue: Boolean); virtual;
|
|
function GetIVAValue: Float; virtual;
|
|
function GetIVAIsNull: Boolean; virtual;
|
|
function GetOldIVAValue: Float; virtual;
|
|
function GetOldIVAIsNull: Boolean; virtual;
|
|
procedure SetIVAValue(const aValue: Float); virtual;
|
|
procedure SetIVAIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_IVAValue: Currency; virtual;
|
|
function GetIMPORTE_IVAIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_IVAValue: Currency; virtual;
|
|
function GetOldIMPORTE_IVAIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_IVAValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_IVAIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_NETOValue: Currency; virtual;
|
|
function GetIMPORTE_NETOIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_NETOValue: Currency; virtual;
|
|
function GetOldIMPORTE_NETOIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_NETOValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_NETOIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_PORTEValue: Currency; virtual;
|
|
function GetIMPORTE_PORTEIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_PORTEValue: Currency; virtual;
|
|
function GetOldIMPORTE_PORTEIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_PORTEValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_PORTEIsNull(const aValue: Boolean); virtual;
|
|
function GetID_TIENDAValue: Integer; virtual;
|
|
function GetID_TIENDAIsNull: Boolean; virtual;
|
|
function GetOldID_TIENDAValue: Integer; virtual;
|
|
function GetOldID_TIENDAIsNull: Boolean; virtual;
|
|
procedure SetID_TIENDAValue(const aValue: Integer); virtual;
|
|
procedure SetID_TIENDAIsNull(const aValue: Boolean); virtual;
|
|
function GetTIENDAValue: String; virtual;
|
|
function GetTIENDAIsNull: Boolean; virtual;
|
|
function GetOldTIENDAValue: String; virtual;
|
|
function GetOldTIENDAIsNull: Boolean; virtual;
|
|
procedure SetTIENDAValue(const aValue: String); virtual;
|
|
procedure SetTIENDAIsNull(const aValue: Boolean); virtual;
|
|
function GetBASE_IMPONIBLEValue: Currency; virtual;
|
|
function GetBASE_IMPONIBLEIsNull: Boolean; virtual;
|
|
function GetOldBASE_IMPONIBLEValue: Currency; virtual;
|
|
function GetOldBASE_IMPONIBLEIsNull: Boolean; virtual;
|
|
procedure SetBASE_IMPONIBLEValue(const aValue: Currency); virtual;
|
|
procedure SetBASE_IMPONIBLEIsNull(const aValue: Boolean); virtual;
|
|
function GetDESCUENTOValue: Float; virtual;
|
|
function GetDESCUENTOIsNull: Boolean; virtual;
|
|
function GetOldDESCUENTOValue: Float; virtual;
|
|
function GetOldDESCUENTOIsNull: Boolean; virtual;
|
|
procedure SetDESCUENTOValue(const aValue: Float); virtual;
|
|
procedure SetDESCUENTOIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_DESCUENTOValue: Currency; virtual;
|
|
function GetIMPORTE_DESCUENTOIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_DESCUENTOValue: Currency; virtual;
|
|
function GetOldIMPORTE_DESCUENTOIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_DESCUENTOValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_DESCUENTOIsNull(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;
|
|
function GetID_FORMA_PAGOValue: Integer; virtual;
|
|
function GetID_FORMA_PAGOIsNull: Boolean; virtual;
|
|
function GetOldID_FORMA_PAGOValue: Integer; virtual;
|
|
function GetOldID_FORMA_PAGOIsNull: Boolean; virtual;
|
|
procedure SetID_FORMA_PAGOValue(const aValue: Integer); virtual;
|
|
procedure SetID_FORMA_PAGOIsNull(const aValue: Boolean); virtual;
|
|
function GetID_VENDEDORValue: Integer; virtual;
|
|
function GetID_VENDEDORIsNull: Boolean; virtual;
|
|
function GetOldID_VENDEDORValue: Integer; virtual;
|
|
function GetOldID_VENDEDORIsNull: Boolean; virtual;
|
|
procedure SetID_VENDEDORValue(const aValue: Integer); virtual;
|
|
procedure SetID_VENDEDORIsNull(const aValue: Boolean); virtual;
|
|
function GetVENDEDORValue: String; virtual;
|
|
function GetVENDEDORIsNull: Boolean; virtual;
|
|
function GetOldVENDEDORValue: String; virtual;
|
|
function GetOldVENDEDORIsNull: Boolean; virtual;
|
|
procedure SetVENDEDORValue(const aValue: String); virtual;
|
|
procedure SetVENDEDORIsNull(const aValue: Boolean); virtual;
|
|
function GetPERSONA_CONTACTOValue: String; virtual;
|
|
function GetPERSONA_CONTACTOIsNull: Boolean; virtual;
|
|
function GetOldPERSONA_CONTACTOValue: String; virtual;
|
|
function GetOldPERSONA_CONTACTOIsNull: Boolean; virtual;
|
|
procedure SetPERSONA_CONTACTOValue(const aValue: String); virtual;
|
|
procedure SetPERSONA_CONTACTOIsNull(const aValue: Boolean); virtual;
|
|
function GetTIPO_CONTRATOValue: String; virtual;
|
|
function GetTIPO_CONTRATOIsNull: Boolean; virtual;
|
|
function GetOldTIPO_CONTRATOValue: String; virtual;
|
|
function GetOldTIPO_CONTRATOIsNull: Boolean; virtual;
|
|
procedure SetTIPO_CONTRATOValue(const aValue: String); virtual;
|
|
procedure SetTIPO_CONTRATOIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIA_CLIENTEValue: String; virtual;
|
|
function GetREFERENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIA_CLIENTEValue: String; virtual;
|
|
function GetOldREFERENCIA_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIA_CLIENTEValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIA_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetFACTURA_ASOCIADAValue: String; virtual;
|
|
function GetFACTURA_ASOCIADAIsNull: Boolean; virtual;
|
|
function GetOldFACTURA_ASOCIADAValue: String; virtual;
|
|
function GetOldFACTURA_ASOCIADAIsNull: Boolean; virtual;
|
|
procedure SetFACTURA_ASOCIADAValue(const aValue: String); virtual;
|
|
procedure SetFACTURA_ASOCIADAIsNull(const aValue: Boolean); virtual;
|
|
function GetBASE_IMPONIBLE_FACTURASValue: Currency; virtual;
|
|
function GetBASE_IMPONIBLE_FACTURASIsNull: Boolean; virtual;
|
|
function GetOldBASE_IMPONIBLE_FACTURASValue: Currency; virtual;
|
|
function GetOldBASE_IMPONIBLE_FACTURASIsNull: Boolean; virtual;
|
|
procedure SetBASE_IMPONIBLE_FACTURASValue(const aValue: Currency); virtual;
|
|
procedure SetBASE_IMPONIBLE_FACTURASIsNull(const aValue: Boolean); virtual;
|
|
function GetPRECIO_PUNTOValue: Currency; virtual;
|
|
function GetPRECIO_PUNTOIsNull: Boolean; virtual;
|
|
function GetOldPRECIO_PUNTOValue: Currency; virtual;
|
|
function GetOldPRECIO_PUNTOIsNull: Boolean; virtual;
|
|
procedure SetPRECIO_PUNTOValue(const aValue: Currency); virtual;
|
|
procedure SetPRECIO_PUNTOIsNull(const aValue: Boolean); virtual;
|
|
function GetID_DIRECCION_ENVIOValue: Integer; virtual;
|
|
function GetID_DIRECCION_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldID_DIRECCION_ENVIOValue: Integer; virtual;
|
|
function GetOldID_DIRECCION_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetID_DIRECCION_ENVIOValue(const aValue: Integer); virtual;
|
|
procedure SetID_DIRECCION_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetCALLE_ENVIOValue: String; virtual;
|
|
function GetCALLE_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldCALLE_ENVIOValue: String; virtual;
|
|
function GetOldCALLE_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetCALLE_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetCALLE_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetPOBLACION_ENVIOValue: String; virtual;
|
|
function GetPOBLACION_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldPOBLACION_ENVIOValue: String; virtual;
|
|
function GetOldPOBLACION_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetPOBLACION_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetPOBLACION_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetPROVINCIA_ENVIOValue: String; virtual;
|
|
function GetPROVINCIA_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldPROVINCIA_ENVIOValue: String; virtual;
|
|
function GetOldPROVINCIA_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetPROVINCIA_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetPROVINCIA_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetCODIGO_POSTAL_ENVIOValue: String; virtual;
|
|
function GetCODIGO_POSTAL_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldCODIGO_POSTAL_ENVIOValue: String; virtual;
|
|
function GetOldCODIGO_POSTAL_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetCODIGO_POSTAL_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetCODIGO_POSTAL_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetPERS_CONTACTO_ENVIOValue: String; virtual;
|
|
function GetPERS_CONTACTO_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldPERS_CONTACTO_ENVIOValue: String; virtual;
|
|
function GetOldPERS_CONTACTO_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetPERS_CONTACTO_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetPERS_CONTACTO_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetTLFS_ENVIOValue: String; virtual;
|
|
function GetTLFS_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldTLFS_ENVIOValue: String; virtual;
|
|
function GetOldTLFS_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetTLFS_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetTLFS_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetNOTAS_ENVIOValue: String; virtual;
|
|
function GetNOTAS_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldNOTAS_ENVIOValue: String; virtual;
|
|
function GetOldNOTAS_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetNOTAS_ENVIOValue(const aValue: String); virtual;
|
|
procedure SetNOTAS_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetENVIADA_REVISADAValue: SmallInt; virtual;
|
|
function GetENVIADA_REVISADAIsNull: Boolean; virtual;
|
|
function GetOldENVIADA_REVISADAValue: SmallInt; virtual;
|
|
function GetOldENVIADA_REVISADAIsNull: Boolean; virtual;
|
|
procedure SetENVIADA_REVISADAValue(const aValue: SmallInt); virtual;
|
|
procedure SetENVIADA_REVISADAIsNull(const aValue: Boolean); virtual;
|
|
function GetID_CONTRATO_ASOCIADOValue: Integer; virtual;
|
|
function GetID_CONTRATO_ASOCIADOIsNull: Boolean; virtual;
|
|
function GetOldID_CONTRATO_ASOCIADOValue: Integer; virtual;
|
|
function GetOldID_CONTRATO_ASOCIADOIsNull: Boolean; virtual;
|
|
procedure SetID_CONTRATO_ASOCIADOValue(const aValue: Integer); virtual;
|
|
procedure SetID_CONTRATO_ASOCIADOIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property ID_EMPRESA : Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
|
|
property ID_EMPRESAIsNull : Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
|
|
property OldID_EMPRESA : Integer read GetOldID_EMPRESAValue;
|
|
property OldID_EMPRESAIsNull : Boolean read GetOldID_EMPRESAIsNull;
|
|
property ID_CLIENTE : Integer read GetID_CLIENTEValue write SetID_CLIENTEValue;
|
|
property ID_CLIENTEIsNull : Boolean read GetID_CLIENTEIsNull write SetID_CLIENTEIsNull;
|
|
property OldID_CLIENTE : Integer read GetOldID_CLIENTEValue;
|
|
property OldID_CLIENTEIsNull : Boolean read GetOldID_CLIENTEIsNull;
|
|
property NOMBRE_CLIENTE : String read GetNOMBRE_CLIENTEValue write SetNOMBRE_CLIENTEValue;
|
|
property NOMBRE_CLIENTEIsNull : Boolean read GetNOMBRE_CLIENTEIsNull write SetNOMBRE_CLIENTEIsNull;
|
|
property OldNOMBRE_CLIENTE : String read GetOldNOMBRE_CLIENTEValue;
|
|
property OldNOMBRE_CLIENTEIsNull : Boolean read GetOldNOMBRE_CLIENTEIsNull;
|
|
property REF_CLIENTE : String read GetREF_CLIENTEValue write SetREF_CLIENTEValue;
|
|
property REF_CLIENTEIsNull : Boolean read GetREF_CLIENTEIsNull write SetREF_CLIENTEIsNull;
|
|
property OldREF_CLIENTE : String read GetOldREF_CLIENTEValue;
|
|
property OldREF_CLIENTEIsNull : Boolean read GetOldREF_CLIENTEIsNull;
|
|
property NOMBRE_COMERCIAL_CLIENTE : String read GetNOMBRE_COMERCIAL_CLIENTEValue write SetNOMBRE_COMERCIAL_CLIENTEValue;
|
|
property NOMBRE_COMERCIAL_CLIENTEIsNull : Boolean read GetNOMBRE_COMERCIAL_CLIENTEIsNull write SetNOMBRE_COMERCIAL_CLIENTEIsNull;
|
|
property OldNOMBRE_COMERCIAL_CLIENTE : String read GetOldNOMBRE_COMERCIAL_CLIENTEValue;
|
|
property OldNOMBRE_COMERCIAL_CLIENTEIsNull : Boolean read GetOldNOMBRE_COMERCIAL_CLIENTEIsNull;
|
|
property PROCEDENCIA_CLIENTE : String read GetPROCEDENCIA_CLIENTEValue write SetPROCEDENCIA_CLIENTEValue;
|
|
property PROCEDENCIA_CLIENTEIsNull : Boolean read GetPROCEDENCIA_CLIENTEIsNull write SetPROCEDENCIA_CLIENTEIsNull;
|
|
property OldPROCEDENCIA_CLIENTE : String read GetOldPROCEDENCIA_CLIENTEValue;
|
|
property OldPROCEDENCIA_CLIENTEIsNull : Boolean read GetOldPROCEDENCIA_CLIENTEIsNull;
|
|
property NIF_CIF : String read GetNIF_CIFValue write SetNIF_CIFValue;
|
|
property NIF_CIFIsNull : Boolean read GetNIF_CIFIsNull write SetNIF_CIFIsNull;
|
|
property OldNIF_CIF : String read GetOldNIF_CIFValue;
|
|
property OldNIF_CIFIsNull : Boolean read GetOldNIF_CIFIsNull;
|
|
property NOMBRE : String read GetNOMBREValue write SetNOMBREValue;
|
|
property NOMBREIsNull : Boolean read GetNOMBREIsNull write SetNOMBREIsNull;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldNOMBREIsNull : Boolean read GetOldNOMBREIsNull;
|
|
property ID_DIRECCION : Integer read GetID_DIRECCIONValue write SetID_DIRECCIONValue;
|
|
property ID_DIRECCIONIsNull : Boolean read GetID_DIRECCIONIsNull write SetID_DIRECCIONIsNull;
|
|
property OldID_DIRECCION : Integer read GetOldID_DIRECCIONValue;
|
|
property OldID_DIRECCIONIsNull : Boolean read GetOldID_DIRECCIONIsNull;
|
|
property CALLE : String read GetCALLEValue write SetCALLEValue;
|
|
property CALLEIsNull : Boolean read GetCALLEIsNull write SetCALLEIsNull;
|
|
property OldCALLE : String read GetOldCALLEValue;
|
|
property OldCALLEIsNull : Boolean read GetOldCALLEIsNull;
|
|
property POBLACION : String read GetPOBLACIONValue write SetPOBLACIONValue;
|
|
property POBLACIONIsNull : Boolean read GetPOBLACIONIsNull write SetPOBLACIONIsNull;
|
|
property OldPOBLACION : String read GetOldPOBLACIONValue;
|
|
property OldPOBLACIONIsNull : Boolean read GetOldPOBLACIONIsNull;
|
|
property PROVINCIA : String read GetPROVINCIAValue write SetPROVINCIAValue;
|
|
property PROVINCIAIsNull : Boolean read GetPROVINCIAIsNull write SetPROVINCIAIsNull;
|
|
property OldPROVINCIA : String read GetOldPROVINCIAValue;
|
|
property OldPROVINCIAIsNull : Boolean read GetOldPROVINCIAIsNull;
|
|
property CODIGO_POSTAL : String read GetCODIGO_POSTALValue write SetCODIGO_POSTALValue;
|
|
property CODIGO_POSTALIsNull : Boolean read GetCODIGO_POSTALIsNull write SetCODIGO_POSTALIsNull;
|
|
property OldCODIGO_POSTAL : String read GetOldCODIGO_POSTALValue;
|
|
property OldCODIGO_POSTALIsNull : Boolean read GetOldCODIGO_POSTALIsNull;
|
|
property TELEFONO : String read GetTELEFONOValue write SetTELEFONOValue;
|
|
property TELEFONOIsNull : Boolean read GetTELEFONOIsNull write SetTELEFONOIsNull;
|
|
property OldTELEFONO : String read GetOldTELEFONOValue;
|
|
property OldTELEFONOIsNull : Boolean read GetOldTELEFONOIsNull;
|
|
property MOVIL : String read GetMOVILValue write SetMOVILValue;
|
|
property MOVILIsNull : Boolean read GetMOVILIsNull write SetMOVILIsNull;
|
|
property OldMOVIL : String read GetOldMOVILValue;
|
|
property OldMOVILIsNull : Boolean read GetOldMOVILIsNull;
|
|
property REFERENCIA : String read GetREFERENCIAValue write SetREFERENCIAValue;
|
|
property REFERENCIAIsNull : Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIAIsNull : Boolean read GetOldREFERENCIAIsNull;
|
|
property FECHA_CONTRATO : DateTime read GetFECHA_CONTRATOValue write SetFECHA_CONTRATOValue;
|
|
property FECHA_CONTRATOIsNull : Boolean read GetFECHA_CONTRATOIsNull write SetFECHA_CONTRATOIsNull;
|
|
property OldFECHA_CONTRATO : DateTime read GetOldFECHA_CONTRATOValue;
|
|
property OldFECHA_CONTRATOIsNull : Boolean read GetOldFECHA_CONTRATOIsNull;
|
|
property SITUACION : String read GetSITUACIONValue write SetSITUACIONValue;
|
|
property SITUACIONIsNull : Boolean read GetSITUACIONIsNull write SetSITUACIONIsNull;
|
|
property OldSITUACION : String read GetOldSITUACIONValue;
|
|
property OldSITUACIONIsNull : Boolean read GetOldSITUACIONIsNull;
|
|
property FORMA_PAGO : IROStrings read GetFORMA_PAGOValue;
|
|
property FORMA_PAGOIsNull : Boolean read GetFORMA_PAGOIsNull write SetFORMA_PAGOIsNull;
|
|
property OldFORMA_PAGO : IROStrings read GetOldFORMA_PAGOValue;
|
|
property OldFORMA_PAGOIsNull : Boolean read GetOldFORMA_PAGOIsNull;
|
|
property PLAZO_ENTREGA : IROStrings read GetPLAZO_ENTREGAValue;
|
|
property PLAZO_ENTREGAIsNull : Boolean read GetPLAZO_ENTREGAIsNull write SetPLAZO_ENTREGAIsNull;
|
|
property OldPLAZO_ENTREGA : IROStrings read GetOldPLAZO_ENTREGAValue;
|
|
property OldPLAZO_ENTREGAIsNull : Boolean read GetOldPLAZO_ENTREGAIsNull;
|
|
property OBSERVACIONES : IROStrings read GetOBSERVACIONESValue;
|
|
property OBSERVACIONESIsNull : Boolean read GetOBSERVACIONESIsNull write SetOBSERVACIONESIsNull;
|
|
property OldOBSERVACIONES : IROStrings read GetOldOBSERVACIONESValue;
|
|
property OldOBSERVACIONESIsNull : Boolean read GetOldOBSERVACIONESIsNull;
|
|
property INCIDENCIAS : IROStrings read GetINCIDENCIASValue;
|
|
property INCIDENCIASIsNull : Boolean read GetINCIDENCIASIsNull write SetINCIDENCIASIsNull;
|
|
property OldINCIDENCIAS : IROStrings read GetOldINCIDENCIASValue;
|
|
property OldINCIDENCIASIsNull : Boolean read GetOldINCIDENCIASIsNull;
|
|
property INCIDENCIAS_ACTIVAS : Integer read GetINCIDENCIAS_ACTIVASValue write SetINCIDENCIAS_ACTIVASValue;
|
|
property INCIDENCIAS_ACTIVASIsNull : Boolean read GetINCIDENCIAS_ACTIVASIsNull write SetINCIDENCIAS_ACTIVASIsNull;
|
|
property OldINCIDENCIAS_ACTIVAS : Integer read GetOldINCIDENCIAS_ACTIVASValue;
|
|
property OldINCIDENCIAS_ACTIVASIsNull : Boolean read GetOldINCIDENCIAS_ACTIVASIsNull;
|
|
property FECHA_ALTA : DateTime read GetFECHA_ALTAValue write SetFECHA_ALTAValue;
|
|
property FECHA_ALTAIsNull : Boolean read GetFECHA_ALTAIsNull write SetFECHA_ALTAIsNull;
|
|
property OldFECHA_ALTA : DateTime read GetOldFECHA_ALTAValue;
|
|
property OldFECHA_ALTAIsNull : Boolean read GetOldFECHA_ALTAIsNull;
|
|
property FECHA_MODIFICACION : DateTime read GetFECHA_MODIFICACIONValue write SetFECHA_MODIFICACIONValue;
|
|
property FECHA_MODIFICACIONIsNull : Boolean read GetFECHA_MODIFICACIONIsNull write SetFECHA_MODIFICACIONIsNull;
|
|
property OldFECHA_MODIFICACION : DateTime read GetOldFECHA_MODIFICACIONValue;
|
|
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;
|
|
property RECARGO_EQUIVALENCIA : SmallInt read GetRECARGO_EQUIVALENCIAValue write SetRECARGO_EQUIVALENCIAValue;
|
|
property RECARGO_EQUIVALENCIAIsNull : Boolean read GetRECARGO_EQUIVALENCIAIsNull write SetRECARGO_EQUIVALENCIAIsNull;
|
|
property OldRECARGO_EQUIVALENCIA : SmallInt read GetOldRECARGO_EQUIVALENCIAValue;
|
|
property OldRECARGO_EQUIVALENCIAIsNull : Boolean read GetOldRECARGO_EQUIVALENCIAIsNull;
|
|
property RE : Float read GetREValue write SetREValue;
|
|
property REIsNull : Boolean read GetREIsNull write SetREIsNull;
|
|
property OldRE : Float read GetOldREValue;
|
|
property OldREIsNull : Boolean read GetOldREIsNull;
|
|
property IMPORTE_RE : Currency read GetIMPORTE_REValue write SetIMPORTE_REValue;
|
|
property IMPORTE_REIsNull : Boolean read GetIMPORTE_REIsNull write SetIMPORTE_REIsNull;
|
|
property OldIMPORTE_RE : Currency read GetOldIMPORTE_REValue;
|
|
property OldIMPORTE_REIsNull : Boolean read GetOldIMPORTE_REIsNull;
|
|
property ID_TIPO_IVA : Integer read GetID_TIPO_IVAValue write SetID_TIPO_IVAValue;
|
|
property ID_TIPO_IVAIsNull : Boolean read GetID_TIPO_IVAIsNull write SetID_TIPO_IVAIsNull;
|
|
property OldID_TIPO_IVA : Integer read GetOldID_TIPO_IVAValue;
|
|
property OldID_TIPO_IVAIsNull : Boolean read GetOldID_TIPO_IVAIsNull;
|
|
property IVA : Float read GetIVAValue write SetIVAValue;
|
|
property IVAIsNull : Boolean read GetIVAIsNull write SetIVAIsNull;
|
|
property OldIVA : Float read GetOldIVAValue;
|
|
property OldIVAIsNull : Boolean read GetOldIVAIsNull;
|
|
property IMPORTE_IVA : Currency read GetIMPORTE_IVAValue write SetIMPORTE_IVAValue;
|
|
property IMPORTE_IVAIsNull : Boolean read GetIMPORTE_IVAIsNull write SetIMPORTE_IVAIsNull;
|
|
property OldIMPORTE_IVA : Currency read GetOldIMPORTE_IVAValue;
|
|
property OldIMPORTE_IVAIsNull : Boolean read GetOldIMPORTE_IVAIsNull;
|
|
property IMPORTE_NETO : Currency read GetIMPORTE_NETOValue write SetIMPORTE_NETOValue;
|
|
property IMPORTE_NETOIsNull : Boolean read GetIMPORTE_NETOIsNull write SetIMPORTE_NETOIsNull;
|
|
property OldIMPORTE_NETO : Currency read GetOldIMPORTE_NETOValue;
|
|
property OldIMPORTE_NETOIsNull : Boolean read GetOldIMPORTE_NETOIsNull;
|
|
property IMPORTE_PORTE : Currency read GetIMPORTE_PORTEValue write SetIMPORTE_PORTEValue;
|
|
property IMPORTE_PORTEIsNull : Boolean read GetIMPORTE_PORTEIsNull write SetIMPORTE_PORTEIsNull;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldIMPORTE_PORTEIsNull : Boolean read GetOldIMPORTE_PORTEIsNull;
|
|
property ID_TIENDA : Integer read GetID_TIENDAValue write SetID_TIENDAValue;
|
|
property ID_TIENDAIsNull : Boolean read GetID_TIENDAIsNull write SetID_TIENDAIsNull;
|
|
property OldID_TIENDA : Integer read GetOldID_TIENDAValue;
|
|
property OldID_TIENDAIsNull : Boolean read GetOldID_TIENDAIsNull;
|
|
property TIENDA : String read GetTIENDAValue write SetTIENDAValue;
|
|
property TIENDAIsNull : Boolean read GetTIENDAIsNull write SetTIENDAIsNull;
|
|
property OldTIENDA : String read GetOldTIENDAValue;
|
|
property OldTIENDAIsNull : Boolean read GetOldTIENDAIsNull;
|
|
property BASE_IMPONIBLE : Currency read GetBASE_IMPONIBLEValue write SetBASE_IMPONIBLEValue;
|
|
property BASE_IMPONIBLEIsNull : Boolean read GetBASE_IMPONIBLEIsNull write SetBASE_IMPONIBLEIsNull;
|
|
property OldBASE_IMPONIBLE : Currency read GetOldBASE_IMPONIBLEValue;
|
|
property OldBASE_IMPONIBLEIsNull : Boolean read GetOldBASE_IMPONIBLEIsNull;
|
|
property DESCUENTO : Float read GetDESCUENTOValue write SetDESCUENTOValue;
|
|
property DESCUENTOIsNull : Boolean read GetDESCUENTOIsNull write SetDESCUENTOIsNull;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldDESCUENTOIsNull : Boolean read GetOldDESCUENTOIsNull;
|
|
property IMPORTE_DESCUENTO : Currency read GetIMPORTE_DESCUENTOValue write SetIMPORTE_DESCUENTOValue;
|
|
property IMPORTE_DESCUENTOIsNull : Boolean read GetIMPORTE_DESCUENTOIsNull write SetIMPORTE_DESCUENTOIsNull;
|
|
property OldIMPORTE_DESCUENTO : Currency read GetOldIMPORTE_DESCUENTOValue;
|
|
property OldIMPORTE_DESCUENTOIsNull : Boolean read GetOldIMPORTE_DESCUENTOIsNull;
|
|
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;
|
|
property ID_FORMA_PAGO : Integer read GetID_FORMA_PAGOValue write SetID_FORMA_PAGOValue;
|
|
property ID_FORMA_PAGOIsNull : Boolean read GetID_FORMA_PAGOIsNull write SetID_FORMA_PAGOIsNull;
|
|
property OldID_FORMA_PAGO : Integer read GetOldID_FORMA_PAGOValue;
|
|
property OldID_FORMA_PAGOIsNull : Boolean read GetOldID_FORMA_PAGOIsNull;
|
|
property ID_VENDEDOR : Integer read GetID_VENDEDORValue write SetID_VENDEDORValue;
|
|
property ID_VENDEDORIsNull : Boolean read GetID_VENDEDORIsNull write SetID_VENDEDORIsNull;
|
|
property OldID_VENDEDOR : Integer read GetOldID_VENDEDORValue;
|
|
property OldID_VENDEDORIsNull : Boolean read GetOldID_VENDEDORIsNull;
|
|
property VENDEDOR : String read GetVENDEDORValue write SetVENDEDORValue;
|
|
property VENDEDORIsNull : Boolean read GetVENDEDORIsNull write SetVENDEDORIsNull;
|
|
property OldVENDEDOR : String read GetOldVENDEDORValue;
|
|
property OldVENDEDORIsNull : Boolean read GetOldVENDEDORIsNull;
|
|
property PERSONA_CONTACTO : String read GetPERSONA_CONTACTOValue write SetPERSONA_CONTACTOValue;
|
|
property PERSONA_CONTACTOIsNull : Boolean read GetPERSONA_CONTACTOIsNull write SetPERSONA_CONTACTOIsNull;
|
|
property OldPERSONA_CONTACTO : String read GetOldPERSONA_CONTACTOValue;
|
|
property OldPERSONA_CONTACTOIsNull : Boolean read GetOldPERSONA_CONTACTOIsNull;
|
|
property TIPO_CONTRATO : String read GetTIPO_CONTRATOValue write SetTIPO_CONTRATOValue;
|
|
property TIPO_CONTRATOIsNull : Boolean read GetTIPO_CONTRATOIsNull write SetTIPO_CONTRATOIsNull;
|
|
property OldTIPO_CONTRATO : String read GetOldTIPO_CONTRATOValue;
|
|
property OldTIPO_CONTRATOIsNull : Boolean read GetOldTIPO_CONTRATOIsNull;
|
|
property REFERENCIA_CLIENTE : String read GetREFERENCIA_CLIENTEValue write SetREFERENCIA_CLIENTEValue;
|
|
property REFERENCIA_CLIENTEIsNull : Boolean read GetREFERENCIA_CLIENTEIsNull write SetREFERENCIA_CLIENTEIsNull;
|
|
property OldREFERENCIA_CLIENTE : String read GetOldREFERENCIA_CLIENTEValue;
|
|
property OldREFERENCIA_CLIENTEIsNull : Boolean read GetOldREFERENCIA_CLIENTEIsNull;
|
|
property FACTURA_ASOCIADA : String read GetFACTURA_ASOCIADAValue write SetFACTURA_ASOCIADAValue;
|
|
property FACTURA_ASOCIADAIsNull : Boolean read GetFACTURA_ASOCIADAIsNull write SetFACTURA_ASOCIADAIsNull;
|
|
property OldFACTURA_ASOCIADA : String read GetOldFACTURA_ASOCIADAValue;
|
|
property OldFACTURA_ASOCIADAIsNull : Boolean read GetOldFACTURA_ASOCIADAIsNull;
|
|
property BASE_IMPONIBLE_FACTURAS : Currency read GetBASE_IMPONIBLE_FACTURASValue write SetBASE_IMPONIBLE_FACTURASValue;
|
|
property BASE_IMPONIBLE_FACTURASIsNull : Boolean read GetBASE_IMPONIBLE_FACTURASIsNull write SetBASE_IMPONIBLE_FACTURASIsNull;
|
|
property OldBASE_IMPONIBLE_FACTURAS : Currency read GetOldBASE_IMPONIBLE_FACTURASValue;
|
|
property OldBASE_IMPONIBLE_FACTURASIsNull : Boolean read GetOldBASE_IMPONIBLE_FACTURASIsNull;
|
|
property PRECIO_PUNTO : Currency read GetPRECIO_PUNTOValue write SetPRECIO_PUNTOValue;
|
|
property PRECIO_PUNTOIsNull : Boolean read GetPRECIO_PUNTOIsNull write SetPRECIO_PUNTOIsNull;
|
|
property OldPRECIO_PUNTO : Currency read GetOldPRECIO_PUNTOValue;
|
|
property OldPRECIO_PUNTOIsNull : Boolean read GetOldPRECIO_PUNTOIsNull;
|
|
property ID_DIRECCION_ENVIO : Integer read GetID_DIRECCION_ENVIOValue write SetID_DIRECCION_ENVIOValue;
|
|
property ID_DIRECCION_ENVIOIsNull : Boolean read GetID_DIRECCION_ENVIOIsNull write SetID_DIRECCION_ENVIOIsNull;
|
|
property OldID_DIRECCION_ENVIO : Integer read GetOldID_DIRECCION_ENVIOValue;
|
|
property OldID_DIRECCION_ENVIOIsNull : Boolean read GetOldID_DIRECCION_ENVIOIsNull;
|
|
property CALLE_ENVIO : String read GetCALLE_ENVIOValue write SetCALLE_ENVIOValue;
|
|
property CALLE_ENVIOIsNull : Boolean read GetCALLE_ENVIOIsNull write SetCALLE_ENVIOIsNull;
|
|
property OldCALLE_ENVIO : String read GetOldCALLE_ENVIOValue;
|
|
property OldCALLE_ENVIOIsNull : Boolean read GetOldCALLE_ENVIOIsNull;
|
|
property POBLACION_ENVIO : String read GetPOBLACION_ENVIOValue write SetPOBLACION_ENVIOValue;
|
|
property POBLACION_ENVIOIsNull : Boolean read GetPOBLACION_ENVIOIsNull write SetPOBLACION_ENVIOIsNull;
|
|
property OldPOBLACION_ENVIO : String read GetOldPOBLACION_ENVIOValue;
|
|
property OldPOBLACION_ENVIOIsNull : Boolean read GetOldPOBLACION_ENVIOIsNull;
|
|
property PROVINCIA_ENVIO : String read GetPROVINCIA_ENVIOValue write SetPROVINCIA_ENVIOValue;
|
|
property PROVINCIA_ENVIOIsNull : Boolean read GetPROVINCIA_ENVIOIsNull write SetPROVINCIA_ENVIOIsNull;
|
|
property OldPROVINCIA_ENVIO : String read GetOldPROVINCIA_ENVIOValue;
|
|
property OldPROVINCIA_ENVIOIsNull : Boolean read GetOldPROVINCIA_ENVIOIsNull;
|
|
property CODIGO_POSTAL_ENVIO : String read GetCODIGO_POSTAL_ENVIOValue write SetCODIGO_POSTAL_ENVIOValue;
|
|
property CODIGO_POSTAL_ENVIOIsNull : Boolean read GetCODIGO_POSTAL_ENVIOIsNull write SetCODIGO_POSTAL_ENVIOIsNull;
|
|
property OldCODIGO_POSTAL_ENVIO : String read GetOldCODIGO_POSTAL_ENVIOValue;
|
|
property OldCODIGO_POSTAL_ENVIOIsNull : Boolean read GetOldCODIGO_POSTAL_ENVIOIsNull;
|
|
property PERS_CONTACTO_ENVIO : String read GetPERS_CONTACTO_ENVIOValue write SetPERS_CONTACTO_ENVIOValue;
|
|
property PERS_CONTACTO_ENVIOIsNull : Boolean read GetPERS_CONTACTO_ENVIOIsNull write SetPERS_CONTACTO_ENVIOIsNull;
|
|
property OldPERS_CONTACTO_ENVIO : String read GetOldPERS_CONTACTO_ENVIOValue;
|
|
property OldPERS_CONTACTO_ENVIOIsNull : Boolean read GetOldPERS_CONTACTO_ENVIOIsNull;
|
|
property TLFS_ENVIO : String read GetTLFS_ENVIOValue write SetTLFS_ENVIOValue;
|
|
property TLFS_ENVIOIsNull : Boolean read GetTLFS_ENVIOIsNull write SetTLFS_ENVIOIsNull;
|
|
property OldTLFS_ENVIO : String read GetOldTLFS_ENVIOValue;
|
|
property OldTLFS_ENVIOIsNull : Boolean read GetOldTLFS_ENVIOIsNull;
|
|
property NOTAS_ENVIO : String read GetNOTAS_ENVIOValue write SetNOTAS_ENVIOValue;
|
|
property NOTAS_ENVIOIsNull : Boolean read GetNOTAS_ENVIOIsNull write SetNOTAS_ENVIOIsNull;
|
|
property OldNOTAS_ENVIO : String read GetOldNOTAS_ENVIOValue;
|
|
property OldNOTAS_ENVIOIsNull : Boolean read GetOldNOTAS_ENVIOIsNull;
|
|
property ENVIADA_REVISADA : SmallInt read GetENVIADA_REVISADAValue write SetENVIADA_REVISADAValue;
|
|
property ENVIADA_REVISADAIsNull : Boolean read GetENVIADA_REVISADAIsNull write SetENVIADA_REVISADAIsNull;
|
|
property OldENVIADA_REVISADA : SmallInt read GetOldENVIADA_REVISADAValue;
|
|
property OldENVIADA_REVISADAIsNull : Boolean read GetOldENVIADA_REVISADAIsNull;
|
|
property ID_CONTRATO_ASOCIADO : Integer read GetID_CONTRATO_ASOCIADOValue write SetID_CONTRATO_ASOCIADOValue;
|
|
property ID_CONTRATO_ASOCIADOIsNull : Boolean read GetID_CONTRATO_ASOCIADOIsNull write SetID_CONTRATO_ASOCIADOIsNull;
|
|
property OldID_CONTRATO_ASOCIADO : Integer read GetOldID_CONTRATO_ASOCIADOValue;
|
|
property OldID_CONTRATO_ASOCIADOIsNull : Boolean read GetOldID_CONTRATO_ASOCIADOIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ ITiposCapitulosDelta }
|
|
ITiposCapitulosDelta = interface(ITiposCapitulos)
|
|
['{46EF310E-1A4F-4C79-B660-A75D73C0ECF8}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldPOSICIONValue : Integer;
|
|
function GetOldTIPO_DETALLEValue : String;
|
|
function GetOldTIPO_ARTICULOValue : String;
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldCONCEPTOValue : String;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldPOSICION : Integer read GetOldPOSICIONValue;
|
|
property OldTIPO_DETALLE : String read GetOldTIPO_DETALLEValue;
|
|
property OldTIPO_ARTICULO : String read GetOldTIPO_ARTICULOValue;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldCONCEPTO : String read GetOldCONCEPTOValue;
|
|
end;
|
|
|
|
{ TTiposCapitulosBusinessProcessorRules }
|
|
TTiposCapitulosBusinessProcessorRules = class(TDABusinessProcessorRules, ITiposCapitulos, ITiposCapitulosDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetPOSICIONValue: Integer; virtual;
|
|
function GetPOSICIONIsNull: Boolean; virtual;
|
|
function GetOldPOSICIONValue: Integer; virtual;
|
|
function GetOldPOSICIONIsNull: Boolean; virtual;
|
|
procedure SetPOSICIONValue(const aValue: Integer); virtual;
|
|
procedure SetPOSICIONIsNull(const aValue: Boolean); virtual;
|
|
function GetTIPO_DETALLEValue: String; virtual;
|
|
function GetTIPO_DETALLEIsNull: Boolean; virtual;
|
|
function GetOldTIPO_DETALLEValue: String; virtual;
|
|
function GetOldTIPO_DETALLEIsNull: Boolean; virtual;
|
|
procedure SetTIPO_DETALLEValue(const aValue: String); virtual;
|
|
procedure SetTIPO_DETALLEIsNull(const aValue: Boolean); virtual;
|
|
function GetTIPO_ARTICULOValue: String; virtual;
|
|
function GetTIPO_ARTICULOIsNull: Boolean; virtual;
|
|
function GetOldTIPO_ARTICULOValue: String; virtual;
|
|
function GetOldTIPO_ARTICULOIsNull: Boolean; virtual;
|
|
procedure SetTIPO_ARTICULOValue(const aValue: String); virtual;
|
|
procedure SetTIPO_ARTICULOIsNull(const aValue: Boolean); virtual;
|
|
function GetID_ARTICULOValue: Integer; virtual;
|
|
function GetID_ARTICULOIsNull: Boolean; virtual;
|
|
function GetOldID_ARTICULOValue: Integer; virtual;
|
|
function GetOldID_ARTICULOIsNull: Boolean; virtual;
|
|
procedure SetID_ARTICULOValue(const aValue: Integer); virtual;
|
|
procedure SetID_ARTICULOIsNull(const aValue: Boolean); virtual;
|
|
function GetCONCEPTOValue: String; virtual;
|
|
function GetCONCEPTOIsNull: Boolean; virtual;
|
|
function GetOldCONCEPTOValue: String; virtual;
|
|
function GetOldCONCEPTOIsNull: Boolean; virtual;
|
|
procedure SetCONCEPTOValue(const aValue: String); virtual;
|
|
procedure SetCONCEPTOIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property POSICION : Integer read GetPOSICIONValue write SetPOSICIONValue;
|
|
property POSICIONIsNull : Boolean read GetPOSICIONIsNull write SetPOSICIONIsNull;
|
|
property OldPOSICION : Integer read GetOldPOSICIONValue;
|
|
property OldPOSICIONIsNull : Boolean read GetOldPOSICIONIsNull;
|
|
property TIPO_DETALLE : String read GetTIPO_DETALLEValue write SetTIPO_DETALLEValue;
|
|
property TIPO_DETALLEIsNull : Boolean read GetTIPO_DETALLEIsNull write SetTIPO_DETALLEIsNull;
|
|
property OldTIPO_DETALLE : String read GetOldTIPO_DETALLEValue;
|
|
property OldTIPO_DETALLEIsNull : Boolean read GetOldTIPO_DETALLEIsNull;
|
|
property TIPO_ARTICULO : String read GetTIPO_ARTICULOValue write SetTIPO_ARTICULOValue;
|
|
property TIPO_ARTICULOIsNull : Boolean read GetTIPO_ARTICULOIsNull write SetTIPO_ARTICULOIsNull;
|
|
property OldTIPO_ARTICULO : String read GetOldTIPO_ARTICULOValue;
|
|
property OldTIPO_ARTICULOIsNull : Boolean read GetOldTIPO_ARTICULOIsNull;
|
|
property ID_ARTICULO : Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
|
|
property ID_ARTICULOIsNull : Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldID_ARTICULOIsNull : Boolean read GetOldID_ARTICULOIsNull;
|
|
property CONCEPTO : String read GetCONCEPTOValue write SetCONCEPTOValue;
|
|
property CONCEPTOIsNull : Boolean read GetCONCEPTOIsNull write SetCONCEPTOIsNull;
|
|
property OldCONCEPTO : String read GetOldCONCEPTOValue;
|
|
property OldCONCEPTOIsNull : Boolean read GetOldCONCEPTOIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IContratosCliente_DetallesDelta }
|
|
IContratosCliente_DetallesDelta = interface(IContratosCliente_Detalles)
|
|
['{83816E0E-FC42-447E-BEFB-CC135039BF11}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_CONTRATOValue : Integer;
|
|
function GetOldPOSICIONValue : Integer;
|
|
function GetOldTIPO_DETALLEValue : String;
|
|
function GetOldPROPIEDADValue : String;
|
|
function GetOldCONCEPTOValue : String;
|
|
function GetOldCANTIDADValue : Currency;
|
|
function GetOldIMPORTE_UNIDADValue : Currency;
|
|
function GetOldIMPORTE_TOTALValue : Currency;
|
|
function GetOldVISIBLEValue : SmallInt;
|
|
function GetOldVALORADOValue : SmallInt;
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldTIPO_ARTICULOValue : String;
|
|
function GetOldINCREMENTOValue : Float;
|
|
function GetOldDECREMENTOValue : Float;
|
|
function GetOldDESCUENTOValue : Float;
|
|
function GetOldIMPORTE_PORTEValue : Currency;
|
|
function GetOldREFERENCIAValue : String;
|
|
function GetOldREFERENCIA_PROVEEDORValue : String;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_CONTRATO : Integer read GetOldID_CONTRATOValue;
|
|
property OldPOSICION : Integer read GetOldPOSICIONValue;
|
|
property OldTIPO_DETALLE : String read GetOldTIPO_DETALLEValue;
|
|
property OldPROPIEDAD : String read GetOldPROPIEDADValue;
|
|
property OldCONCEPTO : String read GetOldCONCEPTOValue;
|
|
property OldCANTIDAD : Currency read GetOldCANTIDADValue;
|
|
property OldIMPORTE_UNIDAD : Currency read GetOldIMPORTE_UNIDADValue;
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
|
property OldVISIBLE : SmallInt read GetOldVISIBLEValue;
|
|
property OldVALORADO : SmallInt read GetOldVALORADOValue;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldTIPO_ARTICULO : String read GetOldTIPO_ARTICULOValue;
|
|
property OldINCREMENTO : Float read GetOldINCREMENTOValue;
|
|
property OldDECREMENTO : Float read GetOldDECREMENTOValue;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIA_PROVEEDOR : String read GetOldREFERENCIA_PROVEEDORValue;
|
|
end;
|
|
|
|
{ TContratosCliente_DetallesBusinessProcessorRules }
|
|
TContratosCliente_DetallesBusinessProcessorRules = class(TDABusinessProcessorRules, IContratosCliente_Detalles, IContratosCliente_DetallesDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetIDValue: Integer; virtual;
|
|
function GetIDIsNull: Boolean; virtual;
|
|
function GetOldIDValue: Integer; virtual;
|
|
function GetOldIDIsNull: Boolean; virtual;
|
|
procedure SetIDValue(const aValue: Integer); virtual;
|
|
procedure SetIDIsNull(const aValue: Boolean); virtual;
|
|
function GetID_CONTRATOValue: Integer; virtual;
|
|
function GetID_CONTRATOIsNull: Boolean; virtual;
|
|
function GetOldID_CONTRATOValue: Integer; virtual;
|
|
function GetOldID_CONTRATOIsNull: Boolean; virtual;
|
|
procedure SetID_CONTRATOValue(const aValue: Integer); virtual;
|
|
procedure SetID_CONTRATOIsNull(const aValue: Boolean); virtual;
|
|
function GetPOSICIONValue: Integer; virtual;
|
|
function GetPOSICIONIsNull: Boolean; virtual;
|
|
function GetOldPOSICIONValue: Integer; virtual;
|
|
function GetOldPOSICIONIsNull: Boolean; virtual;
|
|
procedure SetPOSICIONValue(const aValue: Integer); virtual;
|
|
procedure SetPOSICIONIsNull(const aValue: Boolean); virtual;
|
|
function GetTIPO_DETALLEValue: String; virtual;
|
|
function GetTIPO_DETALLEIsNull: Boolean; virtual;
|
|
function GetOldTIPO_DETALLEValue: String; virtual;
|
|
function GetOldTIPO_DETALLEIsNull: Boolean; virtual;
|
|
procedure SetTIPO_DETALLEValue(const aValue: String); virtual;
|
|
procedure SetTIPO_DETALLEIsNull(const aValue: Boolean); virtual;
|
|
function GetPROPIEDADValue: String; virtual;
|
|
function GetPROPIEDADIsNull: Boolean; virtual;
|
|
function GetOldPROPIEDADValue: String; virtual;
|
|
function GetOldPROPIEDADIsNull: Boolean; virtual;
|
|
procedure SetPROPIEDADValue(const aValue: String); virtual;
|
|
procedure SetPROPIEDADIsNull(const aValue: Boolean); virtual;
|
|
function GetCONCEPTOValue: String; virtual;
|
|
function GetCONCEPTOIsNull: Boolean; virtual;
|
|
function GetOldCONCEPTOValue: String; virtual;
|
|
function GetOldCONCEPTOIsNull: Boolean; virtual;
|
|
procedure SetCONCEPTOValue(const aValue: String); virtual;
|
|
procedure SetCONCEPTOIsNull(const aValue: Boolean); virtual;
|
|
function GetCANTIDADValue: Currency; virtual;
|
|
function GetCANTIDADIsNull: Boolean; virtual;
|
|
function GetOldCANTIDADValue: Currency; virtual;
|
|
function GetOldCANTIDADIsNull: Boolean; virtual;
|
|
procedure SetCANTIDADValue(const aValue: Currency); virtual;
|
|
procedure SetCANTIDADIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_UNIDADValue: Currency; virtual;
|
|
function GetIMPORTE_UNIDADIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_UNIDADValue: Currency; virtual;
|
|
function GetOldIMPORTE_UNIDADIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_UNIDADValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_UNIDADIsNull(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;
|
|
function GetVISIBLEValue: SmallInt; virtual;
|
|
function GetVISIBLEIsNull: Boolean; virtual;
|
|
function GetOldVISIBLEValue: SmallInt; virtual;
|
|
function GetOldVISIBLEIsNull: Boolean; virtual;
|
|
procedure SetVISIBLEValue(const aValue: SmallInt); virtual;
|
|
procedure SetVISIBLEIsNull(const aValue: Boolean); virtual;
|
|
function GetVALORADOValue: SmallInt; virtual;
|
|
function GetVALORADOIsNull: Boolean; virtual;
|
|
function GetOldVALORADOValue: SmallInt; virtual;
|
|
function GetOldVALORADOIsNull: Boolean; virtual;
|
|
procedure SetVALORADOValue(const aValue: SmallInt); virtual;
|
|
procedure SetVALORADOIsNull(const aValue: Boolean); virtual;
|
|
function GetID_ARTICULOValue: Integer; virtual;
|
|
function GetID_ARTICULOIsNull: Boolean; virtual;
|
|
function GetOldID_ARTICULOValue: Integer; virtual;
|
|
function GetOldID_ARTICULOIsNull: Boolean; virtual;
|
|
procedure SetID_ARTICULOValue(const aValue: Integer); virtual;
|
|
procedure SetID_ARTICULOIsNull(const aValue: Boolean); virtual;
|
|
function GetTIPO_ARTICULOValue: String; virtual;
|
|
function GetTIPO_ARTICULOIsNull: Boolean; virtual;
|
|
function GetOldTIPO_ARTICULOValue: String; virtual;
|
|
function GetOldTIPO_ARTICULOIsNull: Boolean; virtual;
|
|
procedure SetTIPO_ARTICULOValue(const aValue: String); virtual;
|
|
procedure SetTIPO_ARTICULOIsNull(const aValue: Boolean); virtual;
|
|
function GetINCREMENTOValue: Float; virtual;
|
|
function GetINCREMENTOIsNull: Boolean; virtual;
|
|
function GetOldINCREMENTOValue: Float; virtual;
|
|
function GetOldINCREMENTOIsNull: Boolean; virtual;
|
|
procedure SetINCREMENTOValue(const aValue: Float); virtual;
|
|
procedure SetINCREMENTOIsNull(const aValue: Boolean); virtual;
|
|
function GetDECREMENTOValue: Float; virtual;
|
|
function GetDECREMENTOIsNull: Boolean; virtual;
|
|
function GetOldDECREMENTOValue: Float; virtual;
|
|
function GetOldDECREMENTOIsNull: Boolean; virtual;
|
|
procedure SetDECREMENTOValue(const aValue: Float); virtual;
|
|
procedure SetDECREMENTOIsNull(const aValue: Boolean); virtual;
|
|
function GetDESCUENTOValue: Float; virtual;
|
|
function GetDESCUENTOIsNull: Boolean; virtual;
|
|
function GetOldDESCUENTOValue: Float; virtual;
|
|
function GetOldDESCUENTOIsNull: Boolean; virtual;
|
|
procedure SetDESCUENTOValue(const aValue: Float); virtual;
|
|
procedure SetDESCUENTOIsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_PORTEValue: Currency; virtual;
|
|
function GetIMPORTE_PORTEIsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_PORTEValue: Currency; virtual;
|
|
function GetOldIMPORTE_PORTEIsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_PORTEValue(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_PORTEIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIAValue: String; virtual;
|
|
function GetREFERENCIAIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIAValue: String; virtual;
|
|
function GetOldREFERENCIAIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIAValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
|
|
function GetREFERENCIA_PROVEEDORValue: String; virtual;
|
|
function GetREFERENCIA_PROVEEDORIsNull: Boolean; virtual;
|
|
function GetOldREFERENCIA_PROVEEDORValue: String; virtual;
|
|
function GetOldREFERENCIA_PROVEEDORIsNull: Boolean; virtual;
|
|
procedure SetREFERENCIA_PROVEEDORValue(const aValue: String); virtual;
|
|
procedure SetREFERENCIA_PROVEEDORIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID : Integer read GetIDValue write SetIDValue;
|
|
property IDIsNull : Boolean read GetIDIsNull write SetIDIsNull;
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldIDIsNull : Boolean read GetOldIDIsNull;
|
|
property ID_CONTRATO : Integer read GetID_CONTRATOValue write SetID_CONTRATOValue;
|
|
property ID_CONTRATOIsNull : Boolean read GetID_CONTRATOIsNull write SetID_CONTRATOIsNull;
|
|
property OldID_CONTRATO : Integer read GetOldID_CONTRATOValue;
|
|
property OldID_CONTRATOIsNull : Boolean read GetOldID_CONTRATOIsNull;
|
|
property POSICION : Integer read GetPOSICIONValue write SetPOSICIONValue;
|
|
property POSICIONIsNull : Boolean read GetPOSICIONIsNull write SetPOSICIONIsNull;
|
|
property OldPOSICION : Integer read GetOldPOSICIONValue;
|
|
property OldPOSICIONIsNull : Boolean read GetOldPOSICIONIsNull;
|
|
property TIPO_DETALLE : String read GetTIPO_DETALLEValue write SetTIPO_DETALLEValue;
|
|
property TIPO_DETALLEIsNull : Boolean read GetTIPO_DETALLEIsNull write SetTIPO_DETALLEIsNull;
|
|
property OldTIPO_DETALLE : String read GetOldTIPO_DETALLEValue;
|
|
property OldTIPO_DETALLEIsNull : Boolean read GetOldTIPO_DETALLEIsNull;
|
|
property PROPIEDAD : String read GetPROPIEDADValue write SetPROPIEDADValue;
|
|
property PROPIEDADIsNull : Boolean read GetPROPIEDADIsNull write SetPROPIEDADIsNull;
|
|
property OldPROPIEDAD : String read GetOldPROPIEDADValue;
|
|
property OldPROPIEDADIsNull : Boolean read GetOldPROPIEDADIsNull;
|
|
property CONCEPTO : String read GetCONCEPTOValue write SetCONCEPTOValue;
|
|
property CONCEPTOIsNull : Boolean read GetCONCEPTOIsNull write SetCONCEPTOIsNull;
|
|
property OldCONCEPTO : String read GetOldCONCEPTOValue;
|
|
property OldCONCEPTOIsNull : Boolean read GetOldCONCEPTOIsNull;
|
|
property CANTIDAD : Currency read GetCANTIDADValue write SetCANTIDADValue;
|
|
property CANTIDADIsNull : Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
|
|
property OldCANTIDAD : Currency read GetOldCANTIDADValue;
|
|
property OldCANTIDADIsNull : Boolean read GetOldCANTIDADIsNull;
|
|
property IMPORTE_UNIDAD : Currency read GetIMPORTE_UNIDADValue write SetIMPORTE_UNIDADValue;
|
|
property IMPORTE_UNIDADIsNull : Boolean read GetIMPORTE_UNIDADIsNull write SetIMPORTE_UNIDADIsNull;
|
|
property OldIMPORTE_UNIDAD : Currency read GetOldIMPORTE_UNIDADValue;
|
|
property OldIMPORTE_UNIDADIsNull : Boolean read GetOldIMPORTE_UNIDADIsNull;
|
|
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;
|
|
property VISIBLE : SmallInt read GetVISIBLEValue write SetVISIBLEValue;
|
|
property VISIBLEIsNull : Boolean read GetVISIBLEIsNull write SetVISIBLEIsNull;
|
|
property OldVISIBLE : SmallInt read GetOldVISIBLEValue;
|
|
property OldVISIBLEIsNull : Boolean read GetOldVISIBLEIsNull;
|
|
property VALORADO : SmallInt read GetVALORADOValue write SetVALORADOValue;
|
|
property VALORADOIsNull : Boolean read GetVALORADOIsNull write SetVALORADOIsNull;
|
|
property OldVALORADO : SmallInt read GetOldVALORADOValue;
|
|
property OldVALORADOIsNull : Boolean read GetOldVALORADOIsNull;
|
|
property ID_ARTICULO : Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
|
|
property ID_ARTICULOIsNull : Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldID_ARTICULOIsNull : Boolean read GetOldID_ARTICULOIsNull;
|
|
property TIPO_ARTICULO : String read GetTIPO_ARTICULOValue write SetTIPO_ARTICULOValue;
|
|
property TIPO_ARTICULOIsNull : Boolean read GetTIPO_ARTICULOIsNull write SetTIPO_ARTICULOIsNull;
|
|
property OldTIPO_ARTICULO : String read GetOldTIPO_ARTICULOValue;
|
|
property OldTIPO_ARTICULOIsNull : Boolean read GetOldTIPO_ARTICULOIsNull;
|
|
property INCREMENTO : Float read GetINCREMENTOValue write SetINCREMENTOValue;
|
|
property INCREMENTOIsNull : Boolean read GetINCREMENTOIsNull write SetINCREMENTOIsNull;
|
|
property OldINCREMENTO : Float read GetOldINCREMENTOValue;
|
|
property OldINCREMENTOIsNull : Boolean read GetOldINCREMENTOIsNull;
|
|
property DECREMENTO : Float read GetDECREMENTOValue write SetDECREMENTOValue;
|
|
property DECREMENTOIsNull : Boolean read GetDECREMENTOIsNull write SetDECREMENTOIsNull;
|
|
property OldDECREMENTO : Float read GetOldDECREMENTOValue;
|
|
property OldDECREMENTOIsNull : Boolean read GetOldDECREMENTOIsNull;
|
|
property DESCUENTO : Float read GetDESCUENTOValue write SetDESCUENTOValue;
|
|
property DESCUENTOIsNull : Boolean read GetDESCUENTOIsNull write SetDESCUENTOIsNull;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldDESCUENTOIsNull : Boolean read GetOldDESCUENTOIsNull;
|
|
property IMPORTE_PORTE : Currency read GetIMPORTE_PORTEValue write SetIMPORTE_PORTEValue;
|
|
property IMPORTE_PORTEIsNull : Boolean read GetIMPORTE_PORTEIsNull write SetIMPORTE_PORTEIsNull;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldIMPORTE_PORTEIsNull : Boolean read GetOldIMPORTE_PORTEIsNull;
|
|
property REFERENCIA : String read GetREFERENCIAValue write SetREFERENCIAValue;
|
|
property REFERENCIAIsNull : Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIAIsNull : Boolean read GetOldREFERENCIAIsNull;
|
|
property REFERENCIA_PROVEEDOR : String read GetREFERENCIA_PROVEEDORValue write SetREFERENCIA_PROVEEDORValue;
|
|
property REFERENCIA_PROVEEDORIsNull : Boolean read GetREFERENCIA_PROVEEDORIsNull write SetREFERENCIA_PROVEEDORIsNull;
|
|
property OldREFERENCIA_PROVEEDOR : String read GetOldREFERENCIA_PROVEEDORValue;
|
|
property OldREFERENCIA_PROVEEDORIsNull : Boolean read GetOldREFERENCIA_PROVEEDORIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Variants, uROBinaryHelpers, uDAInterfaces;
|
|
|
|
{ TValoresBusinessProcessorRules }
|
|
constructor TValoresBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TValoresBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID]);
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresID];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresID]);
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID] := aValue;
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID] := Null;
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetID_PROPIEDADValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID_PROPIEDAD];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetID_PROPIEDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID_PROPIEDAD]);
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldID_PROPIEDADValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresID_PROPIEDAD];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldID_PROPIEDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresID_PROPIEDAD]);
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetID_PROPIEDADValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID_PROPIEDAD] := aValue;
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetID_PROPIEDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresID_PROPIEDAD] := Null;
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetDESCRIPCIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresDESCRIPCION];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetDESCRIPCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresDESCRIPCION]);
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldDESCRIPCIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresDESCRIPCION];
|
|
end;
|
|
|
|
function TValoresBusinessProcessorRules.GetOldDESCRIPCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ValoresDESCRIPCION]);
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetDESCRIPCIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresDESCRIPCION] := aValue;
|
|
end;
|
|
|
|
procedure TValoresBusinessProcessorRules.SetDESCRIPCIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ValoresDESCRIPCION] := Null;
|
|
end;
|
|
|
|
|
|
{ TPropiedadesBusinessProcessorRules }
|
|
constructor TPropiedadesBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPropiedadesBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID]);
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesID];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesID]);
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID] := aValue;
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID] := Null;
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetDESCRIPCIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesDESCRIPCION];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetDESCRIPCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesDESCRIPCION]);
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldDESCRIPCIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesDESCRIPCION];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldDESCRIPCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesDESCRIPCION]);
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetDESCRIPCIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesDESCRIPCION] := aValue;
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetDESCRIPCIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesDESCRIPCION] := Null;
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetID_PROPIEDAD_VALORESValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID_PROPIEDAD_VALORES];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetID_PROPIEDAD_VALORESIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID_PROPIEDAD_VALORES]);
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldID_PROPIEDAD_VALORESValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesID_PROPIEDAD_VALORES];
|
|
end;
|
|
|
|
function TPropiedadesBusinessProcessorRules.GetOldID_PROPIEDAD_VALORESIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_PropiedadesID_PROPIEDAD_VALORES]);
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetID_PROPIEDAD_VALORESValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID_PROPIEDAD_VALORES] := aValue;
|
|
end;
|
|
|
|
procedure TPropiedadesBusinessProcessorRules.SetID_PROPIEDAD_VALORESIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PropiedadesID_PROPIEDAD_VALORES] := Null;
|
|
end;
|
|
|
|
|
|
{ TListaAnosContratosBusinessProcessorRules }
|
|
constructor TListaAnosContratosBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TListaAnosContratosBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TListaAnosContratosBusinessProcessorRules.GetANOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosContratosANO];
|
|
end;
|
|
|
|
function TListaAnosContratosBusinessProcessorRules.GetANOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosContratosANO]);
|
|
end;
|
|
|
|
function TListaAnosContratosBusinessProcessorRules.GetOldANOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ListaAnosContratosANO];
|
|
end;
|
|
|
|
function TListaAnosContratosBusinessProcessorRules.GetOldANOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ListaAnosContratosANO]);
|
|
end;
|
|
|
|
procedure TListaAnosContratosBusinessProcessorRules.SetANOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosContratosANO] := aValue;
|
|
end;
|
|
|
|
procedure TListaAnosContratosBusinessProcessorRules.SetANOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosContratosANO] := Null;
|
|
end;
|
|
|
|
|
|
{ TContratosClienteBeneficiosBusinessProcessorRules }
|
|
constructor TContratosClienteBeneficiosBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TContratosClienteBeneficiosBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosID];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosID]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosID];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosID]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosID] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosID] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosREFERENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosREFERENCIA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetFECHA_CONTRATOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetFECHA_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldFECHA_CONTRATOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldFECHA_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetFECHA_CONTRATOValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetFECHA_CONTRATOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosFECHA_CONTRATO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetREFERENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldREFERENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetREFERENCIA_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetREFERENCIA_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosREFERENCIA_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNOMBRE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetNOMBREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNOMBRE]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosNOMBRE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldNOMBREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosNOMBRE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetNOMBREValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNOMBRE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetNOMBREIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNOMBRE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetNIF_CIFValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNIF_CIF];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetNIF_CIFIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNIF_CIF]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldNIF_CIFValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosNIF_CIF];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldNIF_CIFIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosNIF_CIF]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetNIF_CIFValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNIF_CIF] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetNIF_CIFIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosNIF_CIF] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_NETOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_NETOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_NETOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_NETOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_NETO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_DESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_DESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_DESCUENTOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_DESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_DESCUENTO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetBASE_IMPONIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldBASE_IMPONIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetBASE_IMPONIBLEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetBASE_IMPONIBLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosBASE_IMPONIBLE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_FACTURAS_PROVEEDORValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_FACTURAS_PROVEEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_FACTURAS_PROVEEDORValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_FACTURAS_PROVEEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_FACTURAS_PROVEEDORValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_FACTURAS_PROVEEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_PROVEEDOR] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_BENEFICIOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_BENEFICIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_BENEFICIOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_BENEFICIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_BENEFICIOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_BENEFICIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetPORCENTAJE_BENEFICIOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetPORCENTAJE_BENEFICIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldPORCENTAJE_BENEFICIOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldPORCENTAJE_BENEFICIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetPORCENTAJE_BENEFICIOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetPORCENTAJE_BENEFICIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_FACTURAS_CLIENTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_FACTURAS_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_FACTURAS_CLIENTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_FACTURAS_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_FACTURAS_CLIENTEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_FACTURAS_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_FACTURAS_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_BENEFICIO_REALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetIMPORTE_BENEFICIO_REALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_BENEFICIO_REALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldIMPORTE_BENEFICIO_REALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_BENEFICIO_REALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetIMPORTE_BENEFICIO_REALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosIMPORTE_BENEFICIO_REAL] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetPORCENTAJE_BENEFICIO_REALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetPORCENTAJE_BENEFICIO_REALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL]);
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldPORCENTAJE_BENEFICIO_REALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL];
|
|
end;
|
|
|
|
function TContratosClienteBeneficiosBusinessProcessorRules.GetOldPORCENTAJE_BENEFICIO_REALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL]);
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetPORCENTAJE_BENEFICIO_REALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBeneficiosBusinessProcessorRules.SetPORCENTAJE_BENEFICIO_REALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBeneficiosPORCENTAJE_BENEFICIO_REAL] := Null;
|
|
end;
|
|
|
|
|
|
{ TContratosClienteBusinessProcessorRules }
|
|
constructor TContratosClienteBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
var
|
|
StrList: TStringList;
|
|
begin
|
|
inherited;
|
|
|
|
StrList := TStringList.Create;
|
|
StrList.OnChange := FORMA_PAGO_OnChange;
|
|
f_FORMA_PAGO := NewROStrings(StrList,True);
|
|
|
|
StrList := TStringList.Create;
|
|
StrList.OnChange := PLAZO_ENTREGA_OnChange;
|
|
f_PLAZO_ENTREGA := NewROStrings(StrList,True);
|
|
|
|
StrList := TStringList.Create;
|
|
StrList.OnChange := OBSERVACIONES_OnChange;
|
|
f_OBSERVACIONES := NewROStrings(StrList,True);
|
|
|
|
StrList := TStringList.Create;
|
|
StrList.OnChange := INCIDENCIAS_OnChange;
|
|
f_INCIDENCIAS := NewROStrings(StrList,True);
|
|
end;
|
|
|
|
destructor TContratosClienteBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.FORMA_PAGO_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFORMA_PAGO] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.PLAZO_ENTREGA_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePLAZO_ENTREGA] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.OBSERVACIONES_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteOBSERVACIONES] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.INCIDENCIAS_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_EMPRESAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_EMPRESA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_EMPRESAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_EMPRESA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_EMPRESAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_EMPRESA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_EMPRESAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_EMPRESA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_EMPRESAValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_EMPRESA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_EMPRESAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_EMPRESA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_CLIENTEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_CLIENTEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_CLIENTEValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBRE_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBRE_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBRE_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBRE_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBRE_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBRE_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREF_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREF_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREF_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREF_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREF_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREF_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREF_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREF_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREF_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREF_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREF_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREF_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBRE_COMERCIAL_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBRE_COMERCIAL_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE_COMERCIAL_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROCEDENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROCEDENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROCEDENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROCEDENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROCEDENCIA_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROCEDENCIA_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROCEDENCIA_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNIF_CIFValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNIF_CIF];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNIF_CIFIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNIF_CIF]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNIF_CIFValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNIF_CIF];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNIF_CIFIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNIF_CIF]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNIF_CIFValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNIF_CIF] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNIF_CIFIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNIF_CIF] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOMBREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOMBREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOMBRE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBREValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOMBREIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOMBRE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_DIRECCIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_DIRECCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_DIRECCIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_DIRECCION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_DIRECCIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_DIRECCION]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_DIRECCIONValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_DIRECCIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCALLE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCALLE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCALLEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPOBLACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPOBLACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPOBLACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePOBLACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPOBLACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePOBLACION]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPOBLACIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPOBLACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROVINCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROVINCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROVINCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROVINCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROVINCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROVINCIA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROVINCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROVINCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCODIGO_POSTALValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCODIGO_POSTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCODIGO_POSTALValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCODIGO_POSTAL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCODIGO_POSTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCODIGO_POSTAL]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCODIGO_POSTALValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCODIGO_POSTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTELEFONOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTELEFONO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTELEFONOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTELEFONO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTELEFONOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTELEFONO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTELEFONOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTELEFONO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTELEFONOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTELEFONO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTELEFONOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTELEFONO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetMOVILValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteMOVIL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetMOVILIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteMOVIL]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldMOVILValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteMOVIL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldMOVILIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteMOVIL]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetMOVILValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteMOVIL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetMOVILIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteMOVIL] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREFERENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREFERENCIA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_CONTRATOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_CONTRATO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_CONTRATOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_CONTRATO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_CONTRATOValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_CONTRATO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_CONTRATOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_CONTRATO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetSITUACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteSITUACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetSITUACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteSITUACION]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldSITUACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteSITUACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldSITUACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteSITUACION]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetSITUACIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteSITUACION] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetSITUACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteSITUACION] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFORMA_PAGOValue: IROStrings;
|
|
begin
|
|
result := f_FORMA_PAGO;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFORMA_PAGO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFORMA_PAGOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFORMA_PAGO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFORMA_PAGOValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFORMA_PAGO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFORMA_PAGOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFORMA_PAGO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFORMA_PAGOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFORMA_PAGO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPLAZO_ENTREGAValue: IROStrings;
|
|
begin
|
|
result := f_PLAZO_ENTREGA;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePLAZO_ENTREGA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPLAZO_ENTREGAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePLAZO_ENTREGA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPLAZO_ENTREGAValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePLAZO_ENTREGA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPLAZO_ENTREGAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePLAZO_ENTREGA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPLAZO_ENTREGAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePLAZO_ENTREGA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOBSERVACIONESValue: IROStrings;
|
|
begin
|
|
result := f_OBSERVACIONES;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteOBSERVACIONES];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOBSERVACIONESIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteOBSERVACIONES]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldOBSERVACIONESValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteOBSERVACIONES];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldOBSERVACIONESIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteOBSERVACIONES]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetOBSERVACIONESIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteOBSERVACIONES] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetINCIDENCIASValue: IROStrings;
|
|
begin
|
|
result := f_INCIDENCIAS;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetINCIDENCIASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldINCIDENCIASValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteINCIDENCIAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldINCIDENCIASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteINCIDENCIAS]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetINCIDENCIASIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetINCIDENCIAS_ACTIVASValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetINCIDENCIAS_ACTIVASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldINCIDENCIAS_ACTIVASValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldINCIDENCIAS_ACTIVASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetINCIDENCIAS_ACTIVASValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetINCIDENCIAS_ACTIVASIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteINCIDENCIAS_ACTIVAS] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_ALTAValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_ALTA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_ALTAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_ALTA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_ALTAValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_ALTA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_ALTAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_ALTA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_ALTAValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_ALTA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_ALTAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_ALTA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_MODIFICACIONValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_MODIFICACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFECHA_MODIFICACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_MODIFICACION]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_MODIFICACION];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFECHA_MODIFICACION]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_MODIFICACIONValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_MODIFICACION] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFECHA_MODIFICACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFECHA_MODIFICACION] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetUSUARIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteUSUARIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetUSUARIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteUSUARIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldUSUARIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteUSUARIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldUSUARIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteUSUARIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetUSUARIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteUSUARIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetUSUARIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteUSUARIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetRECARGO_EQUIVALENCIAValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetRECARGO_EQUIVALENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldRECARGO_EQUIVALENCIAValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldRECARGO_EQUIVALENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetRECARGO_EQUIVALENCIAValue(const aValue: SmallInt);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetRECARGO_EQUIVALENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRECARGO_EQUIVALENCIA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteRE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteRE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteRE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_REValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_RE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_REIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_RE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_REValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_RE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_REIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_RE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_REValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_RE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_REIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_RE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_TIPO_IVAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIPO_IVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_TIPO_IVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIPO_IVA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_TIPO_IVAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_TIPO_IVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_TIPO_IVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_TIPO_IVA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_TIPO_IVAValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIPO_IVA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_TIPO_IVAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIPO_IVA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIVAValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIVA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIVAValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIVA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIVAValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIVA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIVAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIVA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_IVAValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_IVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_IVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_IVA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_IVAValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_IVA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_IVAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_IVA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_IVAValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_IVA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_IVAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_IVA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_NETO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_NETOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_NETO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_NETO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_NETOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_NETO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_NETOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_NETO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_NETOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_NETO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_PORTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_PORTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_PORTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_PORTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_PORTEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_PORTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_PORTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_PORTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_TIENDAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIENDA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_TIENDAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIENDA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_TIENDAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_TIENDA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_TIENDAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_TIENDA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_TIENDAValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIENDA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_TIENDAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_TIENDA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTIENDAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIENDA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTIENDAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIENDA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTIENDAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTIENDA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTIENDAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTIENDA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTIENDAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIENDA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTIENDAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIENDA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetBASE_IMPONIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBASE_IMPONIBLE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetBASE_IMPONIBLEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetBASE_IMPONIBLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteDESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetDESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteDESCUENTO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteDESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldDESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteDESCUENTO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetDESCUENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteDESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetDESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteDESCUENTO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_DESCUENTO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_DESCUENTO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_DESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_DESCUENTO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetIMPORTE_TOTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_TOTAL]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldIMPORTE_TOTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteIMPORTE_TOTAL]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_TOTALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_TOTAL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetIMPORTE_TOTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteIMPORTE_TOTAL] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_FORMA_PAGOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_FORMA_PAGO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_FORMA_PAGOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_FORMA_PAGO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_FORMA_PAGOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_FORMA_PAGO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_FORMA_PAGOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_FORMA_PAGO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_FORMA_PAGOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_FORMA_PAGO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_FORMA_PAGOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_FORMA_PAGO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_VENDEDORValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_VENDEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_VENDEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_VENDEDOR]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_VENDEDORValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_VENDEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_VENDEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_VENDEDOR]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_VENDEDORValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_VENDEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_VENDEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_VENDEDOR] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetVENDEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteVENDEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetVENDEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteVENDEDOR]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldVENDEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteVENDEDOR];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldVENDEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteVENDEDOR]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetVENDEDORValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteVENDEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetVENDEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteVENDEDOR] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPERSONA_CONTACTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERSONA_CONTACTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPERSONA_CONTACTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERSONA_CONTACTO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPERSONA_CONTACTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePERSONA_CONTACTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPERSONA_CONTACTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePERSONA_CONTACTO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPERSONA_CONTACTOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERSONA_CONTACTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPERSONA_CONTACTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERSONA_CONTACTO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTIPO_CONTRATOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIPO_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTIPO_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIPO_CONTRATO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTIPO_CONTRATOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTIPO_CONTRATO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTIPO_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTIPO_CONTRATO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTIPO_CONTRATOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIPO_CONTRATO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTIPO_CONTRATOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTIPO_CONTRATO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetREFERENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA_CLIENTE]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldREFERENCIA_CLIENTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteREFERENCIA_CLIENTE]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREFERENCIA_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetREFERENCIA_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteREFERENCIA_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFACTURA_ASOCIADAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFACTURA_ASOCIADA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetFACTURA_ASOCIADAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFACTURA_ASOCIADA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFACTURA_ASOCIADAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFACTURA_ASOCIADA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldFACTURA_ASOCIADAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteFACTURA_ASOCIADA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFACTURA_ASOCIADAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFACTURA_ASOCIADA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetFACTURA_ASOCIADAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteFACTURA_ASOCIADA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetBASE_IMPONIBLE_FACTURASValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetBASE_IMPONIBLE_FACTURASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLE_FACTURASValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLE_FACTURASIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetBASE_IMPONIBLE_FACTURASValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetBASE_IMPONIBLE_FACTURASIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteBASE_IMPONIBLE_FACTURAS] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPRECIO_PUNTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePRECIO_PUNTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPRECIO_PUNTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePRECIO_PUNTO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPRECIO_PUNTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePRECIO_PUNTO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPRECIO_PUNTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePRECIO_PUNTO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPRECIO_PUNTOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePRECIO_PUNTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPRECIO_PUNTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePRECIO_PUNTO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_DIRECCION_ENVIOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_DIRECCION_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_DIRECCION_ENVIOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_DIRECCION_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_DIRECCION_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_DIRECCION_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_DIRECCION_ENVIOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_DIRECCION_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_DIRECCION_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCALLE_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCALLE_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCALLE_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCALLE_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCALLE_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCALLE_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCALLE_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCALLE_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCALLE_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPOBLACION_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPOBLACION_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPOBLACION_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePOBLACION_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPOBLACION_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePOBLACION_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPOBLACION_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPOBLACION_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePOBLACION_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROVINCIA_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPROVINCIA_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROVINCIA_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROVINCIA_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPROVINCIA_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePROVINCIA_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROVINCIA_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPROVINCIA_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePROVINCIA_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCODIGO_POSTAL_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetCODIGO_POSTAL_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCODIGO_POSTAL_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldCODIGO_POSTAL_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCODIGO_POSTAL_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetCODIGO_POSTAL_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteCODIGO_POSTAL_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPERS_CONTACTO_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetPERS_CONTACTO_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPERS_CONTACTO_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldPERS_CONTACTO_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPERS_CONTACTO_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetPERS_CONTACTO_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClientePERS_CONTACTO_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTLFS_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTLFS_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetTLFS_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTLFS_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTLFS_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTLFS_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldTLFS_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteTLFS_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTLFS_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTLFS_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetTLFS_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteTLFS_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOTAS_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOTAS_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetNOTAS_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOTAS_ENVIO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOTAS_ENVIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOTAS_ENVIO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldNOTAS_ENVIOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteNOTAS_ENVIO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOTAS_ENVIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOTAS_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetNOTAS_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteNOTAS_ENVIO] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetENVIADA_REVISADAValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteENVIADA_REVISADA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetENVIADA_REVISADAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteENVIADA_REVISADA]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldENVIADA_REVISADAValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteENVIADA_REVISADA];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldENVIADA_REVISADAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteENVIADA_REVISADA]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetENVIADA_REVISADAValue(const aValue: SmallInt);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteENVIADA_REVISADA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetENVIADA_REVISADAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteENVIADA_REVISADA] := Null;
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_CONTRATO_ASOCIADOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetID_CONTRATO_ASOCIADOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO]);
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_CONTRATO_ASOCIADOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO];
|
|
end;
|
|
|
|
function TContratosClienteBusinessProcessorRules.GetOldID_CONTRATO_ASOCIADOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO]);
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_CONTRATO_ASOCIADOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosClienteBusinessProcessorRules.SetID_CONTRATO_ASOCIADOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosClienteID_CONTRATO_ASOCIADO] := Null;
|
|
end;
|
|
|
|
|
|
{ TTiposCapitulosBusinessProcessorRules }
|
|
constructor TTiposCapitulosBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TTiposCapitulosBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosID];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosID]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID] := Null;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosPOSICION];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetPOSICIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosPOSICION]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosPOSICION];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldPOSICIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosPOSICION]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetPOSICIONValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosPOSICION] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetPOSICIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosPOSICION] := Null;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_DETALLE];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetTIPO_DETALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_DETALLE]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosTIPO_DETALLE];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldTIPO_DETALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosTIPO_DETALLE]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetTIPO_DETALLEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_DETALLE] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetTIPO_DETALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_DETALLE] := Null;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetTIPO_ARTICULOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_ARTICULO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetTIPO_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_ARTICULO]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldTIPO_ARTICULOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosTIPO_ARTICULO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldTIPO_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosTIPO_ARTICULO]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetTIPO_ARTICULOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetTIPO_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosTIPO_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID_ARTICULO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID_ARTICULO]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosID_ARTICULO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosID_ARTICULO]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosCONCEPTO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetCONCEPTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosCONCEPTO]);
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosCONCEPTO];
|
|
end;
|
|
|
|
function TTiposCapitulosBusinessProcessorRules.GetOldCONCEPTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_TiposCapitulosCONCEPTO]);
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetCONCEPTOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosCONCEPTO] := aValue;
|
|
end;
|
|
|
|
procedure TTiposCapitulosBusinessProcessorRules.SetCONCEPTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_TiposCapitulosCONCEPTO] := Null;
|
|
end;
|
|
|
|
|
|
{ TContratosCliente_DetallesBusinessProcessorRules }
|
|
constructor TContratosCliente_DetallesBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TContratosCliente_DetallesBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetID_CONTRATOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_CONTRATO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetID_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_CONTRATO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldID_CONTRATOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID_CONTRATO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldID_CONTRATOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID_CONTRATO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetID_CONTRATOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_CONTRATO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetID_CONTRATOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_CONTRATO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPOSICION];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetPOSICIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPOSICION]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesPOSICION];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldPOSICIONIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesPOSICION]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetPOSICIONValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPOSICION] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetPOSICIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPOSICION] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetTIPO_DETALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldTIPO_DETALLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetTIPO_DETALLEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetTIPO_DETALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_DETALLE] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetPROPIEDADValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPROPIEDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetPROPIEDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPROPIEDAD]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldPROPIEDADValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesPROPIEDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldPROPIEDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesPROPIEDAD]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetPROPIEDADValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPROPIEDAD] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetPROPIEDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesPROPIEDAD] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCONCEPTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetCONCEPTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCONCEPTO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesCONCEPTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldCONCEPTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesCONCEPTO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetCONCEPTOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCONCEPTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetCONCEPTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCONCEPTO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetCANTIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCANTIDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetCANTIDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCANTIDAD]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldCANTIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesCANTIDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldCANTIDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesCANTIDAD]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetCANTIDADValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCANTIDAD] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetCANTIDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesCANTIDAD] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_UNIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_UNIDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_UNIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_UNIDADIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_UNIDADValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_UNIDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_UNIDAD] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_TOTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_TOTALIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_TOTALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_TOTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_TOTAL] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetVISIBLEValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVISIBLE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetVISIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVISIBLE]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldVISIBLEValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesVISIBLE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldVISIBLEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesVISIBLE]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetVISIBLEValue(const aValue: SmallInt);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVISIBLE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetVISIBLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVISIBLE] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetVALORADOValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVALORADO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetVALORADOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVALORADO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldVALORADOValue: SmallInt;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesVALORADO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldVALORADOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesVALORADO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetVALORADOValue(const aValue: SmallInt);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVALORADO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetVALORADOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesVALORADO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_ARTICULO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_ARTICULO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID_ARTICULO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesID_ARTICULO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetTIPO_ARTICULOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetTIPO_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldTIPO_ARTICULOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldTIPO_ARTICULOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetTIPO_ARTICULOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetTIPO_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesTIPO_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetINCREMENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesINCREMENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetINCREMENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesINCREMENTO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldINCREMENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesINCREMENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldINCREMENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesINCREMENTO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetINCREMENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesINCREMENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetINCREMENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesINCREMENTO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetDECREMENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDECREMENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetDECREMENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDECREMENTO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldDECREMENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesDECREMENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldDECREMENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesDECREMENTO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetDECREMENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDECREMENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetDECREMENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDECREMENTO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDESCUENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetDESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDESCUENTO]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesDESCUENTO];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldDESCUENTOIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesDESCUENTO]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetDESCUENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetDESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesDESCUENTO] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetIMPORTE_PORTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_PORTEIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_PORTEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetIMPORTE_PORTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesIMPORTE_PORTE] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesREFERENCIA];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesREFERENCIA]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA] := Null;
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetREFERENCIA_PROVEEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetREFERENCIA_PROVEEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR]);
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIA_PROVEEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
end;
|
|
|
|
function TContratosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIA_PROVEEDORIsNull: Boolean;
|
|
begin
|
|
result := VarIsNull(BusinessProcessor.CurrentChange.OldValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR]);
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetREFERENCIA_PROVEEDORValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TContratosCliente_DetallesBusinessProcessorRules.SetREFERENCIA_PROVEEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ContratosCliente_DetallesREFERENCIA_PROVEEDOR] := Null;
|
|
end;
|
|
|
|
|
|
initialization
|
|
RegisterBusinessProcessorRules(RID_ValoresDelta, TValoresBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PropiedadesDelta, TPropiedadesBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_ListaAnosContratosDelta, TListaAnosContratosBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_ContratosClienteBeneficiosDelta, TContratosClienteBeneficiosBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_ContratosClienteDelta, TContratosClienteBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_TiposCapitulosDelta, TTiposCapitulosBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_ContratosCliente_DetallesDelta, TContratosCliente_DetallesBusinessProcessorRules);
|
|
|
|
end.
|