2011-11-14 17:40:41 +00:00
|
|
|
unit uIDataModulePresupuestosClienteReport;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uROTypes, uIntegerListUtils;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModulePresupuestosClienteReport = interface
|
|
|
|
|
['{70CEBB06-376F-4363-B80F-DDA4324E0F85}']
|
2013-06-07 16:09:30 +00:00
|
|
|
function GetRptPresupuestos(const AListaID: TIntegerList; const VerLogotipo: Boolean;
|
2019-10-13 17:03:09 +00:00
|
|
|
const VerImprimirPrecios: Boolean = False; const VerImprimirTotales: Boolean = False; const VerImprimirTotalesCapitulo: Boolean = False;
|
2013-06-07 16:09:30 +00:00
|
|
|
const VerImprimirObservaciones: Boolean = False; const VerImprimirIncidencias: Boolean = False): Binary;
|
|
|
|
|
function GetRptPDFPresupuesto(const AID: Integer; const VerLogotipo: Boolean;
|
2019-10-13 17:03:09 +00:00
|
|
|
const VerImprimirPrecios: Boolean = False; const VerImprimirTotales: Boolean = False; const VerImprimirTotalesCapitulo: Boolean = False;
|
2013-06-07 16:09:30 +00:00
|
|
|
const VerImprimirObservaciones: Boolean = False; const VerImprimirIncidencias: Boolean = False): Binary;
|
2011-11-14 17:40:41 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|