2007-11-05 18:00:22 +00:00
|
|
|
unit uIDataModuleFacturasClienteReport;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2008-08-22 14:52:35 +00:00
|
|
|
SysUtils, Classes, uROTypes, uIntegerListUtils;
|
2007-11-05 18:00:22 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleFacturasClienteReport = interface
|
2008-02-21 10:10:05 +00:00
|
|
|
['{D241A912-78C6-4C65-AEBF-8DDEFE35F511}']
|
2008-11-13 10:33:06 +00:00
|
|
|
function GetRptFacturas(const AListaID: TIntegerList; const VerSello: Boolean = True): Binary;
|
|
|
|
|
function GetRptWordFactura(const AID: Integer; const VerSello: Boolean = True): Binary;
|
|
|
|
|
function GetRptPDFFactura(const AID: Integer; const VerSello: Boolean = True): Binary;
|
2007-11-05 18:00:22 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|