This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES2/Source/Modulos/Informe ventas por articulo/Model/schInfVentasArticuloClient_Intf.pas

2984 lines
144 KiB
ObjectPascal

unit schInfVentasArticuloClient_Intf;
interface
uses
Classes, DB, schBase_Intf, SysUtils, uROClasses, uDAInterfaces, uDADataTable, FmtBCD, uROXMLIntf;
const
{ Data table 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_InfVentasArticulo = '{3237260C-2F98-4E32-900B-5E8E95BF4BA2}';
RID_TablaVacia = '{03EC1F6A-B248-4B64-9821-167F27870FEB}';
RID_InfVentasAlbArticulo = '{25AD2608-9AFB-454F-B58E-23ACF44807F9}';
{ Data table names }
nme_InfVentasArticulo = 'InfVentasArticulo';
nme_TablaVacia = 'TablaVacia';
nme_InfVentasAlbArticulo = 'InfVentasAlbArticulo';
{ InfVentasArticulo fields }
fld_InfVentasArticuloID_FACTURA = 'ID_FACTURA';
fld_InfVentasArticuloID_EMPRESA = 'ID_EMPRESA';
fld_InfVentasArticuloREFERENCIA_FACTURA = 'REFERENCIA_FACTURA';
fld_InfVentasArticuloFECHA_FACTURA = 'FECHA_FACTURA';
fld_InfVentasArticuloIMPORTE_TOTAL_FACTURA = 'IMPORTE_TOTAL_FACTURA';
fld_InfVentasArticuloID_COMISION_FACTURA = 'ID_COMISION_FACTURA';
fld_InfVentasArticuloID_ARTICULO = 'ID_ARTICULO';
fld_InfVentasArticuloFAMILIA = 'FAMILIA';
fld_InfVentasArticuloREFERENCIA = 'REFERENCIA';
fld_InfVentasArticuloREFERENCIA_PROV = 'REFERENCIA_PROV';
fld_InfVentasArticuloDESCRIPCION = 'DESCRIPCION';
fld_InfVentasArticuloCOMISIONABLE = 'COMISIONABLE';
fld_InfVentasArticuloINVENTARIABLE = 'INVENTARIABLE';
fld_InfVentasArticuloIMPORTE_UNIDAD_COSTE = 'IMPORTE_UNIDAD_COSTE';
fld_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE = 'DESCUENTO_PROVEEDOR_COSTE';
fld_InfVentasArticuloIMPORTE_NETO_COSTE = 'IMPORTE_NETO_COSTE';
fld_InfVentasArticuloIMPORTE_PORTE_COSTE = 'IMPORTE_PORTE_COSTE';
fld_InfVentasArticuloCANTIDAD = 'CANTIDAD';
fld_InfVentasArticuloIMPORTE_UNIDAD_VENTA = 'IMPORTE_UNIDAD_VENTA';
fld_InfVentasArticuloDESCUENTO_CLIENTE_VENTA = 'DESCUENTO_CLIENTE_VENTA';
fld_InfVentasArticuloIMPORTE_NETO_VENTA = 'IMPORTE_NETO_VENTA';
fld_InfVentasArticuloIMPORTE_PORTE_VENTA = 'IMPORTE_PORTE_VENTA';
fld_InfVentasArticuloIMPORTE_TOTAL_VENTA = 'IMPORTE_TOTAL_VENTA';
fld_InfVentasArticuloNIF_CIF_PROVEEDOR = 'NIF_CIF_PROVEEDOR';
fld_InfVentasArticuloNOMBRE_PROVEEDOR = 'NOMBRE_PROVEEDOR';
fld_InfVentasArticuloCALLE_PROVEEDOR = 'CALLE_PROVEEDOR';
fld_InfVentasArticuloPOBLACION_PROVEEDOR = 'POBLACION_PROVEEDOR';
fld_InfVentasArticuloPROVINCIA_PROVEEDOR = 'PROVINCIA_PROVEEDOR';
fld_InfVentasArticuloNIF_CIF_CLIENTE = 'NIF_CIF_CLIENTE';
fld_InfVentasArticuloNOMBRE_CLIENTE = 'NOMBRE_CLIENTE';
fld_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE = 'NOMBRE_COMERCIAL_CLIENTE';
fld_InfVentasArticuloCALLE_CLIENTE = 'CALLE_CLIENTE';
fld_InfVentasArticuloPOBLACION_CLIENTE = 'POBLACION_CLIENTE';
fld_InfVentasArticuloPROVINCIA_CLIENTE = 'PROVINCIA_CLIENTE';
fld_InfVentasArticuloNIF_CIF_AGENTE = 'NIF_CIF_AGENTE';
fld_InfVentasArticuloNOMBRE_AGENTE = 'NOMBRE_AGENTE';
fld_InfVentasArticuloCALLE_AGENTE = 'CALLE_AGENTE';
fld_InfVentasArticuloPOBLACION_AGENTE = 'POBLACION_AGENTE';
fld_InfVentasArticuloPROVINCIA_AGENTE = 'PROVINCIA_AGENTE';
fld_InfVentasArticuloCOMISION_AGENTE = 'COMISION_AGENTE';
fld_InfVentasArticuloIMPORTE_COMISION_AGENTE = 'IMPORTE_COMISION_AGENTE';
{ InfVentasArticulo field indexes }
idx_InfVentasArticuloID_FACTURA = 0;
idx_InfVentasArticuloID_EMPRESA = 1;
idx_InfVentasArticuloREFERENCIA_FACTURA = 2;
idx_InfVentasArticuloFECHA_FACTURA = 3;
idx_InfVentasArticuloIMPORTE_TOTAL_FACTURA = 4;
idx_InfVentasArticuloID_COMISION_FACTURA = 5;
idx_InfVentasArticuloID_ARTICULO = 6;
idx_InfVentasArticuloFAMILIA = 7;
idx_InfVentasArticuloREFERENCIA = 8;
idx_InfVentasArticuloREFERENCIA_PROV = 9;
idx_InfVentasArticuloDESCRIPCION = 10;
idx_InfVentasArticuloCOMISIONABLE = 11;
idx_InfVentasArticuloINVENTARIABLE = 12;
idx_InfVentasArticuloIMPORTE_UNIDAD_COSTE = 13;
idx_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE = 14;
idx_InfVentasArticuloIMPORTE_NETO_COSTE = 15;
idx_InfVentasArticuloIMPORTE_PORTE_COSTE = 16;
idx_InfVentasArticuloCANTIDAD = 17;
idx_InfVentasArticuloIMPORTE_UNIDAD_VENTA = 18;
idx_InfVentasArticuloDESCUENTO_CLIENTE_VENTA = 19;
idx_InfVentasArticuloIMPORTE_NETO_VENTA = 20;
idx_InfVentasArticuloIMPORTE_PORTE_VENTA = 21;
idx_InfVentasArticuloIMPORTE_TOTAL_VENTA = 22;
idx_InfVentasArticuloNIF_CIF_PROVEEDOR = 23;
idx_InfVentasArticuloNOMBRE_PROVEEDOR = 24;
idx_InfVentasArticuloCALLE_PROVEEDOR = 25;
idx_InfVentasArticuloPOBLACION_PROVEEDOR = 26;
idx_InfVentasArticuloPROVINCIA_PROVEEDOR = 27;
idx_InfVentasArticuloNIF_CIF_CLIENTE = 28;
idx_InfVentasArticuloNOMBRE_CLIENTE = 29;
idx_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE = 30;
idx_InfVentasArticuloCALLE_CLIENTE = 31;
idx_InfVentasArticuloPOBLACION_CLIENTE = 32;
idx_InfVentasArticuloPROVINCIA_CLIENTE = 33;
idx_InfVentasArticuloNIF_CIF_AGENTE = 34;
idx_InfVentasArticuloNOMBRE_AGENTE = 35;
idx_InfVentasArticuloCALLE_AGENTE = 36;
idx_InfVentasArticuloPOBLACION_AGENTE = 37;
idx_InfVentasArticuloPROVINCIA_AGENTE = 38;
idx_InfVentasArticuloCOMISION_AGENTE = 39;
idx_InfVentasArticuloIMPORTE_COMISION_AGENTE = 40;
{ TablaVacia fields }
{ TablaVacia field indexes }
{ InfVentasAlbArticulo fields }
fld_InfVentasAlbArticuloID_ALBARAN = 'ID_ALBARAN';
fld_InfVentasAlbArticuloID_EMPRESA = 'ID_EMPRESA';
fld_InfVentasAlbArticuloREFERENCIA_ALBARAN = 'REFERENCIA_ALBARAN';
fld_InfVentasAlbArticuloFECHA_ALBARAN = 'FECHA_ALBARAN';
fld_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN = 'IMPORTE_TOTAL_ALBARAN';
fld_InfVentasAlbArticuloID_ARTICULO = 'ID_ARTICULO';
fld_InfVentasAlbArticuloFAMILIA = 'FAMILIA';
fld_InfVentasAlbArticuloREFERENCIA = 'REFERENCIA';
fld_InfVentasAlbArticuloREFERENCIA_PROV = 'REFERENCIA_PROV';
fld_InfVentasAlbArticuloDESCRIPCION = 'DESCRIPCION';
fld_InfVentasAlbArticuloCOMISIONABLE = 'COMISIONABLE';
fld_InfVentasAlbArticuloINVENTARIABLE = 'INVENTARIABLE';
fld_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE = 'IMPORTE_UNIDAD_COSTE';
fld_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE = 'DESCUENTO_PROVEEDOR_COSTE';
fld_InfVentasAlbArticuloIMPORTE_NETO_COSTE = 'IMPORTE_NETO_COSTE';
fld_InfVentasAlbArticuloIMPORTE_PORTE_COSTE = 'IMPORTE_PORTE_COSTE';
fld_InfVentasAlbArticuloCANTIDAD = 'CANTIDAD';
fld_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA = 'IMPORTE_UNIDAD_VENTA';
fld_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA = 'DESCUENTO_CLIENTE_VENTA';
fld_InfVentasAlbArticuloIMPORTE_NETO_VENTA = 'IMPORTE_NETO_VENTA';
fld_InfVentasAlbArticuloIMPORTE_PORTE_VENTA = 'IMPORTE_PORTE_VENTA';
fld_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA = 'IMPORTE_TOTAL_VENTA';
fld_InfVentasAlbArticuloNIF_CIF_PROVEEDOR = 'NIF_CIF_PROVEEDOR';
fld_InfVentasAlbArticuloNOMBRE_PROVEEDOR = 'NOMBRE_PROVEEDOR';
fld_InfVentasAlbArticuloCALLE_PROVEEDOR = 'CALLE_PROVEEDOR';
fld_InfVentasAlbArticuloPOBLACION_PROVEEDOR = 'POBLACION_PROVEEDOR';
fld_InfVentasAlbArticuloPROVINCIA_PROVEEDOR = 'PROVINCIA_PROVEEDOR';
fld_InfVentasAlbArticuloNIF_CIF_CLIENTE = 'NIF_CIF_CLIENTE';
fld_InfVentasAlbArticuloNOMBRE_CLIENTE = 'NOMBRE_CLIENTE';
fld_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE = 'NOMBRE_COMERCIAL_CLIENTE';
fld_InfVentasAlbArticuloCALLE_CLIENTE = 'CALLE_CLIENTE';
fld_InfVentasAlbArticuloPOBLACION_CLIENTE = 'POBLACION_CLIENTE';
fld_InfVentasAlbArticuloPROVINCIA_CLIENTE = 'PROVINCIA_CLIENTE';
fld_InfVentasAlbArticuloNIF_CIF_AGENTE = 'NIF_CIF_AGENTE';
fld_InfVentasAlbArticuloNOMBRE_AGENTE = 'NOMBRE_AGENTE';
fld_InfVentasAlbArticuloCALLE_AGENTE = 'CALLE_AGENTE';
fld_InfVentasAlbArticuloPOBLACION_AGENTE = 'POBLACION_AGENTE';
fld_InfVentasAlbArticuloPROVINCIA_AGENTE = 'PROVINCIA_AGENTE';
fld_InfVentasAlbArticuloCOMISION_AGENTE = 'COMISION_AGENTE';
fld_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE = 'IMPORTE_COMISION_AGENTE';
{ InfVentasAlbArticulo field indexes }
idx_InfVentasAlbArticuloID_ALBARAN = 0;
idx_InfVentasAlbArticuloID_EMPRESA = 1;
idx_InfVentasAlbArticuloREFERENCIA_ALBARAN = 2;
idx_InfVentasAlbArticuloFECHA_ALBARAN = 3;
idx_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN = 4;
idx_InfVentasAlbArticuloID_ARTICULO = 5;
idx_InfVentasAlbArticuloFAMILIA = 6;
idx_InfVentasAlbArticuloREFERENCIA = 7;
idx_InfVentasAlbArticuloREFERENCIA_PROV = 8;
idx_InfVentasAlbArticuloDESCRIPCION = 9;
idx_InfVentasAlbArticuloCOMISIONABLE = 10;
idx_InfVentasAlbArticuloINVENTARIABLE = 11;
idx_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE = 12;
idx_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE = 13;
idx_InfVentasAlbArticuloIMPORTE_NETO_COSTE = 14;
idx_InfVentasAlbArticuloIMPORTE_PORTE_COSTE = 15;
idx_InfVentasAlbArticuloCANTIDAD = 16;
idx_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA = 17;
idx_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA = 18;
idx_InfVentasAlbArticuloIMPORTE_NETO_VENTA = 19;
idx_InfVentasAlbArticuloIMPORTE_PORTE_VENTA = 20;
idx_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA = 21;
idx_InfVentasAlbArticuloNIF_CIF_PROVEEDOR = 22;
idx_InfVentasAlbArticuloNOMBRE_PROVEEDOR = 23;
idx_InfVentasAlbArticuloCALLE_PROVEEDOR = 24;
idx_InfVentasAlbArticuloPOBLACION_PROVEEDOR = 25;
idx_InfVentasAlbArticuloPROVINCIA_PROVEEDOR = 26;
idx_InfVentasAlbArticuloNIF_CIF_CLIENTE = 27;
idx_InfVentasAlbArticuloNOMBRE_CLIENTE = 28;
idx_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE = 29;
idx_InfVentasAlbArticuloCALLE_CLIENTE = 30;
idx_InfVentasAlbArticuloPOBLACION_CLIENTE = 31;
idx_InfVentasAlbArticuloPROVINCIA_CLIENTE = 32;
idx_InfVentasAlbArticuloNIF_CIF_AGENTE = 33;
idx_InfVentasAlbArticuloNOMBRE_AGENTE = 34;
idx_InfVentasAlbArticuloCALLE_AGENTE = 35;
idx_InfVentasAlbArticuloPOBLACION_AGENTE = 36;
idx_InfVentasAlbArticuloPROVINCIA_AGENTE = 37;
idx_InfVentasAlbArticuloCOMISION_AGENTE = 38;
idx_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE = 39;
type
{ IInfVentasArticulo }
IInfVentasArticulo = interface(IDAStronglyTypedDataTable)
['{77E216E3-A203-4498-905F-3113F6CA1DC9}']
{ Property getters and setters }
function GetID_FACTURAValue: Integer;
procedure SetID_FACTURAValue(const aValue: Integer);
function GetID_FACTURAIsNull: Boolean;
procedure SetID_FACTURAIsNull(const aValue: Boolean);
function GetID_EMPRESAValue: Integer;
procedure SetID_EMPRESAValue(const aValue: Integer);
function GetID_EMPRESAIsNull: Boolean;
procedure SetID_EMPRESAIsNull(const aValue: Boolean);
function GetREFERENCIA_FACTURAValue: String;
procedure SetREFERENCIA_FACTURAValue(const aValue: String);
function GetREFERENCIA_FACTURAIsNull: Boolean;
procedure SetREFERENCIA_FACTURAIsNull(const aValue: Boolean);
function GetFECHA_FACTURAValue: DateTime;
procedure SetFECHA_FACTURAValue(const aValue: DateTime);
function GetFECHA_FACTURAIsNull: Boolean;
procedure SetFECHA_FACTURAIsNull(const aValue: Boolean);
function GetIMPORTE_TOTAL_FACTURAValue: Currency;
procedure SetIMPORTE_TOTAL_FACTURAValue(const aValue: Currency);
function GetIMPORTE_TOTAL_FACTURAIsNull: Boolean;
procedure SetIMPORTE_TOTAL_FACTURAIsNull(const aValue: Boolean);
function GetID_COMISION_FACTURAValue: Integer;
procedure SetID_COMISION_FACTURAValue(const aValue: Integer);
function GetID_COMISION_FACTURAIsNull: Boolean;
procedure SetID_COMISION_FACTURAIsNull(const aValue: Boolean);
function GetID_ARTICULOValue: Integer;
procedure SetID_ARTICULOValue(const aValue: Integer);
function GetID_ARTICULOIsNull: Boolean;
procedure SetID_ARTICULOIsNull(const aValue: Boolean);
function GetFAMILIAValue: String;
procedure SetFAMILIAValue(const aValue: String);
function GetFAMILIAIsNull: Boolean;
procedure SetFAMILIAIsNull(const aValue: Boolean);
function GetREFERENCIAValue: String;
procedure SetREFERENCIAValue(const aValue: String);
function GetREFERENCIAIsNull: Boolean;
procedure SetREFERENCIAIsNull(const aValue: Boolean);
function GetREFERENCIA_PROVValue: String;
procedure SetREFERENCIA_PROVValue(const aValue: String);
function GetREFERENCIA_PROVIsNull: Boolean;
procedure SetREFERENCIA_PROVIsNull(const aValue: Boolean);
function GetDESCRIPCIONValue: String;
procedure SetDESCRIPCIONValue(const aValue: String);
function GetDESCRIPCIONIsNull: Boolean;
procedure SetDESCRIPCIONIsNull(const aValue: Boolean);
function GetCOMISIONABLEValue: SmallInt;
procedure SetCOMISIONABLEValue(const aValue: SmallInt);
function GetCOMISIONABLEIsNull: Boolean;
procedure SetCOMISIONABLEIsNull(const aValue: Boolean);
function GetINVENTARIABLEValue: SmallInt;
procedure SetINVENTARIABLEValue(const aValue: SmallInt);
function GetINVENTARIABLEIsNull: Boolean;
procedure SetINVENTARIABLEIsNull(const aValue: Boolean);
function GetIMPORTE_UNIDAD_COSTEValue: Currency;
procedure SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency);
function GetIMPORTE_UNIDAD_COSTEIsNull: Boolean;
procedure SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean);
function GetDESCUENTO_PROVEEDOR_COSTEValue: Float;
procedure SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float);
function GetDESCUENTO_PROVEEDOR_COSTEIsNull: Boolean;
procedure SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean);
function GetIMPORTE_NETO_COSTEValue: Currency;
procedure SetIMPORTE_NETO_COSTEValue(const aValue: Currency);
function GetIMPORTE_NETO_COSTEIsNull: Boolean;
procedure SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean);
function GetIMPORTE_PORTE_COSTEValue: Currency;
procedure SetIMPORTE_PORTE_COSTEValue(const aValue: Currency);
function GetIMPORTE_PORTE_COSTEIsNull: Boolean;
procedure SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean);
function GetCANTIDADValue: Currency;
procedure SetCANTIDADValue(const aValue: Currency);
function GetCANTIDADIsNull: Boolean;
procedure SetCANTIDADIsNull(const aValue: Boolean);
function GetIMPORTE_UNIDAD_VENTAValue: Currency;
procedure SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency);
function GetIMPORTE_UNIDAD_VENTAIsNull: Boolean;
procedure SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean);
function GetDESCUENTO_CLIENTE_VENTAValue: Float;
procedure SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float);
function GetDESCUENTO_CLIENTE_VENTAIsNull: Boolean;
procedure SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_NETO_VENTAValue: Float;
procedure SetIMPORTE_NETO_VENTAValue(const aValue: Float);
function GetIMPORTE_NETO_VENTAIsNull: Boolean;
procedure SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_PORTE_VENTAValue: Currency;
procedure SetIMPORTE_PORTE_VENTAValue(const aValue: Currency);
function GetIMPORTE_PORTE_VENTAIsNull: Boolean;
procedure SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_TOTAL_VENTAValue: Currency;
procedure SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency);
function GetIMPORTE_TOTAL_VENTAIsNull: Boolean;
procedure SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean);
function GetNIF_CIF_PROVEEDORValue: String;
procedure SetNIF_CIF_PROVEEDORValue(const aValue: String);
function GetNIF_CIF_PROVEEDORIsNull: Boolean;
procedure SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean);
function GetNOMBRE_PROVEEDORValue: String;
procedure SetNOMBRE_PROVEEDORValue(const aValue: String);
function GetNOMBRE_PROVEEDORIsNull: Boolean;
procedure SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean);
function GetCALLE_PROVEEDORValue: String;
procedure SetCALLE_PROVEEDORValue(const aValue: String);
function GetCALLE_PROVEEDORIsNull: Boolean;
procedure SetCALLE_PROVEEDORIsNull(const aValue: Boolean);
function GetPOBLACION_PROVEEDORValue: String;
procedure SetPOBLACION_PROVEEDORValue(const aValue: String);
function GetPOBLACION_PROVEEDORIsNull: Boolean;
procedure SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean);
function GetPROVINCIA_PROVEEDORValue: String;
procedure SetPROVINCIA_PROVEEDORValue(const aValue: String);
function GetPROVINCIA_PROVEEDORIsNull: Boolean;
procedure SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean);
function GetNIF_CIF_CLIENTEValue: String;
procedure SetNIF_CIF_CLIENTEValue(const aValue: String);
function GetNIF_CIF_CLIENTEIsNull: Boolean;
procedure SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean);
function GetNOMBRE_CLIENTEValue: String;
procedure SetNOMBRE_CLIENTEValue(const aValue: String);
function GetNOMBRE_CLIENTEIsNull: Boolean;
procedure SetNOMBRE_CLIENTEIsNull(const aValue: Boolean);
function GetNOMBRE_COMERCIAL_CLIENTEValue: String;
procedure SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String);
function GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean;
procedure SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean);
function GetCALLE_CLIENTEValue: String;
procedure SetCALLE_CLIENTEValue(const aValue: String);
function GetCALLE_CLIENTEIsNull: Boolean;
procedure SetCALLE_CLIENTEIsNull(const aValue: Boolean);
function GetPOBLACION_CLIENTEValue: String;
procedure SetPOBLACION_CLIENTEValue(const aValue: String);
function GetPOBLACION_CLIENTEIsNull: Boolean;
procedure SetPOBLACION_CLIENTEIsNull(const aValue: Boolean);
function GetPROVINCIA_CLIENTEValue: String;
procedure SetPROVINCIA_CLIENTEValue(const aValue: String);
function GetPROVINCIA_CLIENTEIsNull: Boolean;
procedure SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean);
function GetNIF_CIF_AGENTEValue: String;
procedure SetNIF_CIF_AGENTEValue(const aValue: String);
function GetNIF_CIF_AGENTEIsNull: Boolean;
procedure SetNIF_CIF_AGENTEIsNull(const aValue: Boolean);
function GetNOMBRE_AGENTEValue: String;
procedure SetNOMBRE_AGENTEValue(const aValue: String);
function GetNOMBRE_AGENTEIsNull: Boolean;
procedure SetNOMBRE_AGENTEIsNull(const aValue: Boolean);
function GetCALLE_AGENTEValue: String;
procedure SetCALLE_AGENTEValue(const aValue: String);
function GetCALLE_AGENTEIsNull: Boolean;
procedure SetCALLE_AGENTEIsNull(const aValue: Boolean);
function GetPOBLACION_AGENTEValue: String;
procedure SetPOBLACION_AGENTEValue(const aValue: String);
function GetPOBLACION_AGENTEIsNull: Boolean;
procedure SetPOBLACION_AGENTEIsNull(const aValue: Boolean);
function GetPROVINCIA_AGENTEValue: String;
procedure SetPROVINCIA_AGENTEValue(const aValue: String);
function GetPROVINCIA_AGENTEIsNull: Boolean;
procedure SetPROVINCIA_AGENTEIsNull(const aValue: Boolean);
function GetCOMISION_AGENTEValue: Float;
procedure SetCOMISION_AGENTEValue(const aValue: Float);
function GetCOMISION_AGENTEIsNull: Boolean;
procedure SetCOMISION_AGENTEIsNull(const aValue: Boolean);
function GetIMPORTE_COMISION_AGENTEValue: Float;
procedure SetIMPORTE_COMISION_AGENTEValue(const aValue: Float);
function GetIMPORTE_COMISION_AGENTEIsNull: Boolean;
procedure SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean);
{ Properties }
property ID_FACTURA: Integer read GetID_FACTURAValue write SetID_FACTURAValue;
property ID_FACTURAIsNull: Boolean read GetID_FACTURAIsNull write SetID_FACTURAIsNull;
property ID_EMPRESA: Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
property ID_EMPRESAIsNull: Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
property REFERENCIA_FACTURA: String read GetREFERENCIA_FACTURAValue write SetREFERENCIA_FACTURAValue;
property REFERENCIA_FACTURAIsNull: Boolean read GetREFERENCIA_FACTURAIsNull write SetREFERENCIA_FACTURAIsNull;
property FECHA_FACTURA: DateTime read GetFECHA_FACTURAValue write SetFECHA_FACTURAValue;
property FECHA_FACTURAIsNull: Boolean read GetFECHA_FACTURAIsNull write SetFECHA_FACTURAIsNull;
property IMPORTE_TOTAL_FACTURA: Currency read GetIMPORTE_TOTAL_FACTURAValue write SetIMPORTE_TOTAL_FACTURAValue;
property IMPORTE_TOTAL_FACTURAIsNull: Boolean read GetIMPORTE_TOTAL_FACTURAIsNull write SetIMPORTE_TOTAL_FACTURAIsNull;
property ID_COMISION_FACTURA: Integer read GetID_COMISION_FACTURAValue write SetID_COMISION_FACTURAValue;
property ID_COMISION_FACTURAIsNull: Boolean read GetID_COMISION_FACTURAIsNull write SetID_COMISION_FACTURAIsNull;
property ID_ARTICULO: Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
property ID_ARTICULOIsNull: Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
property FAMILIA: String read GetFAMILIAValue write SetFAMILIAValue;
property FAMILIAIsNull: Boolean read GetFAMILIAIsNull write SetFAMILIAIsNull;
property REFERENCIA: String read GetREFERENCIAValue write SetREFERENCIAValue;
property REFERENCIAIsNull: Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
property REFERENCIA_PROV: String read GetREFERENCIA_PROVValue write SetREFERENCIA_PROVValue;
property REFERENCIA_PROVIsNull: Boolean read GetREFERENCIA_PROVIsNull write SetREFERENCIA_PROVIsNull;
property DESCRIPCION: String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
property DESCRIPCIONIsNull: Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
property COMISIONABLE: SmallInt read GetCOMISIONABLEValue write SetCOMISIONABLEValue;
property COMISIONABLEIsNull: Boolean read GetCOMISIONABLEIsNull write SetCOMISIONABLEIsNull;
property INVENTARIABLE: SmallInt read GetINVENTARIABLEValue write SetINVENTARIABLEValue;
property INVENTARIABLEIsNull: Boolean read GetINVENTARIABLEIsNull write SetINVENTARIABLEIsNull;
property IMPORTE_UNIDAD_COSTE: Currency read GetIMPORTE_UNIDAD_COSTEValue write SetIMPORTE_UNIDAD_COSTEValue;
property IMPORTE_UNIDAD_COSTEIsNull: Boolean read GetIMPORTE_UNIDAD_COSTEIsNull write SetIMPORTE_UNIDAD_COSTEIsNull;
property DESCUENTO_PROVEEDOR_COSTE: Float read GetDESCUENTO_PROVEEDOR_COSTEValue write SetDESCUENTO_PROVEEDOR_COSTEValue;
property DESCUENTO_PROVEEDOR_COSTEIsNull: Boolean read GetDESCUENTO_PROVEEDOR_COSTEIsNull write SetDESCUENTO_PROVEEDOR_COSTEIsNull;
property IMPORTE_NETO_COSTE: Currency read GetIMPORTE_NETO_COSTEValue write SetIMPORTE_NETO_COSTEValue;
property IMPORTE_NETO_COSTEIsNull: Boolean read GetIMPORTE_NETO_COSTEIsNull write SetIMPORTE_NETO_COSTEIsNull;
property IMPORTE_PORTE_COSTE: Currency read GetIMPORTE_PORTE_COSTEValue write SetIMPORTE_PORTE_COSTEValue;
property IMPORTE_PORTE_COSTEIsNull: Boolean read GetIMPORTE_PORTE_COSTEIsNull write SetIMPORTE_PORTE_COSTEIsNull;
property CANTIDAD: Currency read GetCANTIDADValue write SetCANTIDADValue;
property CANTIDADIsNull: Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
property IMPORTE_UNIDAD_VENTA: Currency read GetIMPORTE_UNIDAD_VENTAValue write SetIMPORTE_UNIDAD_VENTAValue;
property IMPORTE_UNIDAD_VENTAIsNull: Boolean read GetIMPORTE_UNIDAD_VENTAIsNull write SetIMPORTE_UNIDAD_VENTAIsNull;
property DESCUENTO_CLIENTE_VENTA: Float read GetDESCUENTO_CLIENTE_VENTAValue write SetDESCUENTO_CLIENTE_VENTAValue;
property DESCUENTO_CLIENTE_VENTAIsNull: Boolean read GetDESCUENTO_CLIENTE_VENTAIsNull write SetDESCUENTO_CLIENTE_VENTAIsNull;
property IMPORTE_NETO_VENTA: Float read GetIMPORTE_NETO_VENTAValue write SetIMPORTE_NETO_VENTAValue;
property IMPORTE_NETO_VENTAIsNull: Boolean read GetIMPORTE_NETO_VENTAIsNull write SetIMPORTE_NETO_VENTAIsNull;
property IMPORTE_PORTE_VENTA: Currency read GetIMPORTE_PORTE_VENTAValue write SetIMPORTE_PORTE_VENTAValue;
property IMPORTE_PORTE_VENTAIsNull: Boolean read GetIMPORTE_PORTE_VENTAIsNull write SetIMPORTE_PORTE_VENTAIsNull;
property IMPORTE_TOTAL_VENTA: Currency read GetIMPORTE_TOTAL_VENTAValue write SetIMPORTE_TOTAL_VENTAValue;
property IMPORTE_TOTAL_VENTAIsNull: Boolean read GetIMPORTE_TOTAL_VENTAIsNull write SetIMPORTE_TOTAL_VENTAIsNull;
property NIF_CIF_PROVEEDOR: String read GetNIF_CIF_PROVEEDORValue write SetNIF_CIF_PROVEEDORValue;
property NIF_CIF_PROVEEDORIsNull: Boolean read GetNIF_CIF_PROVEEDORIsNull write SetNIF_CIF_PROVEEDORIsNull;
property NOMBRE_PROVEEDOR: String read GetNOMBRE_PROVEEDORValue write SetNOMBRE_PROVEEDORValue;
property NOMBRE_PROVEEDORIsNull: Boolean read GetNOMBRE_PROVEEDORIsNull write SetNOMBRE_PROVEEDORIsNull;
property CALLE_PROVEEDOR: String read GetCALLE_PROVEEDORValue write SetCALLE_PROVEEDORValue;
property CALLE_PROVEEDORIsNull: Boolean read GetCALLE_PROVEEDORIsNull write SetCALLE_PROVEEDORIsNull;
property POBLACION_PROVEEDOR: String read GetPOBLACION_PROVEEDORValue write SetPOBLACION_PROVEEDORValue;
property POBLACION_PROVEEDORIsNull: Boolean read GetPOBLACION_PROVEEDORIsNull write SetPOBLACION_PROVEEDORIsNull;
property PROVINCIA_PROVEEDOR: String read GetPROVINCIA_PROVEEDORValue write SetPROVINCIA_PROVEEDORValue;
property PROVINCIA_PROVEEDORIsNull: Boolean read GetPROVINCIA_PROVEEDORIsNull write SetPROVINCIA_PROVEEDORIsNull;
property NIF_CIF_CLIENTE: String read GetNIF_CIF_CLIENTEValue write SetNIF_CIF_CLIENTEValue;
property NIF_CIF_CLIENTEIsNull: Boolean read GetNIF_CIF_CLIENTEIsNull write SetNIF_CIF_CLIENTEIsNull;
property NOMBRE_CLIENTE: String read GetNOMBRE_CLIENTEValue write SetNOMBRE_CLIENTEValue;
property NOMBRE_CLIENTEIsNull: Boolean read GetNOMBRE_CLIENTEIsNull write SetNOMBRE_CLIENTEIsNull;
property NOMBRE_COMERCIAL_CLIENTE: String read GetNOMBRE_COMERCIAL_CLIENTEValue write SetNOMBRE_COMERCIAL_CLIENTEValue;
property NOMBRE_COMERCIAL_CLIENTEIsNull: Boolean read GetNOMBRE_COMERCIAL_CLIENTEIsNull write SetNOMBRE_COMERCIAL_CLIENTEIsNull;
property CALLE_CLIENTE: String read GetCALLE_CLIENTEValue write SetCALLE_CLIENTEValue;
property CALLE_CLIENTEIsNull: Boolean read GetCALLE_CLIENTEIsNull write SetCALLE_CLIENTEIsNull;
property POBLACION_CLIENTE: String read GetPOBLACION_CLIENTEValue write SetPOBLACION_CLIENTEValue;
property POBLACION_CLIENTEIsNull: Boolean read GetPOBLACION_CLIENTEIsNull write SetPOBLACION_CLIENTEIsNull;
property PROVINCIA_CLIENTE: String read GetPROVINCIA_CLIENTEValue write SetPROVINCIA_CLIENTEValue;
property PROVINCIA_CLIENTEIsNull: Boolean read GetPROVINCIA_CLIENTEIsNull write SetPROVINCIA_CLIENTEIsNull;
property NIF_CIF_AGENTE: String read GetNIF_CIF_AGENTEValue write SetNIF_CIF_AGENTEValue;
property NIF_CIF_AGENTEIsNull: Boolean read GetNIF_CIF_AGENTEIsNull write SetNIF_CIF_AGENTEIsNull;
property NOMBRE_AGENTE: String read GetNOMBRE_AGENTEValue write SetNOMBRE_AGENTEValue;
property NOMBRE_AGENTEIsNull: Boolean read GetNOMBRE_AGENTEIsNull write SetNOMBRE_AGENTEIsNull;
property CALLE_AGENTE: String read GetCALLE_AGENTEValue write SetCALLE_AGENTEValue;
property CALLE_AGENTEIsNull: Boolean read GetCALLE_AGENTEIsNull write SetCALLE_AGENTEIsNull;
property POBLACION_AGENTE: String read GetPOBLACION_AGENTEValue write SetPOBLACION_AGENTEValue;
property POBLACION_AGENTEIsNull: Boolean read GetPOBLACION_AGENTEIsNull write SetPOBLACION_AGENTEIsNull;
property PROVINCIA_AGENTE: String read GetPROVINCIA_AGENTEValue write SetPROVINCIA_AGENTEValue;
property PROVINCIA_AGENTEIsNull: Boolean read GetPROVINCIA_AGENTEIsNull write SetPROVINCIA_AGENTEIsNull;
property COMISION_AGENTE: Float read GetCOMISION_AGENTEValue write SetCOMISION_AGENTEValue;
property COMISION_AGENTEIsNull: Boolean read GetCOMISION_AGENTEIsNull write SetCOMISION_AGENTEIsNull;
property IMPORTE_COMISION_AGENTE: Float read GetIMPORTE_COMISION_AGENTEValue write SetIMPORTE_COMISION_AGENTEValue;
property IMPORTE_COMISION_AGENTEIsNull: Boolean read GetIMPORTE_COMISION_AGENTEIsNull write SetIMPORTE_COMISION_AGENTEIsNull;
end;
{ TInfVentasArticuloDataTableRules }
TInfVentasArticuloDataTableRules = class(TIntfObjectDADataTableRules, IInfVentasArticulo)
private
protected
{ Property getters and setters }
function GetID_FACTURAValue: Integer; virtual;
procedure SetID_FACTURAValue(const aValue: Integer); virtual;
function GetID_FACTURAIsNull: Boolean; virtual;
procedure SetID_FACTURAIsNull(const aValue: Boolean); virtual;
function GetID_EMPRESAValue: Integer; virtual;
procedure SetID_EMPRESAValue(const aValue: Integer); virtual;
function GetID_EMPRESAIsNull: Boolean; virtual;
procedure SetID_EMPRESAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIA_FACTURAValue: String; virtual;
procedure SetREFERENCIA_FACTURAValue(const aValue: String); virtual;
function GetREFERENCIA_FACTURAIsNull: Boolean; virtual;
procedure SetREFERENCIA_FACTURAIsNull(const aValue: Boolean); virtual;
function GetFECHA_FACTURAValue: DateTime; virtual;
procedure SetFECHA_FACTURAValue(const aValue: DateTime); virtual;
function GetFECHA_FACTURAIsNull: Boolean; virtual;
procedure SetFECHA_FACTURAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_TOTAL_FACTURAValue: Currency; virtual;
procedure SetIMPORTE_TOTAL_FACTURAValue(const aValue: Currency); virtual;
function GetIMPORTE_TOTAL_FACTURAIsNull: Boolean; virtual;
procedure SetIMPORTE_TOTAL_FACTURAIsNull(const aValue: Boolean); virtual;
function GetID_COMISION_FACTURAValue: Integer; virtual;
procedure SetID_COMISION_FACTURAValue(const aValue: Integer); virtual;
function GetID_COMISION_FACTURAIsNull: Boolean; virtual;
procedure SetID_COMISION_FACTURAIsNull(const aValue: Boolean); virtual;
function GetID_ARTICULOValue: Integer; virtual;
procedure SetID_ARTICULOValue(const aValue: Integer); virtual;
function GetID_ARTICULOIsNull: Boolean; virtual;
procedure SetID_ARTICULOIsNull(const aValue: Boolean); virtual;
function GetFAMILIAValue: String; virtual;
procedure SetFAMILIAValue(const aValue: String); virtual;
function GetFAMILIAIsNull: Boolean; virtual;
procedure SetFAMILIAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIAValue: String; virtual;
procedure SetREFERENCIAValue(const aValue: String); virtual;
function GetREFERENCIAIsNull: Boolean; virtual;
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIA_PROVValue: String; virtual;
procedure SetREFERENCIA_PROVValue(const aValue: String); virtual;
function GetREFERENCIA_PROVIsNull: Boolean; virtual;
procedure SetREFERENCIA_PROVIsNull(const aValue: Boolean); virtual;
function GetDESCRIPCIONValue: String; virtual;
procedure SetDESCRIPCIONValue(const aValue: String); virtual;
function GetDESCRIPCIONIsNull: Boolean; virtual;
procedure SetDESCRIPCIONIsNull(const aValue: Boolean); virtual;
function GetCOMISIONABLEValue: SmallInt; virtual;
procedure SetCOMISIONABLEValue(const aValue: SmallInt); virtual;
function GetCOMISIONABLEIsNull: Boolean; virtual;
procedure SetCOMISIONABLEIsNull(const aValue: Boolean); virtual;
function GetINVENTARIABLEValue: SmallInt; virtual;
procedure SetINVENTARIABLEValue(const aValue: SmallInt); virtual;
function GetINVENTARIABLEIsNull: Boolean; virtual;
procedure SetINVENTARIABLEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_UNIDAD_COSTEValue: Currency; virtual;
procedure SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_UNIDAD_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean); virtual;
function GetDESCUENTO_PROVEEDOR_COSTEValue: Float; virtual;
procedure SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float); virtual;
function GetDESCUENTO_PROVEEDOR_COSTEIsNull: Boolean; virtual;
procedure SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_NETO_COSTEValue: Currency; virtual;
procedure SetIMPORTE_NETO_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_NETO_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_PORTE_COSTEValue: Currency; virtual;
procedure SetIMPORTE_PORTE_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_PORTE_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean); virtual;
function GetCANTIDADValue: Currency; virtual;
procedure SetCANTIDADValue(const aValue: Currency); virtual;
function GetCANTIDADIsNull: Boolean; virtual;
procedure SetCANTIDADIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_UNIDAD_VENTAValue: Currency; virtual;
procedure SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_UNIDAD_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean); virtual;
function GetDESCUENTO_CLIENTE_VENTAValue: Float; virtual;
procedure SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float); virtual;
function GetDESCUENTO_CLIENTE_VENTAIsNull: Boolean; virtual;
procedure SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_NETO_VENTAValue: Float; virtual;
procedure SetIMPORTE_NETO_VENTAValue(const aValue: Float); virtual;
function GetIMPORTE_NETO_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_PORTE_VENTAValue: Currency; virtual;
procedure SetIMPORTE_PORTE_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_PORTE_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_TOTAL_VENTAValue: Currency; virtual;
procedure SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_TOTAL_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_PROVEEDORValue: String; virtual;
procedure SetNIF_CIF_PROVEEDORValue(const aValue: String); virtual;
function GetNIF_CIF_PROVEEDORIsNull: Boolean; virtual;
procedure SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_PROVEEDORValue: String; virtual;
procedure SetNOMBRE_PROVEEDORValue(const aValue: String); virtual;
function GetNOMBRE_PROVEEDORIsNull: Boolean; virtual;
procedure SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetCALLE_PROVEEDORValue: String; virtual;
procedure SetCALLE_PROVEEDORValue(const aValue: String); virtual;
function GetCALLE_PROVEEDORIsNull: Boolean; virtual;
procedure SetCALLE_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_PROVEEDORValue: String; virtual;
procedure SetPOBLACION_PROVEEDORValue(const aValue: String); virtual;
function GetPOBLACION_PROVEEDORIsNull: Boolean; virtual;
procedure SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_PROVEEDORValue: String; virtual;
procedure SetPROVINCIA_PROVEEDORValue(const aValue: String); virtual;
function GetPROVINCIA_PROVEEDORIsNull: Boolean; virtual;
procedure SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_CLIENTEValue: String; virtual;
procedure SetNIF_CIF_CLIENTEValue(const aValue: String); virtual;
function GetNIF_CIF_CLIENTEIsNull: Boolean; virtual;
procedure SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_CLIENTEValue: String; virtual;
procedure SetNOMBRE_CLIENTEValue(const aValue: String); virtual;
function GetNOMBRE_CLIENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_COMERCIAL_CLIENTEValue: String; virtual;
procedure SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String); virtual;
function GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetCALLE_CLIENTEValue: String; virtual;
procedure SetCALLE_CLIENTEValue(const aValue: String); virtual;
function GetCALLE_CLIENTEIsNull: Boolean; virtual;
procedure SetCALLE_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_CLIENTEValue: String; virtual;
procedure SetPOBLACION_CLIENTEValue(const aValue: String); virtual;
function GetPOBLACION_CLIENTEIsNull: Boolean; virtual;
procedure SetPOBLACION_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_CLIENTEValue: String; virtual;
procedure SetPROVINCIA_CLIENTEValue(const aValue: String); virtual;
function GetPROVINCIA_CLIENTEIsNull: Boolean; virtual;
procedure SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_AGENTEValue: String; virtual;
procedure SetNIF_CIF_AGENTEValue(const aValue: String); virtual;
function GetNIF_CIF_AGENTEIsNull: Boolean; virtual;
procedure SetNIF_CIF_AGENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_AGENTEValue: String; virtual;
procedure SetNOMBRE_AGENTEValue(const aValue: String); virtual;
function GetNOMBRE_AGENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_AGENTEIsNull(const aValue: Boolean); virtual;
function GetCALLE_AGENTEValue: String; virtual;
procedure SetCALLE_AGENTEValue(const aValue: String); virtual;
function GetCALLE_AGENTEIsNull: Boolean; virtual;
procedure SetCALLE_AGENTEIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_AGENTEValue: String; virtual;
procedure SetPOBLACION_AGENTEValue(const aValue: String); virtual;
function GetPOBLACION_AGENTEIsNull: Boolean; virtual;
procedure SetPOBLACION_AGENTEIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_AGENTEValue: String; virtual;
procedure SetPROVINCIA_AGENTEValue(const aValue: String); virtual;
function GetPROVINCIA_AGENTEIsNull: Boolean; virtual;
procedure SetPROVINCIA_AGENTEIsNull(const aValue: Boolean); virtual;
function GetCOMISION_AGENTEValue: Float; virtual;
procedure SetCOMISION_AGENTEValue(const aValue: Float); virtual;
function GetCOMISION_AGENTEIsNull: Boolean; virtual;
procedure SetCOMISION_AGENTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_COMISION_AGENTEValue: Float; virtual;
procedure SetIMPORTE_COMISION_AGENTEValue(const aValue: Float); virtual;
function GetIMPORTE_COMISION_AGENTEIsNull: Boolean; virtual;
procedure SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean); virtual;
{ Properties }
property ID_FACTURA: Integer read GetID_FACTURAValue write SetID_FACTURAValue;
property ID_FACTURAIsNull: Boolean read GetID_FACTURAIsNull write SetID_FACTURAIsNull;
property ID_EMPRESA: Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
property ID_EMPRESAIsNull: Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
property REFERENCIA_FACTURA: String read GetREFERENCIA_FACTURAValue write SetREFERENCIA_FACTURAValue;
property REFERENCIA_FACTURAIsNull: Boolean read GetREFERENCIA_FACTURAIsNull write SetREFERENCIA_FACTURAIsNull;
property FECHA_FACTURA: DateTime read GetFECHA_FACTURAValue write SetFECHA_FACTURAValue;
property FECHA_FACTURAIsNull: Boolean read GetFECHA_FACTURAIsNull write SetFECHA_FACTURAIsNull;
property IMPORTE_TOTAL_FACTURA: Currency read GetIMPORTE_TOTAL_FACTURAValue write SetIMPORTE_TOTAL_FACTURAValue;
property IMPORTE_TOTAL_FACTURAIsNull: Boolean read GetIMPORTE_TOTAL_FACTURAIsNull write SetIMPORTE_TOTAL_FACTURAIsNull;
property ID_COMISION_FACTURA: Integer read GetID_COMISION_FACTURAValue write SetID_COMISION_FACTURAValue;
property ID_COMISION_FACTURAIsNull: Boolean read GetID_COMISION_FACTURAIsNull write SetID_COMISION_FACTURAIsNull;
property ID_ARTICULO: Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
property ID_ARTICULOIsNull: Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
property FAMILIA: String read GetFAMILIAValue write SetFAMILIAValue;
property FAMILIAIsNull: Boolean read GetFAMILIAIsNull write SetFAMILIAIsNull;
property REFERENCIA: String read GetREFERENCIAValue write SetREFERENCIAValue;
property REFERENCIAIsNull: Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
property REFERENCIA_PROV: String read GetREFERENCIA_PROVValue write SetREFERENCIA_PROVValue;
property REFERENCIA_PROVIsNull: Boolean read GetREFERENCIA_PROVIsNull write SetREFERENCIA_PROVIsNull;
property DESCRIPCION: String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
property DESCRIPCIONIsNull: Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
property COMISIONABLE: SmallInt read GetCOMISIONABLEValue write SetCOMISIONABLEValue;
property COMISIONABLEIsNull: Boolean read GetCOMISIONABLEIsNull write SetCOMISIONABLEIsNull;
property INVENTARIABLE: SmallInt read GetINVENTARIABLEValue write SetINVENTARIABLEValue;
property INVENTARIABLEIsNull: Boolean read GetINVENTARIABLEIsNull write SetINVENTARIABLEIsNull;
property IMPORTE_UNIDAD_COSTE: Currency read GetIMPORTE_UNIDAD_COSTEValue write SetIMPORTE_UNIDAD_COSTEValue;
property IMPORTE_UNIDAD_COSTEIsNull: Boolean read GetIMPORTE_UNIDAD_COSTEIsNull write SetIMPORTE_UNIDAD_COSTEIsNull;
property DESCUENTO_PROVEEDOR_COSTE: Float read GetDESCUENTO_PROVEEDOR_COSTEValue write SetDESCUENTO_PROVEEDOR_COSTEValue;
property DESCUENTO_PROVEEDOR_COSTEIsNull: Boolean read GetDESCUENTO_PROVEEDOR_COSTEIsNull write SetDESCUENTO_PROVEEDOR_COSTEIsNull;
property IMPORTE_NETO_COSTE: Currency read GetIMPORTE_NETO_COSTEValue write SetIMPORTE_NETO_COSTEValue;
property IMPORTE_NETO_COSTEIsNull: Boolean read GetIMPORTE_NETO_COSTEIsNull write SetIMPORTE_NETO_COSTEIsNull;
property IMPORTE_PORTE_COSTE: Currency read GetIMPORTE_PORTE_COSTEValue write SetIMPORTE_PORTE_COSTEValue;
property IMPORTE_PORTE_COSTEIsNull: Boolean read GetIMPORTE_PORTE_COSTEIsNull write SetIMPORTE_PORTE_COSTEIsNull;
property CANTIDAD: Currency read GetCANTIDADValue write SetCANTIDADValue;
property CANTIDADIsNull: Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
property IMPORTE_UNIDAD_VENTA: Currency read GetIMPORTE_UNIDAD_VENTAValue write SetIMPORTE_UNIDAD_VENTAValue;
property IMPORTE_UNIDAD_VENTAIsNull: Boolean read GetIMPORTE_UNIDAD_VENTAIsNull write SetIMPORTE_UNIDAD_VENTAIsNull;
property DESCUENTO_CLIENTE_VENTA: Float read GetDESCUENTO_CLIENTE_VENTAValue write SetDESCUENTO_CLIENTE_VENTAValue;
property DESCUENTO_CLIENTE_VENTAIsNull: Boolean read GetDESCUENTO_CLIENTE_VENTAIsNull write SetDESCUENTO_CLIENTE_VENTAIsNull;
property IMPORTE_NETO_VENTA: Float read GetIMPORTE_NETO_VENTAValue write SetIMPORTE_NETO_VENTAValue;
property IMPORTE_NETO_VENTAIsNull: Boolean read GetIMPORTE_NETO_VENTAIsNull write SetIMPORTE_NETO_VENTAIsNull;
property IMPORTE_PORTE_VENTA: Currency read GetIMPORTE_PORTE_VENTAValue write SetIMPORTE_PORTE_VENTAValue;
property IMPORTE_PORTE_VENTAIsNull: Boolean read GetIMPORTE_PORTE_VENTAIsNull write SetIMPORTE_PORTE_VENTAIsNull;
property IMPORTE_TOTAL_VENTA: Currency read GetIMPORTE_TOTAL_VENTAValue write SetIMPORTE_TOTAL_VENTAValue;
property IMPORTE_TOTAL_VENTAIsNull: Boolean read GetIMPORTE_TOTAL_VENTAIsNull write SetIMPORTE_TOTAL_VENTAIsNull;
property NIF_CIF_PROVEEDOR: String read GetNIF_CIF_PROVEEDORValue write SetNIF_CIF_PROVEEDORValue;
property NIF_CIF_PROVEEDORIsNull: Boolean read GetNIF_CIF_PROVEEDORIsNull write SetNIF_CIF_PROVEEDORIsNull;
property NOMBRE_PROVEEDOR: String read GetNOMBRE_PROVEEDORValue write SetNOMBRE_PROVEEDORValue;
property NOMBRE_PROVEEDORIsNull: Boolean read GetNOMBRE_PROVEEDORIsNull write SetNOMBRE_PROVEEDORIsNull;
property CALLE_PROVEEDOR: String read GetCALLE_PROVEEDORValue write SetCALLE_PROVEEDORValue;
property CALLE_PROVEEDORIsNull: Boolean read GetCALLE_PROVEEDORIsNull write SetCALLE_PROVEEDORIsNull;
property POBLACION_PROVEEDOR: String read GetPOBLACION_PROVEEDORValue write SetPOBLACION_PROVEEDORValue;
property POBLACION_PROVEEDORIsNull: Boolean read GetPOBLACION_PROVEEDORIsNull write SetPOBLACION_PROVEEDORIsNull;
property PROVINCIA_PROVEEDOR: String read GetPROVINCIA_PROVEEDORValue write SetPROVINCIA_PROVEEDORValue;
property PROVINCIA_PROVEEDORIsNull: Boolean read GetPROVINCIA_PROVEEDORIsNull write SetPROVINCIA_PROVEEDORIsNull;
property NIF_CIF_CLIENTE: String read GetNIF_CIF_CLIENTEValue write SetNIF_CIF_CLIENTEValue;
property NIF_CIF_CLIENTEIsNull: Boolean read GetNIF_CIF_CLIENTEIsNull write SetNIF_CIF_CLIENTEIsNull;
property NOMBRE_CLIENTE: String read GetNOMBRE_CLIENTEValue write SetNOMBRE_CLIENTEValue;
property NOMBRE_CLIENTEIsNull: Boolean read GetNOMBRE_CLIENTEIsNull write SetNOMBRE_CLIENTEIsNull;
property NOMBRE_COMERCIAL_CLIENTE: String read GetNOMBRE_COMERCIAL_CLIENTEValue write SetNOMBRE_COMERCIAL_CLIENTEValue;
property NOMBRE_COMERCIAL_CLIENTEIsNull: Boolean read GetNOMBRE_COMERCIAL_CLIENTEIsNull write SetNOMBRE_COMERCIAL_CLIENTEIsNull;
property CALLE_CLIENTE: String read GetCALLE_CLIENTEValue write SetCALLE_CLIENTEValue;
property CALLE_CLIENTEIsNull: Boolean read GetCALLE_CLIENTEIsNull write SetCALLE_CLIENTEIsNull;
property POBLACION_CLIENTE: String read GetPOBLACION_CLIENTEValue write SetPOBLACION_CLIENTEValue;
property POBLACION_CLIENTEIsNull: Boolean read GetPOBLACION_CLIENTEIsNull write SetPOBLACION_CLIENTEIsNull;
property PROVINCIA_CLIENTE: String read GetPROVINCIA_CLIENTEValue write SetPROVINCIA_CLIENTEValue;
property PROVINCIA_CLIENTEIsNull: Boolean read GetPROVINCIA_CLIENTEIsNull write SetPROVINCIA_CLIENTEIsNull;
property NIF_CIF_AGENTE: String read GetNIF_CIF_AGENTEValue write SetNIF_CIF_AGENTEValue;
property NIF_CIF_AGENTEIsNull: Boolean read GetNIF_CIF_AGENTEIsNull write SetNIF_CIF_AGENTEIsNull;
property NOMBRE_AGENTE: String read GetNOMBRE_AGENTEValue write SetNOMBRE_AGENTEValue;
property NOMBRE_AGENTEIsNull: Boolean read GetNOMBRE_AGENTEIsNull write SetNOMBRE_AGENTEIsNull;
property CALLE_AGENTE: String read GetCALLE_AGENTEValue write SetCALLE_AGENTEValue;
property CALLE_AGENTEIsNull: Boolean read GetCALLE_AGENTEIsNull write SetCALLE_AGENTEIsNull;
property POBLACION_AGENTE: String read GetPOBLACION_AGENTEValue write SetPOBLACION_AGENTEValue;
property POBLACION_AGENTEIsNull: Boolean read GetPOBLACION_AGENTEIsNull write SetPOBLACION_AGENTEIsNull;
property PROVINCIA_AGENTE: String read GetPROVINCIA_AGENTEValue write SetPROVINCIA_AGENTEValue;
property PROVINCIA_AGENTEIsNull: Boolean read GetPROVINCIA_AGENTEIsNull write SetPROVINCIA_AGENTEIsNull;
property COMISION_AGENTE: Float read GetCOMISION_AGENTEValue write SetCOMISION_AGENTEValue;
property COMISION_AGENTEIsNull: Boolean read GetCOMISION_AGENTEIsNull write SetCOMISION_AGENTEIsNull;
property IMPORTE_COMISION_AGENTE: Float read GetIMPORTE_COMISION_AGENTEValue write SetIMPORTE_COMISION_AGENTEValue;
property IMPORTE_COMISION_AGENTEIsNull: Boolean read GetIMPORTE_COMISION_AGENTEIsNull write SetIMPORTE_COMISION_AGENTEIsNull;
public
constructor Create(aDataTable: TDADataTable); override;
destructor Destroy; override;
end;
{ ITablaVacia }
ITablaVacia = interface(IDAStronglyTypedDataTable)
['{BEF757FC-41F6-4F33-9EF5-FEDED66870B6}']
{ Property getters and setters }
{ Properties }
end;
{ TTablaVaciaDataTableRules }
TTablaVaciaDataTableRules = class(TIntfObjectDADataTableRules, ITablaVacia)
private
protected
{ Property getters and setters }
{ Properties }
public
constructor Create(aDataTable: TDADataTable); override;
destructor Destroy; override;
end;
{ IInfVentasAlbArticulo }
IInfVentasAlbArticulo = interface(IDAStronglyTypedDataTable)
['{FCEE02B2-84CF-4757-ABA1-76857DBA4DAE}']
{ Property getters and setters }
function GetID_ALBARANValue: Integer;
procedure SetID_ALBARANValue(const aValue: Integer);
function GetID_ALBARANIsNull: Boolean;
procedure SetID_ALBARANIsNull(const aValue: Boolean);
function GetID_EMPRESAValue: Integer;
procedure SetID_EMPRESAValue(const aValue: Integer);
function GetID_EMPRESAIsNull: Boolean;
procedure SetID_EMPRESAIsNull(const aValue: Boolean);
function GetREFERENCIA_ALBARANValue: String;
procedure SetREFERENCIA_ALBARANValue(const aValue: String);
function GetREFERENCIA_ALBARANIsNull: Boolean;
procedure SetREFERENCIA_ALBARANIsNull(const aValue: Boolean);
function GetFECHA_ALBARANValue: DateTime;
procedure SetFECHA_ALBARANValue(const aValue: DateTime);
function GetFECHA_ALBARANIsNull: Boolean;
procedure SetFECHA_ALBARANIsNull(const aValue: Boolean);
function GetIMPORTE_TOTAL_ALBARANValue: Currency;
procedure SetIMPORTE_TOTAL_ALBARANValue(const aValue: Currency);
function GetIMPORTE_TOTAL_ALBARANIsNull: Boolean;
procedure SetIMPORTE_TOTAL_ALBARANIsNull(const aValue: Boolean);
function GetID_ARTICULOValue: Integer;
procedure SetID_ARTICULOValue(const aValue: Integer);
function GetID_ARTICULOIsNull: Boolean;
procedure SetID_ARTICULOIsNull(const aValue: Boolean);
function GetFAMILIAValue: String;
procedure SetFAMILIAValue(const aValue: String);
function GetFAMILIAIsNull: Boolean;
procedure SetFAMILIAIsNull(const aValue: Boolean);
function GetREFERENCIAValue: String;
procedure SetREFERENCIAValue(const aValue: String);
function GetREFERENCIAIsNull: Boolean;
procedure SetREFERENCIAIsNull(const aValue: Boolean);
function GetREFERENCIA_PROVValue: String;
procedure SetREFERENCIA_PROVValue(const aValue: String);
function GetREFERENCIA_PROVIsNull: Boolean;
procedure SetREFERENCIA_PROVIsNull(const aValue: Boolean);
function GetDESCRIPCIONValue: String;
procedure SetDESCRIPCIONValue(const aValue: String);
function GetDESCRIPCIONIsNull: Boolean;
procedure SetDESCRIPCIONIsNull(const aValue: Boolean);
function GetCOMISIONABLEValue: SmallInt;
procedure SetCOMISIONABLEValue(const aValue: SmallInt);
function GetCOMISIONABLEIsNull: Boolean;
procedure SetCOMISIONABLEIsNull(const aValue: Boolean);
function GetINVENTARIABLEValue: SmallInt;
procedure SetINVENTARIABLEValue(const aValue: SmallInt);
function GetINVENTARIABLEIsNull: Boolean;
procedure SetINVENTARIABLEIsNull(const aValue: Boolean);
function GetIMPORTE_UNIDAD_COSTEValue: Currency;
procedure SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency);
function GetIMPORTE_UNIDAD_COSTEIsNull: Boolean;
procedure SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean);
function GetDESCUENTO_PROVEEDOR_COSTEValue: Float;
procedure SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float);
function GetDESCUENTO_PROVEEDOR_COSTEIsNull: Boolean;
procedure SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean);
function GetIMPORTE_NETO_COSTEValue: Currency;
procedure SetIMPORTE_NETO_COSTEValue(const aValue: Currency);
function GetIMPORTE_NETO_COSTEIsNull: Boolean;
procedure SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean);
function GetIMPORTE_PORTE_COSTEValue: Currency;
procedure SetIMPORTE_PORTE_COSTEValue(const aValue: Currency);
function GetIMPORTE_PORTE_COSTEIsNull: Boolean;
procedure SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean);
function GetCANTIDADValue: Float;
procedure SetCANTIDADValue(const aValue: Float);
function GetCANTIDADIsNull: Boolean;
procedure SetCANTIDADIsNull(const aValue: Boolean);
function GetIMPORTE_UNIDAD_VENTAValue: Currency;
procedure SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency);
function GetIMPORTE_UNIDAD_VENTAIsNull: Boolean;
procedure SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean);
function GetDESCUENTO_CLIENTE_VENTAValue: Float;
procedure SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float);
function GetDESCUENTO_CLIENTE_VENTAIsNull: Boolean;
procedure SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_NETO_VENTAValue: Float;
procedure SetIMPORTE_NETO_VENTAValue(const aValue: Float);
function GetIMPORTE_NETO_VENTAIsNull: Boolean;
procedure SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_PORTE_VENTAValue: Currency;
procedure SetIMPORTE_PORTE_VENTAValue(const aValue: Currency);
function GetIMPORTE_PORTE_VENTAIsNull: Boolean;
procedure SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean);
function GetIMPORTE_TOTAL_VENTAValue: Currency;
procedure SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency);
function GetIMPORTE_TOTAL_VENTAIsNull: Boolean;
procedure SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean);
function GetNIF_CIF_PROVEEDORValue: String;
procedure SetNIF_CIF_PROVEEDORValue(const aValue: String);
function GetNIF_CIF_PROVEEDORIsNull: Boolean;
procedure SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean);
function GetNOMBRE_PROVEEDORValue: String;
procedure SetNOMBRE_PROVEEDORValue(const aValue: String);
function GetNOMBRE_PROVEEDORIsNull: Boolean;
procedure SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean);
function GetCALLE_PROVEEDORValue: String;
procedure SetCALLE_PROVEEDORValue(const aValue: String);
function GetCALLE_PROVEEDORIsNull: Boolean;
procedure SetCALLE_PROVEEDORIsNull(const aValue: Boolean);
function GetPOBLACION_PROVEEDORValue: String;
procedure SetPOBLACION_PROVEEDORValue(const aValue: String);
function GetPOBLACION_PROVEEDORIsNull: Boolean;
procedure SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean);
function GetPROVINCIA_PROVEEDORValue: String;
procedure SetPROVINCIA_PROVEEDORValue(const aValue: String);
function GetPROVINCIA_PROVEEDORIsNull: Boolean;
procedure SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean);
function GetNIF_CIF_CLIENTEValue: String;
procedure SetNIF_CIF_CLIENTEValue(const aValue: String);
function GetNIF_CIF_CLIENTEIsNull: Boolean;
procedure SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean);
function GetNOMBRE_CLIENTEValue: String;
procedure SetNOMBRE_CLIENTEValue(const aValue: String);
function GetNOMBRE_CLIENTEIsNull: Boolean;
procedure SetNOMBRE_CLIENTEIsNull(const aValue: Boolean);
function GetNOMBRE_COMERCIAL_CLIENTEValue: String;
procedure SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String);
function GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean;
procedure SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean);
function GetCALLE_CLIENTEValue: String;
procedure SetCALLE_CLIENTEValue(const aValue: String);
function GetCALLE_CLIENTEIsNull: Boolean;
procedure SetCALLE_CLIENTEIsNull(const aValue: Boolean);
function GetPOBLACION_CLIENTEValue: String;
procedure SetPOBLACION_CLIENTEValue(const aValue: String);
function GetPOBLACION_CLIENTEIsNull: Boolean;
procedure SetPOBLACION_CLIENTEIsNull(const aValue: Boolean);
function GetPROVINCIA_CLIENTEValue: String;
procedure SetPROVINCIA_CLIENTEValue(const aValue: String);
function GetPROVINCIA_CLIENTEIsNull: Boolean;
procedure SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean);
function GetNIF_CIF_AGENTEValue: String;
procedure SetNIF_CIF_AGENTEValue(const aValue: String);
function GetNIF_CIF_AGENTEIsNull: Boolean;
procedure SetNIF_CIF_AGENTEIsNull(const aValue: Boolean);
function GetNOMBRE_AGENTEValue: String;
procedure SetNOMBRE_AGENTEValue(const aValue: String);
function GetNOMBRE_AGENTEIsNull: Boolean;
procedure SetNOMBRE_AGENTEIsNull(const aValue: Boolean);
function GetCALLE_AGENTEValue: String;
procedure SetCALLE_AGENTEValue(const aValue: String);
function GetCALLE_AGENTEIsNull: Boolean;
procedure SetCALLE_AGENTEIsNull(const aValue: Boolean);
function GetPOBLACION_AGENTEValue: String;
procedure SetPOBLACION_AGENTEValue(const aValue: String);
function GetPOBLACION_AGENTEIsNull: Boolean;
procedure SetPOBLACION_AGENTEIsNull(const aValue: Boolean);
function GetPROVINCIA_AGENTEValue: String;
procedure SetPROVINCIA_AGENTEValue(const aValue: String);
function GetPROVINCIA_AGENTEIsNull: Boolean;
procedure SetPROVINCIA_AGENTEIsNull(const aValue: Boolean);
function GetCOMISION_AGENTEValue: Float;
procedure SetCOMISION_AGENTEValue(const aValue: Float);
function GetCOMISION_AGENTEIsNull: Boolean;
procedure SetCOMISION_AGENTEIsNull(const aValue: Boolean);
function GetIMPORTE_COMISION_AGENTEValue: Float;
procedure SetIMPORTE_COMISION_AGENTEValue(const aValue: Float);
function GetIMPORTE_COMISION_AGENTEIsNull: Boolean;
procedure SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean);
{ Properties }
property ID_ALBARAN: Integer read GetID_ALBARANValue write SetID_ALBARANValue;
property ID_ALBARANIsNull: Boolean read GetID_ALBARANIsNull write SetID_ALBARANIsNull;
property ID_EMPRESA: Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
property ID_EMPRESAIsNull: Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
property REFERENCIA_ALBARAN: String read GetREFERENCIA_ALBARANValue write SetREFERENCIA_ALBARANValue;
property REFERENCIA_ALBARANIsNull: Boolean read GetREFERENCIA_ALBARANIsNull write SetREFERENCIA_ALBARANIsNull;
property FECHA_ALBARAN: DateTime read GetFECHA_ALBARANValue write SetFECHA_ALBARANValue;
property FECHA_ALBARANIsNull: Boolean read GetFECHA_ALBARANIsNull write SetFECHA_ALBARANIsNull;
property IMPORTE_TOTAL_ALBARAN: Currency read GetIMPORTE_TOTAL_ALBARANValue write SetIMPORTE_TOTAL_ALBARANValue;
property IMPORTE_TOTAL_ALBARANIsNull: Boolean read GetIMPORTE_TOTAL_ALBARANIsNull write SetIMPORTE_TOTAL_ALBARANIsNull;
property ID_ARTICULO: Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
property ID_ARTICULOIsNull: Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
property FAMILIA: String read GetFAMILIAValue write SetFAMILIAValue;
property FAMILIAIsNull: Boolean read GetFAMILIAIsNull write SetFAMILIAIsNull;
property REFERENCIA: String read GetREFERENCIAValue write SetREFERENCIAValue;
property REFERENCIAIsNull: Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
property REFERENCIA_PROV: String read GetREFERENCIA_PROVValue write SetREFERENCIA_PROVValue;
property REFERENCIA_PROVIsNull: Boolean read GetREFERENCIA_PROVIsNull write SetREFERENCIA_PROVIsNull;
property DESCRIPCION: String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
property DESCRIPCIONIsNull: Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
property COMISIONABLE: SmallInt read GetCOMISIONABLEValue write SetCOMISIONABLEValue;
property COMISIONABLEIsNull: Boolean read GetCOMISIONABLEIsNull write SetCOMISIONABLEIsNull;
property INVENTARIABLE: SmallInt read GetINVENTARIABLEValue write SetINVENTARIABLEValue;
property INVENTARIABLEIsNull: Boolean read GetINVENTARIABLEIsNull write SetINVENTARIABLEIsNull;
property IMPORTE_UNIDAD_COSTE: Currency read GetIMPORTE_UNIDAD_COSTEValue write SetIMPORTE_UNIDAD_COSTEValue;
property IMPORTE_UNIDAD_COSTEIsNull: Boolean read GetIMPORTE_UNIDAD_COSTEIsNull write SetIMPORTE_UNIDAD_COSTEIsNull;
property DESCUENTO_PROVEEDOR_COSTE: Float read GetDESCUENTO_PROVEEDOR_COSTEValue write SetDESCUENTO_PROVEEDOR_COSTEValue;
property DESCUENTO_PROVEEDOR_COSTEIsNull: Boolean read GetDESCUENTO_PROVEEDOR_COSTEIsNull write SetDESCUENTO_PROVEEDOR_COSTEIsNull;
property IMPORTE_NETO_COSTE: Currency read GetIMPORTE_NETO_COSTEValue write SetIMPORTE_NETO_COSTEValue;
property IMPORTE_NETO_COSTEIsNull: Boolean read GetIMPORTE_NETO_COSTEIsNull write SetIMPORTE_NETO_COSTEIsNull;
property IMPORTE_PORTE_COSTE: Currency read GetIMPORTE_PORTE_COSTEValue write SetIMPORTE_PORTE_COSTEValue;
property IMPORTE_PORTE_COSTEIsNull: Boolean read GetIMPORTE_PORTE_COSTEIsNull write SetIMPORTE_PORTE_COSTEIsNull;
property CANTIDAD: Float read GetCANTIDADValue write SetCANTIDADValue;
property CANTIDADIsNull: Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
property IMPORTE_UNIDAD_VENTA: Currency read GetIMPORTE_UNIDAD_VENTAValue write SetIMPORTE_UNIDAD_VENTAValue;
property IMPORTE_UNIDAD_VENTAIsNull: Boolean read GetIMPORTE_UNIDAD_VENTAIsNull write SetIMPORTE_UNIDAD_VENTAIsNull;
property DESCUENTO_CLIENTE_VENTA: Float read GetDESCUENTO_CLIENTE_VENTAValue write SetDESCUENTO_CLIENTE_VENTAValue;
property DESCUENTO_CLIENTE_VENTAIsNull: Boolean read GetDESCUENTO_CLIENTE_VENTAIsNull write SetDESCUENTO_CLIENTE_VENTAIsNull;
property IMPORTE_NETO_VENTA: Float read GetIMPORTE_NETO_VENTAValue write SetIMPORTE_NETO_VENTAValue;
property IMPORTE_NETO_VENTAIsNull: Boolean read GetIMPORTE_NETO_VENTAIsNull write SetIMPORTE_NETO_VENTAIsNull;
property IMPORTE_PORTE_VENTA: Currency read GetIMPORTE_PORTE_VENTAValue write SetIMPORTE_PORTE_VENTAValue;
property IMPORTE_PORTE_VENTAIsNull: Boolean read GetIMPORTE_PORTE_VENTAIsNull write SetIMPORTE_PORTE_VENTAIsNull;
property IMPORTE_TOTAL_VENTA: Currency read GetIMPORTE_TOTAL_VENTAValue write SetIMPORTE_TOTAL_VENTAValue;
property IMPORTE_TOTAL_VENTAIsNull: Boolean read GetIMPORTE_TOTAL_VENTAIsNull write SetIMPORTE_TOTAL_VENTAIsNull;
property NIF_CIF_PROVEEDOR: String read GetNIF_CIF_PROVEEDORValue write SetNIF_CIF_PROVEEDORValue;
property NIF_CIF_PROVEEDORIsNull: Boolean read GetNIF_CIF_PROVEEDORIsNull write SetNIF_CIF_PROVEEDORIsNull;
property NOMBRE_PROVEEDOR: String read GetNOMBRE_PROVEEDORValue write SetNOMBRE_PROVEEDORValue;
property NOMBRE_PROVEEDORIsNull: Boolean read GetNOMBRE_PROVEEDORIsNull write SetNOMBRE_PROVEEDORIsNull;
property CALLE_PROVEEDOR: String read GetCALLE_PROVEEDORValue write SetCALLE_PROVEEDORValue;
property CALLE_PROVEEDORIsNull: Boolean read GetCALLE_PROVEEDORIsNull write SetCALLE_PROVEEDORIsNull;
property POBLACION_PROVEEDOR: String read GetPOBLACION_PROVEEDORValue write SetPOBLACION_PROVEEDORValue;
property POBLACION_PROVEEDORIsNull: Boolean read GetPOBLACION_PROVEEDORIsNull write SetPOBLACION_PROVEEDORIsNull;
property PROVINCIA_PROVEEDOR: String read GetPROVINCIA_PROVEEDORValue write SetPROVINCIA_PROVEEDORValue;
property PROVINCIA_PROVEEDORIsNull: Boolean read GetPROVINCIA_PROVEEDORIsNull write SetPROVINCIA_PROVEEDORIsNull;
property NIF_CIF_CLIENTE: String read GetNIF_CIF_CLIENTEValue write SetNIF_CIF_CLIENTEValue;
property NIF_CIF_CLIENTEIsNull: Boolean read GetNIF_CIF_CLIENTEIsNull write SetNIF_CIF_CLIENTEIsNull;
property NOMBRE_CLIENTE: String read GetNOMBRE_CLIENTEValue write SetNOMBRE_CLIENTEValue;
property NOMBRE_CLIENTEIsNull: Boolean read GetNOMBRE_CLIENTEIsNull write SetNOMBRE_CLIENTEIsNull;
property NOMBRE_COMERCIAL_CLIENTE: String read GetNOMBRE_COMERCIAL_CLIENTEValue write SetNOMBRE_COMERCIAL_CLIENTEValue;
property NOMBRE_COMERCIAL_CLIENTEIsNull: Boolean read GetNOMBRE_COMERCIAL_CLIENTEIsNull write SetNOMBRE_COMERCIAL_CLIENTEIsNull;
property CALLE_CLIENTE: String read GetCALLE_CLIENTEValue write SetCALLE_CLIENTEValue;
property CALLE_CLIENTEIsNull: Boolean read GetCALLE_CLIENTEIsNull write SetCALLE_CLIENTEIsNull;
property POBLACION_CLIENTE: String read GetPOBLACION_CLIENTEValue write SetPOBLACION_CLIENTEValue;
property POBLACION_CLIENTEIsNull: Boolean read GetPOBLACION_CLIENTEIsNull write SetPOBLACION_CLIENTEIsNull;
property PROVINCIA_CLIENTE: String read GetPROVINCIA_CLIENTEValue write SetPROVINCIA_CLIENTEValue;
property PROVINCIA_CLIENTEIsNull: Boolean read GetPROVINCIA_CLIENTEIsNull write SetPROVINCIA_CLIENTEIsNull;
property NIF_CIF_AGENTE: String read GetNIF_CIF_AGENTEValue write SetNIF_CIF_AGENTEValue;
property NIF_CIF_AGENTEIsNull: Boolean read GetNIF_CIF_AGENTEIsNull write SetNIF_CIF_AGENTEIsNull;
property NOMBRE_AGENTE: String read GetNOMBRE_AGENTEValue write SetNOMBRE_AGENTEValue;
property NOMBRE_AGENTEIsNull: Boolean read GetNOMBRE_AGENTEIsNull write SetNOMBRE_AGENTEIsNull;
property CALLE_AGENTE: String read GetCALLE_AGENTEValue write SetCALLE_AGENTEValue;
property CALLE_AGENTEIsNull: Boolean read GetCALLE_AGENTEIsNull write SetCALLE_AGENTEIsNull;
property POBLACION_AGENTE: String read GetPOBLACION_AGENTEValue write SetPOBLACION_AGENTEValue;
property POBLACION_AGENTEIsNull: Boolean read GetPOBLACION_AGENTEIsNull write SetPOBLACION_AGENTEIsNull;
property PROVINCIA_AGENTE: String read GetPROVINCIA_AGENTEValue write SetPROVINCIA_AGENTEValue;
property PROVINCIA_AGENTEIsNull: Boolean read GetPROVINCIA_AGENTEIsNull write SetPROVINCIA_AGENTEIsNull;
property COMISION_AGENTE: Float read GetCOMISION_AGENTEValue write SetCOMISION_AGENTEValue;
property COMISION_AGENTEIsNull: Boolean read GetCOMISION_AGENTEIsNull write SetCOMISION_AGENTEIsNull;
property IMPORTE_COMISION_AGENTE: Float read GetIMPORTE_COMISION_AGENTEValue write SetIMPORTE_COMISION_AGENTEValue;
property IMPORTE_COMISION_AGENTEIsNull: Boolean read GetIMPORTE_COMISION_AGENTEIsNull write SetIMPORTE_COMISION_AGENTEIsNull;
end;
{ TInfVentasAlbArticuloDataTableRules }
TInfVentasAlbArticuloDataTableRules = class(TIntfObjectDADataTableRules, IInfVentasAlbArticulo)
private
protected
{ Property getters and setters }
function GetID_ALBARANValue: Integer; virtual;
procedure SetID_ALBARANValue(const aValue: Integer); virtual;
function GetID_ALBARANIsNull: Boolean; virtual;
procedure SetID_ALBARANIsNull(const aValue: Boolean); virtual;
function GetID_EMPRESAValue: Integer; virtual;
procedure SetID_EMPRESAValue(const aValue: Integer); virtual;
function GetID_EMPRESAIsNull: Boolean; virtual;
procedure SetID_EMPRESAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIA_ALBARANValue: String; virtual;
procedure SetREFERENCIA_ALBARANValue(const aValue: String); virtual;
function GetREFERENCIA_ALBARANIsNull: Boolean; virtual;
procedure SetREFERENCIA_ALBARANIsNull(const aValue: Boolean); virtual;
function GetFECHA_ALBARANValue: DateTime; virtual;
procedure SetFECHA_ALBARANValue(const aValue: DateTime); virtual;
function GetFECHA_ALBARANIsNull: Boolean; virtual;
procedure SetFECHA_ALBARANIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_TOTAL_ALBARANValue: Currency; virtual;
procedure SetIMPORTE_TOTAL_ALBARANValue(const aValue: Currency); virtual;
function GetIMPORTE_TOTAL_ALBARANIsNull: Boolean; virtual;
procedure SetIMPORTE_TOTAL_ALBARANIsNull(const aValue: Boolean); virtual;
function GetID_ARTICULOValue: Integer; virtual;
procedure SetID_ARTICULOValue(const aValue: Integer); virtual;
function GetID_ARTICULOIsNull: Boolean; virtual;
procedure SetID_ARTICULOIsNull(const aValue: Boolean); virtual;
function GetFAMILIAValue: String; virtual;
procedure SetFAMILIAValue(const aValue: String); virtual;
function GetFAMILIAIsNull: Boolean; virtual;
procedure SetFAMILIAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIAValue: String; virtual;
procedure SetREFERENCIAValue(const aValue: String); virtual;
function GetREFERENCIAIsNull: Boolean; virtual;
procedure SetREFERENCIAIsNull(const aValue: Boolean); virtual;
function GetREFERENCIA_PROVValue: String; virtual;
procedure SetREFERENCIA_PROVValue(const aValue: String); virtual;
function GetREFERENCIA_PROVIsNull: Boolean; virtual;
procedure SetREFERENCIA_PROVIsNull(const aValue: Boolean); virtual;
function GetDESCRIPCIONValue: String; virtual;
procedure SetDESCRIPCIONValue(const aValue: String); virtual;
function GetDESCRIPCIONIsNull: Boolean; virtual;
procedure SetDESCRIPCIONIsNull(const aValue: Boolean); virtual;
function GetCOMISIONABLEValue: SmallInt; virtual;
procedure SetCOMISIONABLEValue(const aValue: SmallInt); virtual;
function GetCOMISIONABLEIsNull: Boolean; virtual;
procedure SetCOMISIONABLEIsNull(const aValue: Boolean); virtual;
function GetINVENTARIABLEValue: SmallInt; virtual;
procedure SetINVENTARIABLEValue(const aValue: SmallInt); virtual;
function GetINVENTARIABLEIsNull: Boolean; virtual;
procedure SetINVENTARIABLEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_UNIDAD_COSTEValue: Currency; virtual;
procedure SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_UNIDAD_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean); virtual;
function GetDESCUENTO_PROVEEDOR_COSTEValue: Float; virtual;
procedure SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float); virtual;
function GetDESCUENTO_PROVEEDOR_COSTEIsNull: Boolean; virtual;
procedure SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_NETO_COSTEValue: Currency; virtual;
procedure SetIMPORTE_NETO_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_NETO_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_PORTE_COSTEValue: Currency; virtual;
procedure SetIMPORTE_PORTE_COSTEValue(const aValue: Currency); virtual;
function GetIMPORTE_PORTE_COSTEIsNull: Boolean; virtual;
procedure SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean); virtual;
function GetCANTIDADValue: Float; virtual;
procedure SetCANTIDADValue(const aValue: Float); virtual;
function GetCANTIDADIsNull: Boolean; virtual;
procedure SetCANTIDADIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_UNIDAD_VENTAValue: Currency; virtual;
procedure SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_UNIDAD_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean); virtual;
function GetDESCUENTO_CLIENTE_VENTAValue: Float; virtual;
procedure SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float); virtual;
function GetDESCUENTO_CLIENTE_VENTAIsNull: Boolean; virtual;
procedure SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_NETO_VENTAValue: Float; virtual;
procedure SetIMPORTE_NETO_VENTAValue(const aValue: Float); virtual;
function GetIMPORTE_NETO_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_PORTE_VENTAValue: Currency; virtual;
procedure SetIMPORTE_PORTE_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_PORTE_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_TOTAL_VENTAValue: Currency; virtual;
procedure SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency); virtual;
function GetIMPORTE_TOTAL_VENTAIsNull: Boolean; virtual;
procedure SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_PROVEEDORValue: String; virtual;
procedure SetNIF_CIF_PROVEEDORValue(const aValue: String); virtual;
function GetNIF_CIF_PROVEEDORIsNull: Boolean; virtual;
procedure SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_PROVEEDORValue: String; virtual;
procedure SetNOMBRE_PROVEEDORValue(const aValue: String); virtual;
function GetNOMBRE_PROVEEDORIsNull: Boolean; virtual;
procedure SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetCALLE_PROVEEDORValue: String; virtual;
procedure SetCALLE_PROVEEDORValue(const aValue: String); virtual;
function GetCALLE_PROVEEDORIsNull: Boolean; virtual;
procedure SetCALLE_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_PROVEEDORValue: String; virtual;
procedure SetPOBLACION_PROVEEDORValue(const aValue: String); virtual;
function GetPOBLACION_PROVEEDORIsNull: Boolean; virtual;
procedure SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_PROVEEDORValue: String; virtual;
procedure SetPROVINCIA_PROVEEDORValue(const aValue: String); virtual;
function GetPROVINCIA_PROVEEDORIsNull: Boolean; virtual;
procedure SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_CLIENTEValue: String; virtual;
procedure SetNIF_CIF_CLIENTEValue(const aValue: String); virtual;
function GetNIF_CIF_CLIENTEIsNull: Boolean; virtual;
procedure SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_CLIENTEValue: String; virtual;
procedure SetNOMBRE_CLIENTEValue(const aValue: String); virtual;
function GetNOMBRE_CLIENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_COMERCIAL_CLIENTEValue: String; virtual;
procedure SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String); virtual;
function GetNOMBRE_COMERCIAL_CLIENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetCALLE_CLIENTEValue: String; virtual;
procedure SetCALLE_CLIENTEValue(const aValue: String); virtual;
function GetCALLE_CLIENTEIsNull: Boolean; virtual;
procedure SetCALLE_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_CLIENTEValue: String; virtual;
procedure SetPOBLACION_CLIENTEValue(const aValue: String); virtual;
function GetPOBLACION_CLIENTEIsNull: Boolean; virtual;
procedure SetPOBLACION_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_CLIENTEValue: String; virtual;
procedure SetPROVINCIA_CLIENTEValue(const aValue: String); virtual;
function GetPROVINCIA_CLIENTEIsNull: Boolean; virtual;
procedure SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean); virtual;
function GetNIF_CIF_AGENTEValue: String; virtual;
procedure SetNIF_CIF_AGENTEValue(const aValue: String); virtual;
function GetNIF_CIF_AGENTEIsNull: Boolean; virtual;
procedure SetNIF_CIF_AGENTEIsNull(const aValue: Boolean); virtual;
function GetNOMBRE_AGENTEValue: String; virtual;
procedure SetNOMBRE_AGENTEValue(const aValue: String); virtual;
function GetNOMBRE_AGENTEIsNull: Boolean; virtual;
procedure SetNOMBRE_AGENTEIsNull(const aValue: Boolean); virtual;
function GetCALLE_AGENTEValue: String; virtual;
procedure SetCALLE_AGENTEValue(const aValue: String); virtual;
function GetCALLE_AGENTEIsNull: Boolean; virtual;
procedure SetCALLE_AGENTEIsNull(const aValue: Boolean); virtual;
function GetPOBLACION_AGENTEValue: String; virtual;
procedure SetPOBLACION_AGENTEValue(const aValue: String); virtual;
function GetPOBLACION_AGENTEIsNull: Boolean; virtual;
procedure SetPOBLACION_AGENTEIsNull(const aValue: Boolean); virtual;
function GetPROVINCIA_AGENTEValue: String; virtual;
procedure SetPROVINCIA_AGENTEValue(const aValue: String); virtual;
function GetPROVINCIA_AGENTEIsNull: Boolean; virtual;
procedure SetPROVINCIA_AGENTEIsNull(const aValue: Boolean); virtual;
function GetCOMISION_AGENTEValue: Float; virtual;
procedure SetCOMISION_AGENTEValue(const aValue: Float); virtual;
function GetCOMISION_AGENTEIsNull: Boolean; virtual;
procedure SetCOMISION_AGENTEIsNull(const aValue: Boolean); virtual;
function GetIMPORTE_COMISION_AGENTEValue: Float; virtual;
procedure SetIMPORTE_COMISION_AGENTEValue(const aValue: Float); virtual;
function GetIMPORTE_COMISION_AGENTEIsNull: Boolean; virtual;
procedure SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean); virtual;
{ Properties }
property ID_ALBARAN: Integer read GetID_ALBARANValue write SetID_ALBARANValue;
property ID_ALBARANIsNull: Boolean read GetID_ALBARANIsNull write SetID_ALBARANIsNull;
property ID_EMPRESA: Integer read GetID_EMPRESAValue write SetID_EMPRESAValue;
property ID_EMPRESAIsNull: Boolean read GetID_EMPRESAIsNull write SetID_EMPRESAIsNull;
property REFERENCIA_ALBARAN: String read GetREFERENCIA_ALBARANValue write SetREFERENCIA_ALBARANValue;
property REFERENCIA_ALBARANIsNull: Boolean read GetREFERENCIA_ALBARANIsNull write SetREFERENCIA_ALBARANIsNull;
property FECHA_ALBARAN: DateTime read GetFECHA_ALBARANValue write SetFECHA_ALBARANValue;
property FECHA_ALBARANIsNull: Boolean read GetFECHA_ALBARANIsNull write SetFECHA_ALBARANIsNull;
property IMPORTE_TOTAL_ALBARAN: Currency read GetIMPORTE_TOTAL_ALBARANValue write SetIMPORTE_TOTAL_ALBARANValue;
property IMPORTE_TOTAL_ALBARANIsNull: Boolean read GetIMPORTE_TOTAL_ALBARANIsNull write SetIMPORTE_TOTAL_ALBARANIsNull;
property ID_ARTICULO: Integer read GetID_ARTICULOValue write SetID_ARTICULOValue;
property ID_ARTICULOIsNull: Boolean read GetID_ARTICULOIsNull write SetID_ARTICULOIsNull;
property FAMILIA: String read GetFAMILIAValue write SetFAMILIAValue;
property FAMILIAIsNull: Boolean read GetFAMILIAIsNull write SetFAMILIAIsNull;
property REFERENCIA: String read GetREFERENCIAValue write SetREFERENCIAValue;
property REFERENCIAIsNull: Boolean read GetREFERENCIAIsNull write SetREFERENCIAIsNull;
property REFERENCIA_PROV: String read GetREFERENCIA_PROVValue write SetREFERENCIA_PROVValue;
property REFERENCIA_PROVIsNull: Boolean read GetREFERENCIA_PROVIsNull write SetREFERENCIA_PROVIsNull;
property DESCRIPCION: String read GetDESCRIPCIONValue write SetDESCRIPCIONValue;
property DESCRIPCIONIsNull: Boolean read GetDESCRIPCIONIsNull write SetDESCRIPCIONIsNull;
property COMISIONABLE: SmallInt read GetCOMISIONABLEValue write SetCOMISIONABLEValue;
property COMISIONABLEIsNull: Boolean read GetCOMISIONABLEIsNull write SetCOMISIONABLEIsNull;
property INVENTARIABLE: SmallInt read GetINVENTARIABLEValue write SetINVENTARIABLEValue;
property INVENTARIABLEIsNull: Boolean read GetINVENTARIABLEIsNull write SetINVENTARIABLEIsNull;
property IMPORTE_UNIDAD_COSTE: Currency read GetIMPORTE_UNIDAD_COSTEValue write SetIMPORTE_UNIDAD_COSTEValue;
property IMPORTE_UNIDAD_COSTEIsNull: Boolean read GetIMPORTE_UNIDAD_COSTEIsNull write SetIMPORTE_UNIDAD_COSTEIsNull;
property DESCUENTO_PROVEEDOR_COSTE: Float read GetDESCUENTO_PROVEEDOR_COSTEValue write SetDESCUENTO_PROVEEDOR_COSTEValue;
property DESCUENTO_PROVEEDOR_COSTEIsNull: Boolean read GetDESCUENTO_PROVEEDOR_COSTEIsNull write SetDESCUENTO_PROVEEDOR_COSTEIsNull;
property IMPORTE_NETO_COSTE: Currency read GetIMPORTE_NETO_COSTEValue write SetIMPORTE_NETO_COSTEValue;
property IMPORTE_NETO_COSTEIsNull: Boolean read GetIMPORTE_NETO_COSTEIsNull write SetIMPORTE_NETO_COSTEIsNull;
property IMPORTE_PORTE_COSTE: Currency read GetIMPORTE_PORTE_COSTEValue write SetIMPORTE_PORTE_COSTEValue;
property IMPORTE_PORTE_COSTEIsNull: Boolean read GetIMPORTE_PORTE_COSTEIsNull write SetIMPORTE_PORTE_COSTEIsNull;
property CANTIDAD: Float read GetCANTIDADValue write SetCANTIDADValue;
property CANTIDADIsNull: Boolean read GetCANTIDADIsNull write SetCANTIDADIsNull;
property IMPORTE_UNIDAD_VENTA: Currency read GetIMPORTE_UNIDAD_VENTAValue write SetIMPORTE_UNIDAD_VENTAValue;
property IMPORTE_UNIDAD_VENTAIsNull: Boolean read GetIMPORTE_UNIDAD_VENTAIsNull write SetIMPORTE_UNIDAD_VENTAIsNull;
property DESCUENTO_CLIENTE_VENTA: Float read GetDESCUENTO_CLIENTE_VENTAValue write SetDESCUENTO_CLIENTE_VENTAValue;
property DESCUENTO_CLIENTE_VENTAIsNull: Boolean read GetDESCUENTO_CLIENTE_VENTAIsNull write SetDESCUENTO_CLIENTE_VENTAIsNull;
property IMPORTE_NETO_VENTA: Float read GetIMPORTE_NETO_VENTAValue write SetIMPORTE_NETO_VENTAValue;
property IMPORTE_NETO_VENTAIsNull: Boolean read GetIMPORTE_NETO_VENTAIsNull write SetIMPORTE_NETO_VENTAIsNull;
property IMPORTE_PORTE_VENTA: Currency read GetIMPORTE_PORTE_VENTAValue write SetIMPORTE_PORTE_VENTAValue;
property IMPORTE_PORTE_VENTAIsNull: Boolean read GetIMPORTE_PORTE_VENTAIsNull write SetIMPORTE_PORTE_VENTAIsNull;
property IMPORTE_TOTAL_VENTA: Currency read GetIMPORTE_TOTAL_VENTAValue write SetIMPORTE_TOTAL_VENTAValue;
property IMPORTE_TOTAL_VENTAIsNull: Boolean read GetIMPORTE_TOTAL_VENTAIsNull write SetIMPORTE_TOTAL_VENTAIsNull;
property NIF_CIF_PROVEEDOR: String read GetNIF_CIF_PROVEEDORValue write SetNIF_CIF_PROVEEDORValue;
property NIF_CIF_PROVEEDORIsNull: Boolean read GetNIF_CIF_PROVEEDORIsNull write SetNIF_CIF_PROVEEDORIsNull;
property NOMBRE_PROVEEDOR: String read GetNOMBRE_PROVEEDORValue write SetNOMBRE_PROVEEDORValue;
property NOMBRE_PROVEEDORIsNull: Boolean read GetNOMBRE_PROVEEDORIsNull write SetNOMBRE_PROVEEDORIsNull;
property CALLE_PROVEEDOR: String read GetCALLE_PROVEEDORValue write SetCALLE_PROVEEDORValue;
property CALLE_PROVEEDORIsNull: Boolean read GetCALLE_PROVEEDORIsNull write SetCALLE_PROVEEDORIsNull;
property POBLACION_PROVEEDOR: String read GetPOBLACION_PROVEEDORValue write SetPOBLACION_PROVEEDORValue;
property POBLACION_PROVEEDORIsNull: Boolean read GetPOBLACION_PROVEEDORIsNull write SetPOBLACION_PROVEEDORIsNull;
property PROVINCIA_PROVEEDOR: String read GetPROVINCIA_PROVEEDORValue write SetPROVINCIA_PROVEEDORValue;
property PROVINCIA_PROVEEDORIsNull: Boolean read GetPROVINCIA_PROVEEDORIsNull write SetPROVINCIA_PROVEEDORIsNull;
property NIF_CIF_CLIENTE: String read GetNIF_CIF_CLIENTEValue write SetNIF_CIF_CLIENTEValue;
property NIF_CIF_CLIENTEIsNull: Boolean read GetNIF_CIF_CLIENTEIsNull write SetNIF_CIF_CLIENTEIsNull;
property NOMBRE_CLIENTE: String read GetNOMBRE_CLIENTEValue write SetNOMBRE_CLIENTEValue;
property NOMBRE_CLIENTEIsNull: Boolean read GetNOMBRE_CLIENTEIsNull write SetNOMBRE_CLIENTEIsNull;
property NOMBRE_COMERCIAL_CLIENTE: String read GetNOMBRE_COMERCIAL_CLIENTEValue write SetNOMBRE_COMERCIAL_CLIENTEValue;
property NOMBRE_COMERCIAL_CLIENTEIsNull: Boolean read GetNOMBRE_COMERCIAL_CLIENTEIsNull write SetNOMBRE_COMERCIAL_CLIENTEIsNull;
property CALLE_CLIENTE: String read GetCALLE_CLIENTEValue write SetCALLE_CLIENTEValue;
property CALLE_CLIENTEIsNull: Boolean read GetCALLE_CLIENTEIsNull write SetCALLE_CLIENTEIsNull;
property POBLACION_CLIENTE: String read GetPOBLACION_CLIENTEValue write SetPOBLACION_CLIENTEValue;
property POBLACION_CLIENTEIsNull: Boolean read GetPOBLACION_CLIENTEIsNull write SetPOBLACION_CLIENTEIsNull;
property PROVINCIA_CLIENTE: String read GetPROVINCIA_CLIENTEValue write SetPROVINCIA_CLIENTEValue;
property PROVINCIA_CLIENTEIsNull: Boolean read GetPROVINCIA_CLIENTEIsNull write SetPROVINCIA_CLIENTEIsNull;
property NIF_CIF_AGENTE: String read GetNIF_CIF_AGENTEValue write SetNIF_CIF_AGENTEValue;
property NIF_CIF_AGENTEIsNull: Boolean read GetNIF_CIF_AGENTEIsNull write SetNIF_CIF_AGENTEIsNull;
property NOMBRE_AGENTE: String read GetNOMBRE_AGENTEValue write SetNOMBRE_AGENTEValue;
property NOMBRE_AGENTEIsNull: Boolean read GetNOMBRE_AGENTEIsNull write SetNOMBRE_AGENTEIsNull;
property CALLE_AGENTE: String read GetCALLE_AGENTEValue write SetCALLE_AGENTEValue;
property CALLE_AGENTEIsNull: Boolean read GetCALLE_AGENTEIsNull write SetCALLE_AGENTEIsNull;
property POBLACION_AGENTE: String read GetPOBLACION_AGENTEValue write SetPOBLACION_AGENTEValue;
property POBLACION_AGENTEIsNull: Boolean read GetPOBLACION_AGENTEIsNull write SetPOBLACION_AGENTEIsNull;
property PROVINCIA_AGENTE: String read GetPROVINCIA_AGENTEValue write SetPROVINCIA_AGENTEValue;
property PROVINCIA_AGENTEIsNull: Boolean read GetPROVINCIA_AGENTEIsNull write SetPROVINCIA_AGENTEIsNull;
property COMISION_AGENTE: Float read GetCOMISION_AGENTEValue write SetCOMISION_AGENTEValue;
property COMISION_AGENTEIsNull: Boolean read GetCOMISION_AGENTEIsNull write SetCOMISION_AGENTEIsNull;
property IMPORTE_COMISION_AGENTE: Float read GetIMPORTE_COMISION_AGENTEValue write SetIMPORTE_COMISION_AGENTEValue;
property IMPORTE_COMISION_AGENTEIsNull: Boolean read GetIMPORTE_COMISION_AGENTEIsNull write SetIMPORTE_COMISION_AGENTEIsNull;
public
constructor Create(aDataTable: TDADataTable); override;
destructor Destroy; override;
end;
implementation
uses Variants, uROBinaryHelpers;
{ TInfVentasArticuloDataTableRules }
constructor TInfVentasArticuloDataTableRules.Create(aDataTable: TDADataTable);
begin
inherited;
end;
destructor TInfVentasArticuloDataTableRules.Destroy;
begin
inherited;
end;
function TInfVentasArticuloDataTableRules.GetID_FACTURAValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_FACTURA].AsInteger;
end;
procedure TInfVentasArticuloDataTableRules.SetID_FACTURAValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasArticuloID_FACTURA].AsInteger := aValue;
end;
function TInfVentasArticuloDataTableRules.GetID_FACTURAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_FACTURA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetID_FACTURAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloID_FACTURA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetID_EMPRESAValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_EMPRESA].AsInteger;
end;
procedure TInfVentasArticuloDataTableRules.SetID_EMPRESAValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasArticuloID_EMPRESA].AsInteger := aValue;
end;
function TInfVentasArticuloDataTableRules.GetID_EMPRESAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_EMPRESA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetID_EMPRESAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloID_EMPRESA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIA_FACTURAValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA_FACTURA].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIA_FACTURAValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloREFERENCIA_FACTURA].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIA_FACTURAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA_FACTURA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIA_FACTURAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloREFERENCIA_FACTURA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetFECHA_FACTURAValue: DateTime;
begin
result := DataTable.Fields[idx_InfVentasArticuloFECHA_FACTURA].AsDateTime;
end;
procedure TInfVentasArticuloDataTableRules.SetFECHA_FACTURAValue(const aValue: DateTime);
begin
DataTable.Fields[idx_InfVentasArticuloFECHA_FACTURA].AsDateTime := aValue;
end;
function TInfVentasArticuloDataTableRules.GetFECHA_FACTURAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloFECHA_FACTURA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetFECHA_FACTURAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloFECHA_FACTURA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_TOTAL_FACTURAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_FACTURA].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_TOTAL_FACTURAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_FACTURA].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_TOTAL_FACTURAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_FACTURA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_TOTAL_FACTURAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_FACTURA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetID_COMISION_FACTURAValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_COMISION_FACTURA].AsInteger;
end;
procedure TInfVentasArticuloDataTableRules.SetID_COMISION_FACTURAValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasArticuloID_COMISION_FACTURA].AsInteger := aValue;
end;
function TInfVentasArticuloDataTableRules.GetID_COMISION_FACTURAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_COMISION_FACTURA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetID_COMISION_FACTURAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloID_COMISION_FACTURA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetID_ARTICULOValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_ARTICULO].AsInteger;
end;
procedure TInfVentasArticuloDataTableRules.SetID_ARTICULOValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasArticuloID_ARTICULO].AsInteger := aValue;
end;
function TInfVentasArticuloDataTableRules.GetID_ARTICULOIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloID_ARTICULO].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetID_ARTICULOIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloID_ARTICULO].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetFAMILIAValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloFAMILIA].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetFAMILIAValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloFAMILIA].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetFAMILIAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloFAMILIA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetFAMILIAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloFAMILIA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIAValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIAValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloREFERENCIA].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloREFERENCIA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIA_PROVValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA_PROV].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIA_PROVValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloREFERENCIA_PROV].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetREFERENCIA_PROVIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloREFERENCIA_PROV].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetREFERENCIA_PROVIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloREFERENCIA_PROV].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetDESCRIPCIONValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCRIPCION].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCRIPCIONValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloDESCRIPCION].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetDESCRIPCIONIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCRIPCION].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCRIPCIONIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloDESCRIPCION].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCOMISIONABLEValue: SmallInt;
begin
result := DataTable.Fields[idx_InfVentasArticuloCOMISIONABLE].AsSmallInt;
end;
procedure TInfVentasArticuloDataTableRules.SetCOMISIONABLEValue(const aValue: SmallInt);
begin
DataTable.Fields[idx_InfVentasArticuloCOMISIONABLE].AsSmallInt := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCOMISIONABLEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCOMISIONABLE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCOMISIONABLEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCOMISIONABLE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetINVENTARIABLEValue: SmallInt;
begin
result := DataTable.Fields[idx_InfVentasArticuloINVENTARIABLE].AsSmallInt;
end;
procedure TInfVentasArticuloDataTableRules.SetINVENTARIABLEValue(const aValue: SmallInt);
begin
DataTable.Fields[idx_InfVentasArticuloINVENTARIABLE].AsSmallInt := aValue;
end;
function TInfVentasArticuloDataTableRules.GetINVENTARIABLEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloINVENTARIABLE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetINVENTARIABLEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloINVENTARIABLE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_UNIDAD_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_COSTE].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_COSTE].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_UNIDAD_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_COSTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_COSTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetDESCUENTO_PROVEEDOR_COSTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE].AsFloat;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE].AsFloat := aValue;
end;
function TInfVentasArticuloDataTableRules.GetDESCUENTO_PROVEEDOR_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloDESCUENTO_PROVEEDOR_COSTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_NETO_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_COSTE].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_NETO_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_COSTE].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_NETO_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_COSTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_COSTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_PORTE_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_COSTE].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_PORTE_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_COSTE].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_PORTE_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_COSTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_COSTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCANTIDADValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloCANTIDAD].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetCANTIDADValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloCANTIDAD].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCANTIDADIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCANTIDAD].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCANTIDADIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCANTIDAD].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_UNIDAD_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_VENTA].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_VENTA].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_UNIDAD_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_VENTA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_UNIDAD_VENTA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetDESCUENTO_CLIENTE_VENTAValue: Float;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCUENTO_CLIENTE_VENTA].AsFloat;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasArticuloDESCUENTO_CLIENTE_VENTA].AsFloat := aValue;
end;
function TInfVentasArticuloDataTableRules.GetDESCUENTO_CLIENTE_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloDESCUENTO_CLIENTE_VENTA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloDESCUENTO_CLIENTE_VENTA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_NETO_VENTAValue: Float;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_VENTA].AsFloat;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_NETO_VENTAValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_VENTA].AsFloat := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_NETO_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_VENTA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_NETO_VENTA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_PORTE_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_VENTA].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_PORTE_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_VENTA].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_PORTE_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_VENTA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_PORTE_VENTA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_TOTAL_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_VENTA].AsCurrency;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_VENTA].AsCurrency := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_TOTAL_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_VENTA].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_TOTAL_VENTA].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_PROVEEDOR].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_PROVEEDOR].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_PROVEEDOR].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_PROVEEDOR].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNOMBRE_PROVEEDOR].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_PROVEEDOR].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNOMBRE_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_PROVEEDOR].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloCALLE_PROVEEDOR].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_PROVEEDOR].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCALLE_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_PROVEEDOR].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPOBLACION_PROVEEDOR].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_PROVEEDOR].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPOBLACION_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_PROVEEDOR].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_PROVEEDOR].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_PROVEEDOR].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNOMBRE_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNOMBRE_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_COMERCIAL_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_COMERCIAL_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNOMBRE_COMERCIAL_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloCALLE_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCALLE_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPOBLACION_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPOBLACION_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_CLIENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_CLIENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_CLIENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_CLIENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_AGENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_AGENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNIF_CIF_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNIF_CIF_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNIF_CIF_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNIF_CIF_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_AGENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloNOMBRE_AGENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetNOMBRE_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloNOMBRE_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetNOMBRE_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloNOMBRE_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_AGENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloCALLE_AGENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCALLE_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCALLE_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCALLE_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCALLE_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_AGENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPOBLACION_AGENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPOBLACION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPOBLACION_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPOBLACION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPOBLACION_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_AGENTE].AsString;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_AGENTE].AsString := aValue;
end;
function TInfVentasArticuloDataTableRules.GetPROVINCIA_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloPROVINCIA_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetPROVINCIA_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloPROVINCIA_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetCOMISION_AGENTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasArticuloCOMISION_AGENTE].AsFloat;
end;
procedure TInfVentasArticuloDataTableRules.SetCOMISION_AGENTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasArticuloCOMISION_AGENTE].AsFloat := aValue;
end;
function TInfVentasArticuloDataTableRules.GetCOMISION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloCOMISION_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetCOMISION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloCOMISION_AGENTE].AsVariant := Null;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_COMISION_AGENTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_COMISION_AGENTE].AsFloat;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_COMISION_AGENTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasArticuloIMPORTE_COMISION_AGENTE].AsFloat := aValue;
end;
function TInfVentasArticuloDataTableRules.GetIMPORTE_COMISION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasArticuloIMPORTE_COMISION_AGENTE].IsNull;
end;
procedure TInfVentasArticuloDataTableRules.SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasArticuloIMPORTE_COMISION_AGENTE].AsVariant := Null;
end;
{ TTablaVaciaDataTableRules }
constructor TTablaVaciaDataTableRules.Create(aDataTable: TDADataTable);
begin
inherited;
end;
destructor TTablaVaciaDataTableRules.Destroy;
begin
inherited;
end;
{ TInfVentasAlbArticuloDataTableRules }
constructor TInfVentasAlbArticuloDataTableRules.Create(aDataTable: TDADataTable);
begin
inherited;
end;
destructor TInfVentasAlbArticuloDataTableRules.Destroy;
begin
inherited;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_ALBARANValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_ALBARAN].AsInteger;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_ALBARANValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasAlbArticuloID_ALBARAN].AsInteger := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_ALBARANIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_ALBARAN].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_ALBARANIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloID_ALBARAN].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_EMPRESAValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_EMPRESA].AsInteger;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_EMPRESAValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasAlbArticuloID_EMPRESA].AsInteger := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_EMPRESAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_EMPRESA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_EMPRESAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloID_EMPRESA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIA_ALBARANValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_ALBARAN].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIA_ALBARANValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_ALBARAN].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIA_ALBARANIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_ALBARAN].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIA_ALBARANIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_ALBARAN].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetFECHA_ALBARANValue: DateTime;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloFECHA_ALBARAN].AsDateTime;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetFECHA_ALBARANValue(const aValue: DateTime);
begin
DataTable.Fields[idx_InfVentasAlbArticuloFECHA_ALBARAN].AsDateTime := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetFECHA_ALBARANIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloFECHA_ALBARAN].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetFECHA_ALBARANIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloFECHA_ALBARAN].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_TOTAL_ALBARANValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_TOTAL_ALBARANValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_TOTAL_ALBARANIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_TOTAL_ALBARANIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_ALBARAN].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_ARTICULOValue: Integer;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_ARTICULO].AsInteger;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_ARTICULOValue(const aValue: Integer);
begin
DataTable.Fields[idx_InfVentasAlbArticuloID_ARTICULO].AsInteger := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetID_ARTICULOIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloID_ARTICULO].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetID_ARTICULOIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloID_ARTICULO].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetFAMILIAValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloFAMILIA].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetFAMILIAValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloFAMILIA].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetFAMILIAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloFAMILIA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetFAMILIAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloFAMILIA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIAValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIAValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIA_PROVValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_PROV].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIA_PROVValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_PROV].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetREFERENCIA_PROVIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_PROV].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetREFERENCIA_PROVIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloREFERENCIA_PROV].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCRIPCIONValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCRIPCION].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCRIPCIONValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloDESCRIPCION].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCRIPCIONIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCRIPCION].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCRIPCIONIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloDESCRIPCION].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCOMISIONABLEValue: SmallInt;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCOMISIONABLE].AsSmallInt;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCOMISIONABLEValue(const aValue: SmallInt);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCOMISIONABLE].AsSmallInt := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCOMISIONABLEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCOMISIONABLE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCOMISIONABLEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCOMISIONABLE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetINVENTARIABLEValue: SmallInt;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloINVENTARIABLE].AsSmallInt;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetINVENTARIABLEValue(const aValue: SmallInt);
begin
DataTable.Fields[idx_InfVentasAlbArticuloINVENTARIABLE].AsSmallInt := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetINVENTARIABLEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloINVENTARIABLE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetINVENTARIABLEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloINVENTARIABLE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_UNIDAD_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_UNIDAD_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_UNIDAD_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_UNIDAD_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_COSTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCUENTO_PROVEEDOR_COSTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCUENTO_PROVEEDOR_COSTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCUENTO_PROVEEDOR_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCUENTO_PROVEEDOR_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_PROVEEDOR_COSTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_NETO_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_COSTE].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_NETO_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_COSTE].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_NETO_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_COSTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_NETO_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_COSTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_PORTE_COSTEValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_COSTE].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_PORTE_COSTEValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_COSTE].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_PORTE_COSTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_COSTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_PORTE_COSTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_COSTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCANTIDADValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCANTIDAD].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCANTIDADValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCANTIDAD].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCANTIDADIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCANTIDAD].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCANTIDADIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCANTIDAD].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_UNIDAD_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_UNIDAD_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_UNIDAD_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_UNIDAD_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_UNIDAD_VENTA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCUENTO_CLIENTE_VENTAValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCUENTO_CLIENTE_VENTAValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetDESCUENTO_CLIENTE_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetDESCUENTO_CLIENTE_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloDESCUENTO_CLIENTE_VENTA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_NETO_VENTAValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_VENTA].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_NETO_VENTAValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_VENTA].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_NETO_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_VENTA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_NETO_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_NETO_VENTA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_PORTE_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_VENTA].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_PORTE_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_VENTA].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_PORTE_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_VENTA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_PORTE_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_PORTE_VENTA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_TOTAL_VENTAValue: Currency;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA].AsCurrency;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_TOTAL_VENTAValue(const aValue: Currency);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA].AsCurrency := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_TOTAL_VENTAIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_TOTAL_VENTAIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_TOTAL_VENTA].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_PROVEEDOR].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_PROVEEDOR].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_PROVEEDOR].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_PROVEEDOR].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_PROVEEDOR].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_PROVEEDOR].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_PROVEEDOR].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_PROVEEDOR].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_PROVEEDOR].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_PROVEEDOR].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_PROVEEDOR].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_PROVEEDOR].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_PROVEEDORValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_PROVEEDOR].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_PROVEEDORValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_PROVEEDOR].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_PROVEEDORIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_PROVEEDOR].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_PROVEEDORIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_PROVEEDOR].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_COMERCIAL_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_COMERCIAL_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_COMERCIAL_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_COMERCIAL_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_COMERCIAL_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_CLIENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_CLIENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_CLIENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_CLIENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_CLIENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_CLIENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_CLIENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_CLIENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_AGENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_AGENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNIF_CIF_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNIF_CIF_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNIF_CIF_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_AGENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_AGENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetNOMBRE_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetNOMBRE_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloNOMBRE_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_AGENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_AGENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCALLE_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCALLE_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCALLE_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCALLE_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_AGENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_AGENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPOBLACION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPOBLACION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPOBLACION_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_AGENTEValue: String;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_AGENTE].AsString;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_AGENTEValue(const aValue: String);
begin
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_AGENTE].AsString := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetPROVINCIA_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetPROVINCIA_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloPROVINCIA_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetCOMISION_AGENTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCOMISION_AGENTE].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCOMISION_AGENTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloCOMISION_AGENTE].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetCOMISION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloCOMISION_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetCOMISION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloCOMISION_AGENTE].AsVariant := Null;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_COMISION_AGENTEValue: Float;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE].AsFloat;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_COMISION_AGENTEValue(const aValue: Float);
begin
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE].AsFloat := aValue;
end;
function TInfVentasAlbArticuloDataTableRules.GetIMPORTE_COMISION_AGENTEIsNull: boolean;
begin
result := DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE].IsNull;
end;
procedure TInfVentasAlbArticuloDataTableRules.SetIMPORTE_COMISION_AGENTEIsNull(const aValue: Boolean);
begin
if aValue then
DataTable.Fields[idx_InfVentasAlbArticuloIMPORTE_COMISION_AGENTE].AsVariant := Null;
end;
initialization
RegisterDataTableRules(RID_InfVentasArticulo, TInfVentasArticuloDataTableRules);
RegisterDataTableRules(RID_TablaVacia, TTablaVaciaDataTableRules);
RegisterDataTableRules(RID_InfVentasAlbArticulo, TInfVentasAlbArticuloDataTableRules);
end.