22 lines
910 B
ObjectPascal
22 lines
910 B
ObjectPascal
|
|
unit uIDataModulePresupuestosClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uROTypes, uIntegerListUtils;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModulePresupuestosClienteReport = interface
|
||
|
|
['{70CEBB06-376F-4363-B80F-DDA4324E0F85}']
|
||
|
|
function GetRptPresupuestos(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 GetRptPDFPresupuesto(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.
|