23 lines
977 B
ObjectPascal
23 lines
977 B
ObjectPascal
|
|
unit uIDataModuleAlbaranesClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uROTypes, uIntegerListUtils;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleAlbaranesClienteReport = interface
|
||
|
|
['{42C55204-5AB9-403E-8385-1A62B02D8234}']
|
||
|
|
function GetRptAlbaranes(const ListaID: 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 GetEtiquetas(const AID: Integer; withRefCliente: Boolean): Binary;
|
||
|
|
function GetRptPDFAlbaran(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.
|