22 lines
898 B
ObjectPascal
22 lines
898 B
ObjectPascal
|
|
unit uIDataModuleContratosClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uROTypes, uIntegerListUtils;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleContratosClienteReport = interface
|
||
|
|
['{6AB7469B-842A-413E-AF33-9506477A9666}']
|
||
|
|
function GetRptContratos(const AListaID: TIntegerList; const VerLogotipo: Boolean;
|
||
|
|
const VerImprimirPrecios: Boolean = False; const VerImprimirTotales: Boolean = False; const VerImprimirRefProveedor: Boolean = False;
|
||
|
|
const VerImprimirObservaciones: Boolean = False; const VerImprimirIncidencias: Boolean = False): Binary;
|
||
|
|
function GetRptPDFContrato(const AID: Integer; const VerLogotipo: Boolean;
|
||
|
|
const VerImprimirPrecios: Boolean = False; const VerImprimirTotales: Boolean = False; const VerImprimirRefProveedor: Boolean = False;
|
||
|
|
const VerImprimirObservaciones: Boolean = False; const VerImprimirIncidencias: Boolean = False): Binary;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|