2019-11-18 10:36:42 +00:00
|
|
|
unit uIDataModuleFacturasClienteReport;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
SysUtils, uROTypes, uIntegerListUtils;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleFacturasClienteReport = interface
|
|
|
|
|
['{F498AC70-AA38-4C06-B301-85A4AC0B210B}']
|
2023-09-28 13:55:00 +00:00
|
|
|
function GetReport(const AListaID: TIntegerList; AVerDatosCliente: Boolean = true; AEmpresaAcota: Boolean = true): Binary;
|
|
|
|
|
function GetRptPDFFactura(const AID: Integer; AVerDatosCliente: Boolean = true; AEmpresaAcota: Boolean = true): Binary;
|
2019-11-18 10:36:42 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|