git-svn-id: https://192.168.0.254/svn/Proyectos.Noviseda_FactuGES2/trunk@106 f33bb606-9f5c-448d-9c99-757f00063c96
4521 lines
199 KiB
ObjectPascal
4521 lines
199 KiB
ObjectPascal
unit schPedidosClienteServer_Intf;
|
|
|
|
{$D-}
|
|
interface
|
|
|
|
uses
|
|
Classes, DB, SysUtils, uROClasses, uDADataTable, uDABusinessProcessor, FmtBCD, uROXMLIntf, schPedidosClienteClient_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_PedidoCliente_Art_Colores_PendientesDelta = '{9B6E23A7-E154-4BB1-92C8-CCD932C2CFEE}';
|
|
RID_ListaAnosPedidosDelta = '{E25EDE72-F855-44DD-B936-70E742782766}';
|
|
RID_PedidoCliente_ArticulosPendientesPedirAProvDelta = '{CD6D6915-028F-4C5F-9F62-5118E0546F2E}';
|
|
RID_PedidosClienteDelta = '{6C497F53-C0F8-4F1A-89A8-3896B9901C6F}';
|
|
RID_PedidosCliente_DetallesDelta = '{A2D12C3B-DDE4-4D84-B136-02BDED3566D9}';
|
|
RID_PedidoCliente_Articulos_PendientesDelta = '{812585BF-8205-45F0-A085-AABFC1341609}';
|
|
RID_PedidosCliente_Detalle_ColorDelta = '{8B9E6B02-0B8E-4277-B618-BB3E0E9AAC8F}';
|
|
|
|
type
|
|
{ IPedidoCliente_Art_Colores_PendientesDelta }
|
|
IPedidoCliente_Art_Colores_PendientesDelta = interface(IPedidoCliente_Art_Colores_Pendientes)
|
|
['{9B6E23A7-E154-4BB1-92C8-CCD932C2CFEE}']
|
|
{ Property getters and setters }
|
|
function GetOldID_PEDIDOValue : Integer;
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldCOLOR1Value : Int64;
|
|
function GetOldCOLOR2Value : Int64;
|
|
function GetOldCOLOR3Value : Int64;
|
|
function GetOldCOLOR4Value : Int64;
|
|
function GetOldCOLOR5Value : Int64;
|
|
function GetOldCOLOR6Value : Int64;
|
|
function GetOldCOLOR7Value : Int64;
|
|
function GetOldCOLOR8Value : Int64;
|
|
function GetOldCOLOR9Value : Int64;
|
|
function GetOldCOLOR10Value : Int64;
|
|
function GetOldCOLOR11Value : Int64;
|
|
function GetOldCOLOR12Value : Int64;
|
|
|
|
{ Properties }
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldCOLOR1 : Int64 read GetOldCOLOR1Value;
|
|
property OldCOLOR2 : Int64 read GetOldCOLOR2Value;
|
|
property OldCOLOR3 : Int64 read GetOldCOLOR3Value;
|
|
property OldCOLOR4 : Int64 read GetOldCOLOR4Value;
|
|
property OldCOLOR5 : Int64 read GetOldCOLOR5Value;
|
|
property OldCOLOR6 : Int64 read GetOldCOLOR6Value;
|
|
property OldCOLOR7 : Int64 read GetOldCOLOR7Value;
|
|
property OldCOLOR8 : Int64 read GetOldCOLOR8Value;
|
|
property OldCOLOR9 : Int64 read GetOldCOLOR9Value;
|
|
property OldCOLOR10 : Int64 read GetOldCOLOR10Value;
|
|
property OldCOLOR11 : Int64 read GetOldCOLOR11Value;
|
|
property OldCOLOR12 : Int64 read GetOldCOLOR12Value;
|
|
end;
|
|
|
|
{ TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules }
|
|
TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidoCliente_Art_Colores_Pendientes, IPedidoCliente_Art_Colores_PendientesDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetID_PEDIDOValue: Integer; virtual;
|
|
function GetID_PEDIDOIsNull: Boolean; virtual;
|
|
function GetOldID_PEDIDOValue: Integer; virtual;
|
|
function GetOldID_PEDIDOIsNull: Boolean; virtual;
|
|
procedure SetID_PEDIDOValue(const aValue: Integer); virtual;
|
|
procedure SetID_PEDIDOIsNull(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 GetCOLOR1Value: Int64; virtual;
|
|
function GetCOLOR1IsNull: Boolean; virtual;
|
|
function GetOldCOLOR1Value: Int64; virtual;
|
|
function GetOldCOLOR1IsNull: Boolean; virtual;
|
|
procedure SetCOLOR1Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR1IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR2Value: Int64; virtual;
|
|
function GetCOLOR2IsNull: Boolean; virtual;
|
|
function GetOldCOLOR2Value: Int64; virtual;
|
|
function GetOldCOLOR2IsNull: Boolean; virtual;
|
|
procedure SetCOLOR2Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR2IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR3Value: Int64; virtual;
|
|
function GetCOLOR3IsNull: Boolean; virtual;
|
|
function GetOldCOLOR3Value: Int64; virtual;
|
|
function GetOldCOLOR3IsNull: Boolean; virtual;
|
|
procedure SetCOLOR3Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR3IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR4Value: Int64; virtual;
|
|
function GetCOLOR4IsNull: Boolean; virtual;
|
|
function GetOldCOLOR4Value: Int64; virtual;
|
|
function GetOldCOLOR4IsNull: Boolean; virtual;
|
|
procedure SetCOLOR4Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR4IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR5Value: Int64; virtual;
|
|
function GetCOLOR5IsNull: Boolean; virtual;
|
|
function GetOldCOLOR5Value: Int64; virtual;
|
|
function GetOldCOLOR5IsNull: Boolean; virtual;
|
|
procedure SetCOLOR5Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR5IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR6Value: Int64; virtual;
|
|
function GetCOLOR6IsNull: Boolean; virtual;
|
|
function GetOldCOLOR6Value: Int64; virtual;
|
|
function GetOldCOLOR6IsNull: Boolean; virtual;
|
|
procedure SetCOLOR6Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR6IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR7Value: Int64; virtual;
|
|
function GetCOLOR7IsNull: Boolean; virtual;
|
|
function GetOldCOLOR7Value: Int64; virtual;
|
|
function GetOldCOLOR7IsNull: Boolean; virtual;
|
|
procedure SetCOLOR7Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR7IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR8Value: Int64; virtual;
|
|
function GetCOLOR8IsNull: Boolean; virtual;
|
|
function GetOldCOLOR8Value: Int64; virtual;
|
|
function GetOldCOLOR8IsNull: Boolean; virtual;
|
|
procedure SetCOLOR8Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR8IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR9Value: Int64; virtual;
|
|
function GetCOLOR9IsNull: Boolean; virtual;
|
|
function GetOldCOLOR9Value: Int64; virtual;
|
|
function GetOldCOLOR9IsNull: Boolean; virtual;
|
|
procedure SetCOLOR9Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR9IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR10Value: Int64; virtual;
|
|
function GetCOLOR10IsNull: Boolean; virtual;
|
|
function GetOldCOLOR10Value: Int64; virtual;
|
|
function GetOldCOLOR10IsNull: Boolean; virtual;
|
|
procedure SetCOLOR10Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR10IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR11Value: Int64; virtual;
|
|
function GetCOLOR11IsNull: Boolean; virtual;
|
|
function GetOldCOLOR11Value: Int64; virtual;
|
|
function GetOldCOLOR11IsNull: Boolean; virtual;
|
|
procedure SetCOLOR11Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR11IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR12Value: Int64; virtual;
|
|
function GetCOLOR12IsNull: Boolean; virtual;
|
|
function GetOldCOLOR12Value: Int64; virtual;
|
|
function GetOldCOLOR12IsNull: Boolean; virtual;
|
|
procedure SetCOLOR12Value(const aValue: Int64); virtual;
|
|
procedure SetCOLOR12IsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID_PEDIDO : Integer read GetID_PEDIDOValue write SetID_PEDIDOValue;
|
|
property ID_PEDIDOIsNull : Boolean read GetID_PEDIDOIsNull write SetID_PEDIDOIsNull;
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldID_PEDIDOIsNull : Boolean read GetOldID_PEDIDOIsNull;
|
|
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 COLOR1 : Int64 read GetCOLOR1Value write SetCOLOR1Value;
|
|
property COLOR1IsNull : Boolean read GetCOLOR1IsNull write SetCOLOR1IsNull;
|
|
property OldCOLOR1 : Int64 read GetOldCOLOR1Value;
|
|
property OldCOLOR1IsNull : Boolean read GetOldCOLOR1IsNull;
|
|
property COLOR2 : Int64 read GetCOLOR2Value write SetCOLOR2Value;
|
|
property COLOR2IsNull : Boolean read GetCOLOR2IsNull write SetCOLOR2IsNull;
|
|
property OldCOLOR2 : Int64 read GetOldCOLOR2Value;
|
|
property OldCOLOR2IsNull : Boolean read GetOldCOLOR2IsNull;
|
|
property COLOR3 : Int64 read GetCOLOR3Value write SetCOLOR3Value;
|
|
property COLOR3IsNull : Boolean read GetCOLOR3IsNull write SetCOLOR3IsNull;
|
|
property OldCOLOR3 : Int64 read GetOldCOLOR3Value;
|
|
property OldCOLOR3IsNull : Boolean read GetOldCOLOR3IsNull;
|
|
property COLOR4 : Int64 read GetCOLOR4Value write SetCOLOR4Value;
|
|
property COLOR4IsNull : Boolean read GetCOLOR4IsNull write SetCOLOR4IsNull;
|
|
property OldCOLOR4 : Int64 read GetOldCOLOR4Value;
|
|
property OldCOLOR4IsNull : Boolean read GetOldCOLOR4IsNull;
|
|
property COLOR5 : Int64 read GetCOLOR5Value write SetCOLOR5Value;
|
|
property COLOR5IsNull : Boolean read GetCOLOR5IsNull write SetCOLOR5IsNull;
|
|
property OldCOLOR5 : Int64 read GetOldCOLOR5Value;
|
|
property OldCOLOR5IsNull : Boolean read GetOldCOLOR5IsNull;
|
|
property COLOR6 : Int64 read GetCOLOR6Value write SetCOLOR6Value;
|
|
property COLOR6IsNull : Boolean read GetCOLOR6IsNull write SetCOLOR6IsNull;
|
|
property OldCOLOR6 : Int64 read GetOldCOLOR6Value;
|
|
property OldCOLOR6IsNull : Boolean read GetOldCOLOR6IsNull;
|
|
property COLOR7 : Int64 read GetCOLOR7Value write SetCOLOR7Value;
|
|
property COLOR7IsNull : Boolean read GetCOLOR7IsNull write SetCOLOR7IsNull;
|
|
property OldCOLOR7 : Int64 read GetOldCOLOR7Value;
|
|
property OldCOLOR7IsNull : Boolean read GetOldCOLOR7IsNull;
|
|
property COLOR8 : Int64 read GetCOLOR8Value write SetCOLOR8Value;
|
|
property COLOR8IsNull : Boolean read GetCOLOR8IsNull write SetCOLOR8IsNull;
|
|
property OldCOLOR8 : Int64 read GetOldCOLOR8Value;
|
|
property OldCOLOR8IsNull : Boolean read GetOldCOLOR8IsNull;
|
|
property COLOR9 : Int64 read GetCOLOR9Value write SetCOLOR9Value;
|
|
property COLOR9IsNull : Boolean read GetCOLOR9IsNull write SetCOLOR9IsNull;
|
|
property OldCOLOR9 : Int64 read GetOldCOLOR9Value;
|
|
property OldCOLOR9IsNull : Boolean read GetOldCOLOR9IsNull;
|
|
property COLOR10 : Int64 read GetCOLOR10Value write SetCOLOR10Value;
|
|
property COLOR10IsNull : Boolean read GetCOLOR10IsNull write SetCOLOR10IsNull;
|
|
property OldCOLOR10 : Int64 read GetOldCOLOR10Value;
|
|
property OldCOLOR10IsNull : Boolean read GetOldCOLOR10IsNull;
|
|
property COLOR11 : Int64 read GetCOLOR11Value write SetCOLOR11Value;
|
|
property COLOR11IsNull : Boolean read GetCOLOR11IsNull write SetCOLOR11IsNull;
|
|
property OldCOLOR11 : Int64 read GetOldCOLOR11Value;
|
|
property OldCOLOR11IsNull : Boolean read GetOldCOLOR11IsNull;
|
|
property COLOR12 : Int64 read GetCOLOR12Value write SetCOLOR12Value;
|
|
property COLOR12IsNull : Boolean read GetCOLOR12IsNull write SetCOLOR12IsNull;
|
|
property OldCOLOR12 : Int64 read GetOldCOLOR12Value;
|
|
property OldCOLOR12IsNull : Boolean read GetOldCOLOR12IsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IListaAnosPedidosDelta }
|
|
IListaAnosPedidosDelta = interface(IListaAnosPedidos)
|
|
['{E25EDE72-F855-44DD-B936-70E742782766}']
|
|
{ Property getters and setters }
|
|
function GetOldANOValue : String;
|
|
|
|
{ Properties }
|
|
property OldANO : String read GetOldANOValue;
|
|
end;
|
|
|
|
{ TListaAnosPedidosBusinessProcessorRules }
|
|
TListaAnosPedidosBusinessProcessorRules = class(TDABusinessProcessorRules, IListaAnosPedidos, IListaAnosPedidosDelta)
|
|
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;
|
|
|
|
{ IPedidoCliente_ArticulosPendientesPedirAProvDelta }
|
|
IPedidoCliente_ArticulosPendientesPedirAProvDelta = interface(IPedidoCliente_ArticulosPendientesPedirAProv)
|
|
['{CD6D6915-028F-4C5F-9F62-5118E0546F2E}']
|
|
{ Property getters and setters }
|
|
function GetOldID_PEDIDOValue : Integer;
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldCANT_PEDIDA_CLIENTEValue : Float;
|
|
function GetOldID_PROVEEDORValue : Integer;
|
|
function GetOldCANT_PEDIDA_PROVEEDORValue : Float;
|
|
function GetOldCANT_PENDIENTE_PEDIRValue : Float;
|
|
|
|
{ Properties }
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldCANT_PEDIDA_CLIENTE : Float read GetOldCANT_PEDIDA_CLIENTEValue;
|
|
property OldID_PROVEEDOR : Integer read GetOldID_PROVEEDORValue;
|
|
property OldCANT_PEDIDA_PROVEEDOR : Float read GetOldCANT_PEDIDA_PROVEEDORValue;
|
|
property OldCANT_PENDIENTE_PEDIR : Float read GetOldCANT_PENDIENTE_PEDIRValue;
|
|
end;
|
|
|
|
{ TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules }
|
|
TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidoCliente_ArticulosPendientesPedirAProv, IPedidoCliente_ArticulosPendientesPedirAProvDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
function GetID_PEDIDOValue: Integer; virtual;
|
|
function GetID_PEDIDOIsNull: Boolean; virtual;
|
|
function GetOldID_PEDIDOValue: Integer; virtual;
|
|
function GetOldID_PEDIDOIsNull: Boolean; virtual;
|
|
procedure SetID_PEDIDOValue(const aValue: Integer); virtual;
|
|
procedure SetID_PEDIDOIsNull(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 GetCANT_PEDIDA_CLIENTEValue: Float; virtual;
|
|
function GetCANT_PEDIDA_CLIENTEIsNull: Boolean; virtual;
|
|
function GetOldCANT_PEDIDA_CLIENTEValue: Float; virtual;
|
|
function GetOldCANT_PEDIDA_CLIENTEIsNull: Boolean; virtual;
|
|
procedure SetCANT_PEDIDA_CLIENTEValue(const aValue: Float); virtual;
|
|
procedure SetCANT_PEDIDA_CLIENTEIsNull(const aValue: Boolean); virtual;
|
|
function GetID_PROVEEDORValue: Integer; virtual;
|
|
function GetID_PROVEEDORIsNull: Boolean; virtual;
|
|
function GetOldID_PROVEEDORValue: Integer; virtual;
|
|
function GetOldID_PROVEEDORIsNull: Boolean; virtual;
|
|
procedure SetID_PROVEEDORValue(const aValue: Integer); virtual;
|
|
procedure SetID_PROVEEDORIsNull(const aValue: Boolean); virtual;
|
|
function GetCANT_PEDIDA_PROVEEDORValue: Float; virtual;
|
|
function GetCANT_PEDIDA_PROVEEDORIsNull: Boolean; virtual;
|
|
function GetOldCANT_PEDIDA_PROVEEDORValue: Float; virtual;
|
|
function GetOldCANT_PEDIDA_PROVEEDORIsNull: Boolean; virtual;
|
|
procedure SetCANT_PEDIDA_PROVEEDORValue(const aValue: Float); virtual;
|
|
procedure SetCANT_PEDIDA_PROVEEDORIsNull(const aValue: Boolean); virtual;
|
|
function GetCANT_PENDIENTE_PEDIRValue: Float; virtual;
|
|
function GetCANT_PENDIENTE_PEDIRIsNull: Boolean; virtual;
|
|
function GetOldCANT_PENDIENTE_PEDIRValue: Float; virtual;
|
|
function GetOldCANT_PENDIENTE_PEDIRIsNull: Boolean; virtual;
|
|
procedure SetCANT_PENDIENTE_PEDIRValue(const aValue: Float); virtual;
|
|
procedure SetCANT_PENDIENTE_PEDIRIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
property ID_PEDIDO : Integer read GetID_PEDIDOValue write SetID_PEDIDOValue;
|
|
property ID_PEDIDOIsNull : Boolean read GetID_PEDIDOIsNull write SetID_PEDIDOIsNull;
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldID_PEDIDOIsNull : Boolean read GetOldID_PEDIDOIsNull;
|
|
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 CANT_PEDIDA_CLIENTE : Float read GetCANT_PEDIDA_CLIENTEValue write SetCANT_PEDIDA_CLIENTEValue;
|
|
property CANT_PEDIDA_CLIENTEIsNull : Boolean read GetCANT_PEDIDA_CLIENTEIsNull write SetCANT_PEDIDA_CLIENTEIsNull;
|
|
property OldCANT_PEDIDA_CLIENTE : Float read GetOldCANT_PEDIDA_CLIENTEValue;
|
|
property OldCANT_PEDIDA_CLIENTEIsNull : Boolean read GetOldCANT_PEDIDA_CLIENTEIsNull;
|
|
property ID_PROVEEDOR : Integer read GetID_PROVEEDORValue write SetID_PROVEEDORValue;
|
|
property ID_PROVEEDORIsNull : Boolean read GetID_PROVEEDORIsNull write SetID_PROVEEDORIsNull;
|
|
property OldID_PROVEEDOR : Integer read GetOldID_PROVEEDORValue;
|
|
property OldID_PROVEEDORIsNull : Boolean read GetOldID_PROVEEDORIsNull;
|
|
property CANT_PEDIDA_PROVEEDOR : Float read GetCANT_PEDIDA_PROVEEDORValue write SetCANT_PEDIDA_PROVEEDORValue;
|
|
property CANT_PEDIDA_PROVEEDORIsNull : Boolean read GetCANT_PEDIDA_PROVEEDORIsNull write SetCANT_PEDIDA_PROVEEDORIsNull;
|
|
property OldCANT_PEDIDA_PROVEEDOR : Float read GetOldCANT_PEDIDA_PROVEEDORValue;
|
|
property OldCANT_PEDIDA_PROVEEDORIsNull : Boolean read GetOldCANT_PEDIDA_PROVEEDORIsNull;
|
|
property CANT_PENDIENTE_PEDIR : Float read GetCANT_PENDIENTE_PEDIRValue write SetCANT_PENDIENTE_PEDIRValue;
|
|
property CANT_PENDIENTE_PEDIRIsNull : Boolean read GetCANT_PENDIENTE_PEDIRIsNull write SetCANT_PENDIENTE_PEDIRIsNull;
|
|
property OldCANT_PENDIENTE_PEDIR : Float read GetOldCANT_PENDIENTE_PEDIRValue;
|
|
property OldCANT_PENDIENTE_PEDIRIsNull : Boolean read GetOldCANT_PENDIENTE_PEDIRIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IPedidosClienteDelta }
|
|
IPedidosClienteDelta = interface(IPedidosCliente)
|
|
['{6C497F53-C0F8-4F1A-89A8-3896B9901C6F}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_EMPRESAValue : Integer;
|
|
function GetOldID_CLIENTEValue : Integer;
|
|
function GetOldNOMBREValue : String;
|
|
function GetOldREFERENCIAValue : String;
|
|
function GetOldREFERENCIA_CLIENTEValue : String;
|
|
function GetOldSITUACIONValue : String;
|
|
function GetOldFECHA_PEDIDOValue : DateTime;
|
|
function GetOldID_DIRECCIONValue : Integer;
|
|
function GetOldCALLEValue : String;
|
|
function GetOldCODIGO_POSTALValue : String;
|
|
function GetOldPOBLACIONValue : String;
|
|
function GetOldPROVINCIAValue : String;
|
|
function GetOldPERSONA_CONTACTOValue : String;
|
|
function GetOldTELEFONOValue : String;
|
|
function GetOldOBSERVACIONESValue : IROStrings;
|
|
function GetOldINCIDENCIASValue : IROStrings;
|
|
function GetOldINCIDENCIAS_ACTIVASValue : Integer;
|
|
function GetOldFECHA_ALTAValue : DateTime;
|
|
function GetOldFECHA_MODIFICACIONValue : DateTime;
|
|
function GetOldUSUARIOValue : String;
|
|
function GetOldIMPORTE_NETOValue : Currency;
|
|
function GetOldIMPORTE_PORTEValue : Currency;
|
|
function GetOldDESCUENTOValue : Float;
|
|
function GetOldIMPORTE_DESCUENTOValue : Currency;
|
|
function GetOldDESCUENTO2Value : Float;
|
|
function GetOldIMPORTE_DESCUENTO2Value : Currency;
|
|
function GetOldBASE_IMPONIBLEValue : Currency;
|
|
function GetOldIVAValue : Float;
|
|
function GetOldIMPORTE_IVAValue : Currency;
|
|
function GetOldIMPORTE_TOTALValue : Currency;
|
|
function GetOldID_FORMA_PAGOValue : Integer;
|
|
function GetOldFORMA_PAGOValue : String;
|
|
function GetOldREF_TIENDA_WEBValue : Integer;
|
|
function GetOldFECHA_PREVISTA_ENVIOValue : DateTime;
|
|
function GetOldDATOS_BANCARIOSValue : String;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_EMPRESA : Integer read GetOldID_EMPRESAValue;
|
|
property OldID_CLIENTE : Integer read GetOldID_CLIENTEValue;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIA_CLIENTE : String read GetOldREFERENCIA_CLIENTEValue;
|
|
property OldSITUACION : String read GetOldSITUACIONValue;
|
|
property OldFECHA_PEDIDO : DateTime read GetOldFECHA_PEDIDOValue;
|
|
property OldID_DIRECCION : Integer read GetOldID_DIRECCIONValue;
|
|
property OldCALLE : String read GetOldCALLEValue;
|
|
property OldCODIGO_POSTAL : String read GetOldCODIGO_POSTALValue;
|
|
property OldPOBLACION : String read GetOldPOBLACIONValue;
|
|
property OldPROVINCIA : String read GetOldPROVINCIAValue;
|
|
property OldPERSONA_CONTACTO : String read GetOldPERSONA_CONTACTOValue;
|
|
property OldTELEFONO : String read GetOldTELEFONOValue;
|
|
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 OldIMPORTE_NETO : Currency read GetOldIMPORTE_NETOValue;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldIMPORTE_DESCUENTO : Currency read GetOldIMPORTE_DESCUENTOValue;
|
|
property OldDESCUENTO2 : Float read GetOldDESCUENTO2Value;
|
|
property OldIMPORTE_DESCUENTO2 : Currency read GetOldIMPORTE_DESCUENTO2Value;
|
|
property OldBASE_IMPONIBLE : Currency read GetOldBASE_IMPONIBLEValue;
|
|
property OldIVA : Float read GetOldIVAValue;
|
|
property OldIMPORTE_IVA : Currency read GetOldIMPORTE_IVAValue;
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
|
property OldID_FORMA_PAGO : Integer read GetOldID_FORMA_PAGOValue;
|
|
property OldFORMA_PAGO : String read GetOldFORMA_PAGOValue;
|
|
property OldREF_TIENDA_WEB : Integer read GetOldREF_TIENDA_WEBValue;
|
|
property OldFECHA_PREVISTA_ENVIO : DateTime read GetOldFECHA_PREVISTA_ENVIOValue;
|
|
property OldDATOS_BANCARIOS : String read GetOldDATOS_BANCARIOSValue;
|
|
end;
|
|
|
|
{ TPedidosClienteBusinessProcessorRules }
|
|
TPedidosClienteBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidosCliente, IPedidosClienteDelta)
|
|
private
|
|
f_OBSERVACIONES: IROStrings;
|
|
f_INCIDENCIAS: IROStrings;
|
|
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 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 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_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 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 GetFECHA_PEDIDOValue: DateTime; virtual;
|
|
function GetFECHA_PEDIDOIsNull: Boolean; virtual;
|
|
function GetOldFECHA_PEDIDOValue: DateTime; virtual;
|
|
function GetOldFECHA_PEDIDOIsNull: Boolean; virtual;
|
|
procedure SetFECHA_PEDIDOValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_PEDIDOIsNull(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 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 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 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 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 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 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 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 GetDESCUENTO2Value: Float; virtual;
|
|
function GetDESCUENTO2IsNull: Boolean; virtual;
|
|
function GetOldDESCUENTO2Value: Float; virtual;
|
|
function GetOldDESCUENTO2IsNull: Boolean; virtual;
|
|
procedure SetDESCUENTO2Value(const aValue: Float); virtual;
|
|
procedure SetDESCUENTO2IsNull(const aValue: Boolean); virtual;
|
|
function GetIMPORTE_DESCUENTO2Value: Currency; virtual;
|
|
function GetIMPORTE_DESCUENTO2IsNull: Boolean; virtual;
|
|
function GetOldIMPORTE_DESCUENTO2Value: Currency; virtual;
|
|
function GetOldIMPORTE_DESCUENTO2IsNull: Boolean; virtual;
|
|
procedure SetIMPORTE_DESCUENTO2Value(const aValue: Currency); virtual;
|
|
procedure SetIMPORTE_DESCUENTO2IsNull(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 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_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 GetFORMA_PAGOValue: String; virtual;
|
|
function GetFORMA_PAGOIsNull: Boolean; virtual;
|
|
function GetOldFORMA_PAGOValue: String; virtual;
|
|
function GetOldFORMA_PAGOIsNull: Boolean; virtual;
|
|
procedure SetFORMA_PAGOValue(const aValue: String); virtual;
|
|
procedure SetFORMA_PAGOIsNull(const aValue: Boolean); virtual;
|
|
function GetREF_TIENDA_WEBValue: Integer; virtual;
|
|
function GetREF_TIENDA_WEBIsNull: Boolean; virtual;
|
|
function GetOldREF_TIENDA_WEBValue: Integer; virtual;
|
|
function GetOldREF_TIENDA_WEBIsNull: Boolean; virtual;
|
|
procedure SetREF_TIENDA_WEBValue(const aValue: Integer); virtual;
|
|
procedure SetREF_TIENDA_WEBIsNull(const aValue: Boolean); virtual;
|
|
function GetFECHA_PREVISTA_ENVIOValue: DateTime; virtual;
|
|
function GetFECHA_PREVISTA_ENVIOIsNull: Boolean; virtual;
|
|
function GetOldFECHA_PREVISTA_ENVIOValue: DateTime; virtual;
|
|
function GetOldFECHA_PREVISTA_ENVIOIsNull: Boolean; virtual;
|
|
procedure SetFECHA_PREVISTA_ENVIOValue(const aValue: DateTime); virtual;
|
|
procedure SetFECHA_PREVISTA_ENVIOIsNull(const aValue: Boolean); virtual;
|
|
function GetDATOS_BANCARIOSValue: String; virtual;
|
|
function GetDATOS_BANCARIOSIsNull: Boolean; virtual;
|
|
function GetOldDATOS_BANCARIOSValue: String; virtual;
|
|
function GetOldDATOS_BANCARIOSIsNull: Boolean; virtual;
|
|
procedure SetDATOS_BANCARIOSValue(const aValue: String); virtual;
|
|
procedure SetDATOS_BANCARIOSIsNull(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 : String read GetNOMBREValue write SetNOMBREValue;
|
|
property NOMBREIsNull : Boolean read GetNOMBREIsNull write SetNOMBREIsNull;
|
|
property OldNOMBRE : String read GetOldNOMBREValue;
|
|
property OldNOMBREIsNull : Boolean read GetOldNOMBREIsNull;
|
|
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_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 SITUACION : String read GetSITUACIONValue write SetSITUACIONValue;
|
|
property SITUACIONIsNull : Boolean read GetSITUACIONIsNull write SetSITUACIONIsNull;
|
|
property OldSITUACION : String read GetOldSITUACIONValue;
|
|
property OldSITUACIONIsNull : Boolean read GetOldSITUACIONIsNull;
|
|
property FECHA_PEDIDO : DateTime read GetFECHA_PEDIDOValue write SetFECHA_PEDIDOValue;
|
|
property FECHA_PEDIDOIsNull : Boolean read GetFECHA_PEDIDOIsNull write SetFECHA_PEDIDOIsNull;
|
|
property OldFECHA_PEDIDO : DateTime read GetOldFECHA_PEDIDOValue;
|
|
property OldFECHA_PEDIDOIsNull : Boolean read GetOldFECHA_PEDIDOIsNull;
|
|
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 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 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 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 TELEFONO : String read GetTELEFONOValue write SetTELEFONOValue;
|
|
property TELEFONOIsNull : Boolean read GetTELEFONOIsNull write SetTELEFONOIsNull;
|
|
property OldTELEFONO : String read GetOldTELEFONOValue;
|
|
property OldTELEFONOIsNull : Boolean read GetOldTELEFONOIsNull;
|
|
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 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 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 DESCUENTO2 : Float read GetDESCUENTO2Value write SetDESCUENTO2Value;
|
|
property DESCUENTO2IsNull : Boolean read GetDESCUENTO2IsNull write SetDESCUENTO2IsNull;
|
|
property OldDESCUENTO2 : Float read GetOldDESCUENTO2Value;
|
|
property OldDESCUENTO2IsNull : Boolean read GetOldDESCUENTO2IsNull;
|
|
property IMPORTE_DESCUENTO2 : Currency read GetIMPORTE_DESCUENTO2Value write SetIMPORTE_DESCUENTO2Value;
|
|
property IMPORTE_DESCUENTO2IsNull : Boolean read GetIMPORTE_DESCUENTO2IsNull write SetIMPORTE_DESCUENTO2IsNull;
|
|
property OldIMPORTE_DESCUENTO2 : Currency read GetOldIMPORTE_DESCUENTO2Value;
|
|
property OldIMPORTE_DESCUENTO2IsNull : Boolean read GetOldIMPORTE_DESCUENTO2IsNull;
|
|
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 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_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 FORMA_PAGO : String read GetFORMA_PAGOValue write SetFORMA_PAGOValue;
|
|
property FORMA_PAGOIsNull : Boolean read GetFORMA_PAGOIsNull write SetFORMA_PAGOIsNull;
|
|
property OldFORMA_PAGO : String read GetOldFORMA_PAGOValue;
|
|
property OldFORMA_PAGOIsNull : Boolean read GetOldFORMA_PAGOIsNull;
|
|
property REF_TIENDA_WEB : Integer read GetREF_TIENDA_WEBValue write SetREF_TIENDA_WEBValue;
|
|
property REF_TIENDA_WEBIsNull : Boolean read GetREF_TIENDA_WEBIsNull write SetREF_TIENDA_WEBIsNull;
|
|
property OldREF_TIENDA_WEB : Integer read GetOldREF_TIENDA_WEBValue;
|
|
property OldREF_TIENDA_WEBIsNull : Boolean read GetOldREF_TIENDA_WEBIsNull;
|
|
property FECHA_PREVISTA_ENVIO : DateTime read GetFECHA_PREVISTA_ENVIOValue write SetFECHA_PREVISTA_ENVIOValue;
|
|
property FECHA_PREVISTA_ENVIOIsNull : Boolean read GetFECHA_PREVISTA_ENVIOIsNull write SetFECHA_PREVISTA_ENVIOIsNull;
|
|
property OldFECHA_PREVISTA_ENVIO : DateTime read GetOldFECHA_PREVISTA_ENVIOValue;
|
|
property OldFECHA_PREVISTA_ENVIOIsNull : Boolean read GetOldFECHA_PREVISTA_ENVIOIsNull;
|
|
property DATOS_BANCARIOS : String read GetDATOS_BANCARIOSValue write SetDATOS_BANCARIOSValue;
|
|
property DATOS_BANCARIOSIsNull : Boolean read GetDATOS_BANCARIOSIsNull write SetDATOS_BANCARIOSIsNull;
|
|
property OldDATOS_BANCARIOS : String read GetOldDATOS_BANCARIOSValue;
|
|
property OldDATOS_BANCARIOSIsNull : Boolean read GetOldDATOS_BANCARIOSIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IPedidosCliente_DetallesDelta }
|
|
IPedidosCliente_DetallesDelta = interface(IPedidosCliente_Detalles)
|
|
['{A2D12C3B-DDE4-4D84-B136-02BDED3566D9}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_PEDIDOValue : Integer;
|
|
function GetOldPOSICIONValue : Integer;
|
|
function GetOldTIPO_DETALLEValue : String;
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldREFERENCIAValue : String;
|
|
function GetOldREFERENCIA_PROVEEDORValue : String;
|
|
function GetOldCONCEPTOValue : String;
|
|
function GetOldCANTIDADValue : Float;
|
|
function GetOldIMPORTE_UNIDADValue : Currency;
|
|
function GetOldUNIDAD_MEDIDAValue : String;
|
|
function GetOldDESCUENTOValue : Float;
|
|
function GetOldIMPORTE_PORTEValue : Currency;
|
|
function GetOldIMPORTE_TOTALValue : Currency;
|
|
function GetOldVISIBLEValue : Integer;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldPOSICION : Integer read GetOldPOSICIONValue;
|
|
property OldTIPO_DETALLE : String read GetOldTIPO_DETALLEValue;
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldREFERENCIA : String read GetOldREFERENCIAValue;
|
|
property OldREFERENCIA_PROVEEDOR : String read GetOldREFERENCIA_PROVEEDORValue;
|
|
property OldCONCEPTO : String read GetOldCONCEPTOValue;
|
|
property OldCANTIDAD : Float read GetOldCANTIDADValue;
|
|
property OldIMPORTE_UNIDAD : Currency read GetOldIMPORTE_UNIDADValue;
|
|
property OldUNIDAD_MEDIDA : String read GetOldUNIDAD_MEDIDAValue;
|
|
property OldDESCUENTO : Float read GetOldDESCUENTOValue;
|
|
property OldIMPORTE_PORTE : Currency read GetOldIMPORTE_PORTEValue;
|
|
property OldIMPORTE_TOTAL : Currency read GetOldIMPORTE_TOTALValue;
|
|
property OldVISIBLE : Integer read GetOldVISIBLEValue;
|
|
end;
|
|
|
|
{ TPedidosCliente_DetallesBusinessProcessorRules }
|
|
TPedidosCliente_DetallesBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidosCliente_Detalles, IPedidosCliente_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_PEDIDOValue: Integer; virtual;
|
|
function GetID_PEDIDOIsNull: Boolean; virtual;
|
|
function GetOldID_PEDIDOValue: Integer; virtual;
|
|
function GetOldID_PEDIDOIsNull: Boolean; virtual;
|
|
procedure SetID_PEDIDOValue(const aValue: Integer); virtual;
|
|
procedure SetID_PEDIDOIsNull(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 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 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;
|
|
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: Float; virtual;
|
|
function GetCANTIDADIsNull: Boolean; virtual;
|
|
function GetOldCANTIDADValue: Float; virtual;
|
|
function GetOldCANTIDADIsNull: Boolean; virtual;
|
|
procedure SetCANTIDADValue(const aValue: Float); 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 GetUNIDAD_MEDIDAValue: String; virtual;
|
|
function GetUNIDAD_MEDIDAIsNull: Boolean; virtual;
|
|
function GetOldUNIDAD_MEDIDAValue: String; virtual;
|
|
function GetOldUNIDAD_MEDIDAIsNull: Boolean; virtual;
|
|
procedure SetUNIDAD_MEDIDAValue(const aValue: String); virtual;
|
|
procedure SetUNIDAD_MEDIDAIsNull(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 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: Integer; virtual;
|
|
function GetVISIBLEIsNull: Boolean; virtual;
|
|
function GetOldVISIBLEValue: Integer; virtual;
|
|
function GetOldVISIBLEIsNull: Boolean; virtual;
|
|
procedure SetVISIBLEValue(const aValue: Integer); virtual;
|
|
procedure SetVISIBLEIsNull(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_PEDIDO : Integer read GetID_PEDIDOValue write SetID_PEDIDOValue;
|
|
property ID_PEDIDOIsNull : Boolean read GetID_PEDIDOIsNull write SetID_PEDIDOIsNull;
|
|
property OldID_PEDIDO : Integer read GetOldID_PEDIDOValue;
|
|
property OldID_PEDIDOIsNull : Boolean read GetOldID_PEDIDOIsNull;
|
|
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 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 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;
|
|
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 : Float read GetCANTIDADValue write SetCANTIDADValue;
|
|
property CANTIDADIsNull : Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
|
|
property OldCANTIDAD : Float 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 UNIDAD_MEDIDA : String read GetUNIDAD_MEDIDAValue write SetUNIDAD_MEDIDAValue;
|
|
property UNIDAD_MEDIDAIsNull : Boolean read GetUNIDAD_MEDIDAIsNull write SetUNIDAD_MEDIDAIsNull;
|
|
property OldUNIDAD_MEDIDA : String read GetOldUNIDAD_MEDIDAValue;
|
|
property OldUNIDAD_MEDIDAIsNull : Boolean read GetOldUNIDAD_MEDIDAIsNull;
|
|
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 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 : Integer read GetVISIBLEValue write SetVISIBLEValue;
|
|
property VISIBLEIsNull : Boolean read GetVISIBLEIsNull write SetVISIBLEIsNull;
|
|
property OldVISIBLE : Integer read GetOldVISIBLEValue;
|
|
property OldVISIBLEIsNull : Boolean read GetOldVISIBLEIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IPedidoCliente_Articulos_PendientesDelta }
|
|
IPedidoCliente_Articulos_PendientesDelta = interface(IPedidoCliente_Articulos_Pendientes)
|
|
['{812585BF-8205-45F0-A085-AABFC1341609}']
|
|
{ Property getters and setters }
|
|
function GetOldID_ARTICULOValue : Integer;
|
|
function GetOldCANTIDAD_PEDValue : Float;
|
|
function GetOldCANTIDAD_ALBValue : Float;
|
|
function GetOldCANTIDAD_PENDIENTEValue : Float;
|
|
|
|
{ Properties }
|
|
property OldID_ARTICULO : Integer read GetOldID_ARTICULOValue;
|
|
property OldCANTIDAD_PED : Float read GetOldCANTIDAD_PEDValue;
|
|
property OldCANTIDAD_ALB : Float read GetOldCANTIDAD_ALBValue;
|
|
property OldCANTIDAD_PENDIENTE : Float read GetOldCANTIDAD_PENDIENTEValue;
|
|
end;
|
|
|
|
{ TPedidoCliente_Articulos_PendientesBusinessProcessorRules }
|
|
TPedidoCliente_Articulos_PendientesBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidoCliente_Articulos_Pendientes, IPedidoCliente_Articulos_PendientesDelta)
|
|
private
|
|
protected
|
|
{ Property getters and setters }
|
|
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 GetCANTIDAD_PEDValue: Float; virtual;
|
|
function GetCANTIDAD_PEDIsNull: Boolean; virtual;
|
|
function GetOldCANTIDAD_PEDValue: Float; virtual;
|
|
function GetOldCANTIDAD_PEDIsNull: Boolean; virtual;
|
|
procedure SetCANTIDAD_PEDValue(const aValue: Float); virtual;
|
|
procedure SetCANTIDAD_PEDIsNull(const aValue: Boolean); virtual;
|
|
function GetCANTIDAD_ALBValue: Float; virtual;
|
|
function GetCANTIDAD_ALBIsNull: Boolean; virtual;
|
|
function GetOldCANTIDAD_ALBValue: Float; virtual;
|
|
function GetOldCANTIDAD_ALBIsNull: Boolean; virtual;
|
|
procedure SetCANTIDAD_ALBValue(const aValue: Float); virtual;
|
|
procedure SetCANTIDAD_ALBIsNull(const aValue: Boolean); virtual;
|
|
function GetCANTIDAD_PENDIENTEValue: Float; virtual;
|
|
function GetCANTIDAD_PENDIENTEIsNull: Boolean; virtual;
|
|
function GetOldCANTIDAD_PENDIENTEValue: Float; virtual;
|
|
function GetOldCANTIDAD_PENDIENTEIsNull: Boolean; virtual;
|
|
procedure SetCANTIDAD_PENDIENTEValue(const aValue: Float); virtual;
|
|
procedure SetCANTIDAD_PENDIENTEIsNull(const aValue: Boolean); virtual;
|
|
|
|
{ Properties }
|
|
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 CANTIDAD_PED : Float read GetCANTIDAD_PEDValue write SetCANTIDAD_PEDValue;
|
|
property CANTIDAD_PEDIsNull : Boolean read GetCANTIDAD_PEDIsNull write SetCANTIDAD_PEDIsNull;
|
|
property OldCANTIDAD_PED : Float read GetOldCANTIDAD_PEDValue;
|
|
property OldCANTIDAD_PEDIsNull : Boolean read GetOldCANTIDAD_PEDIsNull;
|
|
property CANTIDAD_ALB : Float read GetCANTIDAD_ALBValue write SetCANTIDAD_ALBValue;
|
|
property CANTIDAD_ALBIsNull : Boolean read GetCANTIDAD_ALBIsNull write SetCANTIDAD_ALBIsNull;
|
|
property OldCANTIDAD_ALB : Float read GetOldCANTIDAD_ALBValue;
|
|
property OldCANTIDAD_ALBIsNull : Boolean read GetOldCANTIDAD_ALBIsNull;
|
|
property CANTIDAD_PENDIENTE : Float read GetCANTIDAD_PENDIENTEValue write SetCANTIDAD_PENDIENTEValue;
|
|
property CANTIDAD_PENDIENTEIsNull : Boolean read GetCANTIDAD_PENDIENTEIsNull write SetCANTIDAD_PENDIENTEIsNull;
|
|
property OldCANTIDAD_PENDIENTE : Float read GetOldCANTIDAD_PENDIENTEValue;
|
|
property OldCANTIDAD_PENDIENTEIsNull : Boolean read GetOldCANTIDAD_PENDIENTEIsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
{ IPedidosCliente_Detalle_ColorDelta }
|
|
IPedidosCliente_Detalle_ColorDelta = interface(IPedidosCliente_Detalle_Color)
|
|
['{8B9E6B02-0B8E-4277-B618-BB3E0E9AAC8F}']
|
|
{ Property getters and setters }
|
|
function GetOldIDValue : Integer;
|
|
function GetOldID_DETALLEValue : Integer;
|
|
function GetOldCOLOR1Value : Integer;
|
|
function GetOldCOLOR2Value : Integer;
|
|
function GetOldCOLOR3Value : Integer;
|
|
function GetOldCOLOR4Value : Integer;
|
|
function GetOldCOLOR5Value : Integer;
|
|
function GetOldCOLOR6Value : Integer;
|
|
function GetOldCOLOR7Value : Integer;
|
|
function GetOldCOLOR8Value : Integer;
|
|
function GetOldCOLOR9Value : Integer;
|
|
function GetOldCOLOR10Value : Integer;
|
|
function GetOldCOLOR11Value : Integer;
|
|
function GetOldCOLOR12Value : Integer;
|
|
|
|
{ Properties }
|
|
property OldID : Integer read GetOldIDValue;
|
|
property OldID_DETALLE : Integer read GetOldID_DETALLEValue;
|
|
property OldCOLOR1 : Integer read GetOldCOLOR1Value;
|
|
property OldCOLOR2 : Integer read GetOldCOLOR2Value;
|
|
property OldCOLOR3 : Integer read GetOldCOLOR3Value;
|
|
property OldCOLOR4 : Integer read GetOldCOLOR4Value;
|
|
property OldCOLOR5 : Integer read GetOldCOLOR5Value;
|
|
property OldCOLOR6 : Integer read GetOldCOLOR6Value;
|
|
property OldCOLOR7 : Integer read GetOldCOLOR7Value;
|
|
property OldCOLOR8 : Integer read GetOldCOLOR8Value;
|
|
property OldCOLOR9 : Integer read GetOldCOLOR9Value;
|
|
property OldCOLOR10 : Integer read GetOldCOLOR10Value;
|
|
property OldCOLOR11 : Integer read GetOldCOLOR11Value;
|
|
property OldCOLOR12 : Integer read GetOldCOLOR12Value;
|
|
end;
|
|
|
|
{ TPedidosCliente_Detalle_ColorBusinessProcessorRules }
|
|
TPedidosCliente_Detalle_ColorBusinessProcessorRules = class(TDABusinessProcessorRules, IPedidosCliente_Detalle_Color, IPedidosCliente_Detalle_ColorDelta)
|
|
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_DETALLEValue: Integer; virtual;
|
|
function GetID_DETALLEIsNull: Boolean; virtual;
|
|
function GetOldID_DETALLEValue: Integer; virtual;
|
|
function GetOldID_DETALLEIsNull: Boolean; virtual;
|
|
procedure SetID_DETALLEValue(const aValue: Integer); virtual;
|
|
procedure SetID_DETALLEIsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR1Value: Integer; virtual;
|
|
function GetCOLOR1IsNull: Boolean; virtual;
|
|
function GetOldCOLOR1Value: Integer; virtual;
|
|
function GetOldCOLOR1IsNull: Boolean; virtual;
|
|
procedure SetCOLOR1Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR1IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR2Value: Integer; virtual;
|
|
function GetCOLOR2IsNull: Boolean; virtual;
|
|
function GetOldCOLOR2Value: Integer; virtual;
|
|
function GetOldCOLOR2IsNull: Boolean; virtual;
|
|
procedure SetCOLOR2Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR2IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR3Value: Integer; virtual;
|
|
function GetCOLOR3IsNull: Boolean; virtual;
|
|
function GetOldCOLOR3Value: Integer; virtual;
|
|
function GetOldCOLOR3IsNull: Boolean; virtual;
|
|
procedure SetCOLOR3Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR3IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR4Value: Integer; virtual;
|
|
function GetCOLOR4IsNull: Boolean; virtual;
|
|
function GetOldCOLOR4Value: Integer; virtual;
|
|
function GetOldCOLOR4IsNull: Boolean; virtual;
|
|
procedure SetCOLOR4Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR4IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR5Value: Integer; virtual;
|
|
function GetCOLOR5IsNull: Boolean; virtual;
|
|
function GetOldCOLOR5Value: Integer; virtual;
|
|
function GetOldCOLOR5IsNull: Boolean; virtual;
|
|
procedure SetCOLOR5Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR5IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR6Value: Integer; virtual;
|
|
function GetCOLOR6IsNull: Boolean; virtual;
|
|
function GetOldCOLOR6Value: Integer; virtual;
|
|
function GetOldCOLOR6IsNull: Boolean; virtual;
|
|
procedure SetCOLOR6Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR6IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR7Value: Integer; virtual;
|
|
function GetCOLOR7IsNull: Boolean; virtual;
|
|
function GetOldCOLOR7Value: Integer; virtual;
|
|
function GetOldCOLOR7IsNull: Boolean; virtual;
|
|
procedure SetCOLOR7Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR7IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR8Value: Integer; virtual;
|
|
function GetCOLOR8IsNull: Boolean; virtual;
|
|
function GetOldCOLOR8Value: Integer; virtual;
|
|
function GetOldCOLOR8IsNull: Boolean; virtual;
|
|
procedure SetCOLOR8Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR8IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR9Value: Integer; virtual;
|
|
function GetCOLOR9IsNull: Boolean; virtual;
|
|
function GetOldCOLOR9Value: Integer; virtual;
|
|
function GetOldCOLOR9IsNull: Boolean; virtual;
|
|
procedure SetCOLOR9Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR9IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR10Value: Integer; virtual;
|
|
function GetCOLOR10IsNull: Boolean; virtual;
|
|
function GetOldCOLOR10Value: Integer; virtual;
|
|
function GetOldCOLOR10IsNull: Boolean; virtual;
|
|
procedure SetCOLOR10Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR10IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR11Value: Integer; virtual;
|
|
function GetCOLOR11IsNull: Boolean; virtual;
|
|
function GetOldCOLOR11Value: Integer; virtual;
|
|
function GetOldCOLOR11IsNull: Boolean; virtual;
|
|
procedure SetCOLOR11Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR11IsNull(const aValue: Boolean); virtual;
|
|
function GetCOLOR12Value: Integer; virtual;
|
|
function GetCOLOR12IsNull: Boolean; virtual;
|
|
function GetOldCOLOR12Value: Integer; virtual;
|
|
function GetOldCOLOR12IsNull: Boolean; virtual;
|
|
procedure SetCOLOR12Value(const aValue: Integer); virtual;
|
|
procedure SetCOLOR12IsNull(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_DETALLE : Integer read GetID_DETALLEValue write SetID_DETALLEValue;
|
|
property ID_DETALLEIsNull : Boolean read GetID_DETALLEIsNull write SetID_DETALLEIsNull;
|
|
property OldID_DETALLE : Integer read GetOldID_DETALLEValue;
|
|
property OldID_DETALLEIsNull : Boolean read GetOldID_DETALLEIsNull;
|
|
property COLOR1 : Integer read GetCOLOR1Value write SetCOLOR1Value;
|
|
property COLOR1IsNull : Boolean read GetCOLOR1IsNull write SetCOLOR1IsNull;
|
|
property OldCOLOR1 : Integer read GetOldCOLOR1Value;
|
|
property OldCOLOR1IsNull : Boolean read GetOldCOLOR1IsNull;
|
|
property COLOR2 : Integer read GetCOLOR2Value write SetCOLOR2Value;
|
|
property COLOR2IsNull : Boolean read GetCOLOR2IsNull write SetCOLOR2IsNull;
|
|
property OldCOLOR2 : Integer read GetOldCOLOR2Value;
|
|
property OldCOLOR2IsNull : Boolean read GetOldCOLOR2IsNull;
|
|
property COLOR3 : Integer read GetCOLOR3Value write SetCOLOR3Value;
|
|
property COLOR3IsNull : Boolean read GetCOLOR3IsNull write SetCOLOR3IsNull;
|
|
property OldCOLOR3 : Integer read GetOldCOLOR3Value;
|
|
property OldCOLOR3IsNull : Boolean read GetOldCOLOR3IsNull;
|
|
property COLOR4 : Integer read GetCOLOR4Value write SetCOLOR4Value;
|
|
property COLOR4IsNull : Boolean read GetCOLOR4IsNull write SetCOLOR4IsNull;
|
|
property OldCOLOR4 : Integer read GetOldCOLOR4Value;
|
|
property OldCOLOR4IsNull : Boolean read GetOldCOLOR4IsNull;
|
|
property COLOR5 : Integer read GetCOLOR5Value write SetCOLOR5Value;
|
|
property COLOR5IsNull : Boolean read GetCOLOR5IsNull write SetCOLOR5IsNull;
|
|
property OldCOLOR5 : Integer read GetOldCOLOR5Value;
|
|
property OldCOLOR5IsNull : Boolean read GetOldCOLOR5IsNull;
|
|
property COLOR6 : Integer read GetCOLOR6Value write SetCOLOR6Value;
|
|
property COLOR6IsNull : Boolean read GetCOLOR6IsNull write SetCOLOR6IsNull;
|
|
property OldCOLOR6 : Integer read GetOldCOLOR6Value;
|
|
property OldCOLOR6IsNull : Boolean read GetOldCOLOR6IsNull;
|
|
property COLOR7 : Integer read GetCOLOR7Value write SetCOLOR7Value;
|
|
property COLOR7IsNull : Boolean read GetCOLOR7IsNull write SetCOLOR7IsNull;
|
|
property OldCOLOR7 : Integer read GetOldCOLOR7Value;
|
|
property OldCOLOR7IsNull : Boolean read GetOldCOLOR7IsNull;
|
|
property COLOR8 : Integer read GetCOLOR8Value write SetCOLOR8Value;
|
|
property COLOR8IsNull : Boolean read GetCOLOR8IsNull write SetCOLOR8IsNull;
|
|
property OldCOLOR8 : Integer read GetOldCOLOR8Value;
|
|
property OldCOLOR8IsNull : Boolean read GetOldCOLOR8IsNull;
|
|
property COLOR9 : Integer read GetCOLOR9Value write SetCOLOR9Value;
|
|
property COLOR9IsNull : Boolean read GetCOLOR9IsNull write SetCOLOR9IsNull;
|
|
property OldCOLOR9 : Integer read GetOldCOLOR9Value;
|
|
property OldCOLOR9IsNull : Boolean read GetOldCOLOR9IsNull;
|
|
property COLOR10 : Integer read GetCOLOR10Value write SetCOLOR10Value;
|
|
property COLOR10IsNull : Boolean read GetCOLOR10IsNull write SetCOLOR10IsNull;
|
|
property OldCOLOR10 : Integer read GetOldCOLOR10Value;
|
|
property OldCOLOR10IsNull : Boolean read GetOldCOLOR10IsNull;
|
|
property COLOR11 : Integer read GetCOLOR11Value write SetCOLOR11Value;
|
|
property COLOR11IsNull : Boolean read GetCOLOR11IsNull write SetCOLOR11IsNull;
|
|
property OldCOLOR11 : Integer read GetOldCOLOR11Value;
|
|
property OldCOLOR11IsNull : Boolean read GetOldCOLOR11IsNull;
|
|
property COLOR12 : Integer read GetCOLOR12Value write SetCOLOR12Value;
|
|
property COLOR12IsNull : Boolean read GetCOLOR12IsNull write SetCOLOR12IsNull;
|
|
property OldCOLOR12 : Integer read GetOldCOLOR12Value;
|
|
property OldCOLOR12IsNull : Boolean read GetOldCOLOR12IsNull;
|
|
|
|
public
|
|
constructor Create(aBusinessProcessor: TDABusinessProcessor); override;
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Variants, uROBinaryHelpers, uDAInterfaces;
|
|
|
|
{ TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules }
|
|
constructor TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetID_PEDIDOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetID_PEDIDOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_PEDIDO] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR1Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR1IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR1Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR1IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR1Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR1IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR1] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR2Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR2Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR2Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR2IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR2] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR3Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR3IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR3Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR3IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR3Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR3IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR3] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR4Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR4IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR4Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR4IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR4Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR4IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR4] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR5Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR5IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR5Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR5IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR5Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR5IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR5] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR6Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR6IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR6Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR6IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR6Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR6IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR6] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR7Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR7IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR7Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR7IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR7Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR7IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR7] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR8Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR8IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR8Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR8IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR8Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR8IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR8] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR9Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR9IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR9Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR9IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR9Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR9IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR9] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR10Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR10IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR10Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR10IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR10Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR10IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR10] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR11Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR11IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR11Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR11IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR11Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR11IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR11] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR12Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetCOLOR12IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR12Value: Int64;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12];
|
|
end;
|
|
|
|
function TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.GetOldCOLOR12IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR12Value(const aValue: Int64);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules.SetCOLOR12IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Art_Colores_PendientesCOLOR12] := Null;
|
|
end;
|
|
|
|
|
|
{ TListaAnosPedidosBusinessProcessorRules }
|
|
constructor TListaAnosPedidosBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TListaAnosPedidosBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TListaAnosPedidosBusinessProcessorRules.GetANOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosPedidosANO];
|
|
end;
|
|
|
|
function TListaAnosPedidosBusinessProcessorRules.GetANOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosPedidosANO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TListaAnosPedidosBusinessProcessorRules.GetOldANOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_ListaAnosPedidosANO];
|
|
end;
|
|
|
|
function TListaAnosPedidosBusinessProcessorRules.GetOldANOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_ListaAnosPedidosANO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TListaAnosPedidosBusinessProcessorRules.SetANOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosPedidosANO] := aValue;
|
|
end;
|
|
|
|
procedure TListaAnosPedidosBusinessProcessorRules.SetANOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_ListaAnosPedidosANO] := Null;
|
|
end;
|
|
|
|
|
|
{ TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules }
|
|
constructor TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_PEDIDOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_PEDIDOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PEDIDO] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PEDIDA_CLIENTEValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PEDIDA_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PEDIDA_CLIENTEValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PEDIDA_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PEDIDA_CLIENTEValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PEDIDA_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_PROVEEDORValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetID_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_PROVEEDORValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldID_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_PROVEEDORValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetID_PROVEEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvID_PROVEEDOR] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PEDIDA_PROVEEDORValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PEDIDA_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PEDIDA_PROVEEDORValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PEDIDA_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PEDIDA_PROVEEDORValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PEDIDA_PROVEEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PEDIDA_PROVEEDOR] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PENDIENTE_PEDIRValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetCANT_PENDIENTE_PEDIRIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PENDIENTE_PEDIRValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR];
|
|
end;
|
|
|
|
function TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.GetOldCANT_PENDIENTE_PEDIRIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PENDIENTE_PEDIRValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules.SetCANT_PENDIENTE_PEDIRIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_ArticulosPendientesPedirAProvCANT_PENDIENTE_PEDIR] := Null;
|
|
end;
|
|
|
|
|
|
{ TPedidosClienteBusinessProcessorRules }
|
|
constructor TPedidosClienteBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
var
|
|
StrList: TStringList;
|
|
begin
|
|
inherited;
|
|
|
|
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 TPedidosClienteBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.OBSERVACIONES_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteOBSERVACIONES] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.INCIDENCIAS_OnChange(Sender: TObject);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS] := TStringList(Sender).Text;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_EMPRESAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_EMPRESA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_EMPRESAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_EMPRESA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_EMPRESAValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_EMPRESA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_EMPRESAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_EMPRESA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_EMPRESAValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_EMPRESA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_EMPRESAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_EMPRESA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_CLIENTEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_CLIENTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_CLIENTEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_CLIENTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_CLIENTEValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteNOMBRE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetNOMBREIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteNOMBRE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldNOMBREValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteNOMBRE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldNOMBREIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteNOMBRE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetNOMBREValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteNOMBRE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetNOMBREIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteNOMBRE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREFERENCIA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREFERENCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREFERENCIA_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREFERENCIA_CLIENTEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREFERENCIA_CLIENTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREFERENCIA_CLIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREFERENCIA_CLIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREFERENCIA_CLIENTEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA_CLIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREFERENCIA_CLIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREFERENCIA_CLIENTE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetSITUACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteSITUACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetSITUACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteSITUACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldSITUACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteSITUACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldSITUACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteSITUACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetSITUACIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteSITUACION] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetSITUACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteSITUACION] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_PEDIDOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PEDIDO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_PEDIDOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_PEDIDO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_PEDIDOValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PEDIDO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_PEDIDOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PEDIDO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_DIRECCIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_DIRECCION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_DIRECCIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_DIRECCION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_DIRECCIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_DIRECCION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_DIRECCIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_DIRECCION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_DIRECCIONValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_DIRECCION] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_DIRECCIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_DIRECCION] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetCALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCALLE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetCALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldCALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteCALLE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldCALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteCALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetCALLEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCALLE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetCALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCALLE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetCODIGO_POSTALValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCODIGO_POSTAL];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetCODIGO_POSTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCODIGO_POSTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldCODIGO_POSTALValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteCODIGO_POSTAL];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldCODIGO_POSTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteCODIGO_POSTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetCODIGO_POSTALValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCODIGO_POSTAL] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetCODIGO_POSTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteCODIGO_POSTAL] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPOBLACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePOBLACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPOBLACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePOBLACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPOBLACIONValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePOBLACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPOBLACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePOBLACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPOBLACIONValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePOBLACION] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPOBLACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePOBLACION] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPROVINCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePROVINCIA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPROVINCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePROVINCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPROVINCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePROVINCIA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPROVINCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePROVINCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPROVINCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePROVINCIA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPROVINCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePROVINCIA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPERSONA_CONTACTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePERSONA_CONTACTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetPERSONA_CONTACTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePERSONA_CONTACTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPERSONA_CONTACTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePERSONA_CONTACTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldPERSONA_CONTACTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClientePERSONA_CONTACTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPERSONA_CONTACTOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePERSONA_CONTACTO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetPERSONA_CONTACTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClientePERSONA_CONTACTO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetTELEFONOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteTELEFONO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetTELEFONOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteTELEFONO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldTELEFONOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteTELEFONO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldTELEFONOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteTELEFONO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetTELEFONOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteTELEFONO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetTELEFONOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteTELEFONO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOBSERVACIONESValue: IROStrings;
|
|
begin
|
|
result := f_OBSERVACIONES;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteOBSERVACIONES];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOBSERVACIONESIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteOBSERVACIONES];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldOBSERVACIONESValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteOBSERVACIONES];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldOBSERVACIONESIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteOBSERVACIONES];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetOBSERVACIONESIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteOBSERVACIONES] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetINCIDENCIASValue: IROStrings;
|
|
begin
|
|
result := f_INCIDENCIAS;
|
|
result.Text := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetINCIDENCIASIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldINCIDENCIASValue: IROStrings;
|
|
begin
|
|
result := NewROStrings();
|
|
result.Text := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteINCIDENCIAS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldINCIDENCIASIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteINCIDENCIAS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetINCIDENCIASIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetINCIDENCIAS_ACTIVASValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetINCIDENCIAS_ACTIVASIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldINCIDENCIAS_ACTIVASValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldINCIDENCIAS_ACTIVASIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetINCIDENCIAS_ACTIVASValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetINCIDENCIAS_ACTIVASIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteINCIDENCIAS_ACTIVAS] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_ALTAValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_ALTA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_ALTAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_ALTA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_ALTAValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_ALTA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_ALTAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_ALTA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_ALTAValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_ALTA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_ALTAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_ALTA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_MODIFICACIONValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_MODIFICACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_MODIFICACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_MODIFICACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_MODIFICACION];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_MODIFICACIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_MODIFICACION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_MODIFICACIONValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_MODIFICACION] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_MODIFICACIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_MODIFICACION] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetUSUARIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteUSUARIO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetUSUARIOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteUSUARIO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldUSUARIOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteUSUARIO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldUSUARIOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteUSUARIO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetUSUARIOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteUSUARIO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetUSUARIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteUSUARIO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_NETO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_NETOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_NETO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_NETOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_NETO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_NETOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_NETO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_NETOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_NETO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_NETOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_NETO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_PORTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_PORTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_PORTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_PORTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_PORTEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_PORTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_PORTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_PORTE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDESCUENTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDESCUENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTOValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_DESCUENTO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_DESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTOValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDESCUENTO2Value: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO2];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDESCUENTO2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDESCUENTO2Value: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDESCUENTO2];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDESCUENTO2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDESCUENTO2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDESCUENTO2Value(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO2] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDESCUENTO2IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDESCUENTO2] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTO2Value: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_DESCUENTO2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTO2Value: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_DESCUENTO2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTO2Value(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_DESCUENTO2IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_DESCUENTO2] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetBASE_IMPONIBLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteBASE_IMPONIBLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteBASE_IMPONIBLE];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldBASE_IMPONIBLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteBASE_IMPONIBLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetBASE_IMPONIBLEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteBASE_IMPONIBLE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetBASE_IMPONIBLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteBASE_IMPONIBLE] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIVAValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIVA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIVAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIVA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIVAValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIVA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIVAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIVA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIVAValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIVA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIVAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIVA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_IVAValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_IVA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_IVAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_IVA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_IVAValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_IVA];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_IVAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_IVA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_IVAValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_IVA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_IVAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_IVA] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetIMPORTE_TOTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_TOTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldIMPORTE_TOTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteIMPORTE_TOTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_TOTALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_TOTAL] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetIMPORTE_TOTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteIMPORTE_TOTAL] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_FORMA_PAGOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_FORMA_PAGO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetID_FORMA_PAGOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_FORMA_PAGO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_FORMA_PAGOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_FORMA_PAGO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldID_FORMA_PAGOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteID_FORMA_PAGO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_FORMA_PAGOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_FORMA_PAGO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetID_FORMA_PAGOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteID_FORMA_PAGO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFORMA_PAGOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFORMA_PAGO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFORMA_PAGOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFORMA_PAGO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFORMA_PAGOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFORMA_PAGO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFORMA_PAGOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFORMA_PAGO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFORMA_PAGOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFORMA_PAGO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFORMA_PAGOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFORMA_PAGO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREF_TIENDA_WEBValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREF_TIENDA_WEB];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetREF_TIENDA_WEBIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREF_TIENDA_WEB];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREF_TIENDA_WEBValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREF_TIENDA_WEB];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldREF_TIENDA_WEBIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteREF_TIENDA_WEB];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREF_TIENDA_WEBValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREF_TIENDA_WEB] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetREF_TIENDA_WEBIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteREF_TIENDA_WEB] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_PREVISTA_ENVIOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetFECHA_PREVISTA_ENVIOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_PREVISTA_ENVIOValue: DateTime;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldFECHA_PREVISTA_ENVIOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_PREVISTA_ENVIOValue(const aValue: DateTime);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetFECHA_PREVISTA_ENVIOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteFECHA_PREVISTA_ENVIO] := Null;
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDATOS_BANCARIOSValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDATOS_BANCARIOS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetDATOS_BANCARIOSIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDATOS_BANCARIOS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDATOS_BANCARIOSValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDATOS_BANCARIOS];
|
|
end;
|
|
|
|
function TPedidosClienteBusinessProcessorRules.GetOldDATOS_BANCARIOSIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosClienteDATOS_BANCARIOS];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDATOS_BANCARIOSValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDATOS_BANCARIOS] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosClienteBusinessProcessorRules.SetDATOS_BANCARIOSIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosClienteDATOS_BANCARIOS] := Null;
|
|
end;
|
|
|
|
|
|
{ TPedidosCliente_DetallesBusinessProcessorRules }
|
|
constructor TPedidosCliente_DetallesBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPedidosCliente_DetallesBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldID_PEDIDOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID_PEDIDO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldID_PEDIDOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID_PEDIDO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetID_PEDIDOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_PEDIDO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetID_PEDIDOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_PEDIDO] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesPOSICION];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetPOSICIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesPOSICION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldPOSICIONValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesPOSICION];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldPOSICIONIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesPOSICION];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetPOSICIONValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesPOSICION] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetPOSICIONIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesPOSICION] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetTIPO_DETALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldTIPO_DETALLEValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldTIPO_DETALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetTIPO_DETALLEValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetTIPO_DETALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesTIPO_DETALLE] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetREFERENCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesREFERENCIA];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesREFERENCIA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetREFERENCIAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetREFERENCIAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetREFERENCIA_PROVEEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetREFERENCIA_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIA_PROVEEDORValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldREFERENCIA_PROVEEDORIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetREFERENCIA_PROVEEDORValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetREFERENCIA_PROVEEDORIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesREFERENCIA_PROVEEDOR] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCONCEPTO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetCONCEPTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCONCEPTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldCONCEPTOValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesCONCEPTO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldCONCEPTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesCONCEPTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetCONCEPTOValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCONCEPTO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetCONCEPTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCONCEPTO] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetCANTIDADValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCANTIDAD];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetCANTIDADIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCANTIDAD];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldCANTIDADValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesCANTIDAD];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldCANTIDADIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesCANTIDAD];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetCANTIDADValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCANTIDAD] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetCANTIDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesCANTIDAD] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_UNIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_UNIDADIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_UNIDADValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_UNIDADIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_UNIDADValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_UNIDADIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_UNIDAD] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetUNIDAD_MEDIDAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetUNIDAD_MEDIDAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldUNIDAD_MEDIDAValue: String;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldUNIDAD_MEDIDAIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetUNIDAD_MEDIDAValue(const aValue: String);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetUNIDAD_MEDIDAIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesUNIDAD_MEDIDA] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesDESCUENTO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetDESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesDESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldDESCUENTOValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesDESCUENTO];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldDESCUENTOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesDESCUENTO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetDESCUENTOValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesDESCUENTO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetDESCUENTOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesDESCUENTO] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_PORTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_PORTEValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_PORTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_PORTEValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_PORTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_PORTE] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetIMPORTE_TOTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_TOTALValue: Currency;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldIMPORTE_TOTALIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_TOTALValue(const aValue: Currency);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetIMPORTE_TOTALIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesIMPORTE_TOTAL] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetVISIBLEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesVISIBLE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetVISIBLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesVISIBLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldVISIBLEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesVISIBLE];
|
|
end;
|
|
|
|
function TPedidosCliente_DetallesBusinessProcessorRules.GetOldVISIBLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_DetallesVISIBLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetVISIBLEValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesVISIBLE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_DetallesBusinessProcessorRules.SetVISIBLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_DetallesVISIBLE] := Null;
|
|
end;
|
|
|
|
|
|
{ TPedidoCliente_Articulos_PendientesBusinessProcessorRules }
|
|
constructor TPedidoCliente_Articulos_PendientesBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPedidoCliente_Articulos_PendientesBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldID_ARTICULOValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldID_ARTICULOIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetID_ARTICULOValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetID_ARTICULOIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesID_ARTICULO] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_PEDValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_PEDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_PEDValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_PEDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_PEDValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_PEDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PED] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_ALBValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_ALBIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_ALBValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_ALBIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_ALBValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_ALBIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_ALB] := Null;
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_PENDIENTEValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetCANTIDAD_PENDIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_PENDIENTEValue: Float;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE];
|
|
end;
|
|
|
|
function TPedidoCliente_Articulos_PendientesBusinessProcessorRules.GetOldCANTIDAD_PENDIENTEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_PENDIENTEValue(const aValue: Float);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidoCliente_Articulos_PendientesBusinessProcessorRules.SetCANTIDAD_PENDIENTEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidoCliente_Articulos_PendientesCANTIDAD_PENDIENTE] := Null;
|
|
end;
|
|
|
|
|
|
{ TPedidosCliente_Detalle_ColorBusinessProcessorRules }
|
|
constructor TPedidosCliente_Detalle_ColorBusinessProcessorRules.Create(aBusinessProcessor: TDABusinessProcessor);
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TPedidosCliente_Detalle_ColorBusinessProcessorRules.Destroy;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldIDValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorID];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldIDIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorID];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetIDValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetIDIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetID_DETALLEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetID_DETALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldID_DETALLEValue: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldID_DETALLEIsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetID_DETALLEValue(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetID_DETALLEIsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorID_DETALLE] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR1Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR1IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR1Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR1IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR1Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR1IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR1] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR2Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR2Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR2IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR2Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR2IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR2] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR3Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR3IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR3Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR3IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR3Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR3IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR3] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR4Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR4IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR4Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR4IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR4Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR4IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR4] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR5Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR5IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR5Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR5IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR5Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR5IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR5] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR6Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR6IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR6Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR6IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR6Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR6IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR6] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR7Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR7IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR7Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR7IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR7Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR7IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR7] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR8Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR8IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR8Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR8IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR8Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR8IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR8] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR9Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR9IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR9Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR9IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR9Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR9IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR9] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR10Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR10IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR10Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR10IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR10Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR10IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR10] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR11Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR11IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR11Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR11IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR11Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR11IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR11] := Null;
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR12Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetCOLOR12IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR12Value: Integer;
|
|
begin
|
|
result := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12];
|
|
end;
|
|
|
|
function TPedidosCliente_Detalle_ColorBusinessProcessorRules.GetOldCOLOR12IsNull: Boolean;
|
|
var v: variant;
|
|
begin
|
|
v := BusinessProcessor.CurrentChange.OldValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12];
|
|
result := VarIsNull(v) or VarIsClear(v);
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR12Value(const aValue: Integer);
|
|
begin
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12] := aValue;
|
|
end;
|
|
|
|
procedure TPedidosCliente_Detalle_ColorBusinessProcessorRules.SetCOLOR12IsNull(const aValue: Boolean);
|
|
begin
|
|
if aValue then
|
|
BusinessProcessor.CurrentChange.NewValueByName[fld_PedidosCliente_Detalle_ColorCOLOR12] := Null;
|
|
end;
|
|
|
|
|
|
initialization
|
|
RegisterBusinessProcessorRules(RID_PedidoCliente_Art_Colores_PendientesDelta, TPedidoCliente_Art_Colores_PendientesBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_ListaAnosPedidosDelta, TListaAnosPedidosBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PedidoCliente_ArticulosPendientesPedirAProvDelta, TPedidoCliente_ArticulosPendientesPedirAProvBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PedidosClienteDelta, TPedidosClienteBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PedidosCliente_DetallesDelta, TPedidosCliente_DetallesBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PedidoCliente_Articulos_PendientesDelta, TPedidoCliente_Articulos_PendientesBusinessProcessorRules);
|
|
RegisterBusinessProcessorRules(RID_PedidosCliente_Detalle_ColorDelta, TPedidosCliente_Detalle_ColorBusinessProcessorRules);
|
|
|
|
end.
|