18 lines
392 B
ObjectPascal
18 lines
392 B
ObjectPascal
|
|
unit uIDataModulePedidosClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uROTypes;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModulePedidosClienteReport = interface
|
||
|
|
['{70CEBB06-376F-4363-B80F-DDA4324E0F85}']
|
||
|
|
function GetReport(const AID: String; const ShowLogotipo: Boolean = False): Binary;
|
||
|
|
function GetRptPDF(const AID: Integer; const ShowLogotipo: Boolean = False): Binary;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|