git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@26 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
22 lines
541 B
ObjectPascal
22 lines
541 B
ObjectPascal
unit uIDataModulePedidosClienteReport;
|
|
|
|
interface
|
|
|
|
uses
|
|
uROTypes, uIntegerListUtils;
|
|
|
|
type
|
|
IDataModulePedidosClienteReport = interface
|
|
['{F2FFF4EA-B43D-4AAB-8A76-35A322B61A80}']
|
|
function GetReport(const ListaID: TIntegerList;
|
|
const ImprimirPrecio: Boolean = True;
|
|
const ImprimirRefProveedor: Boolean = True): Binary;
|
|
function GetRptPDFPedido(const AID: Integer;
|
|
const ImprimirPrecio: Boolean = True;
|
|
const ImprimirRefProveedor: Boolean = True): Binary;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|