2007-10-29 19:18:51 +00:00
|
|
|
unit uIEditorAlbaranesClientePreview;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uEditorPreview;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IEditorAlbaranesClientePreview = interface(IEditorPreview)
|
|
|
|
|
['{F58BF987-28EB-485A-B953-55BDEEBE2C91}']
|
2013-03-11 16:10:38 +00:00
|
|
|
procedure SetVerPrecios(const Value: Boolean);
|
|
|
|
|
function GetVerPrecios: Boolean;
|
|
|
|
|
property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios;
|
|
|
|
|
|
|
|
|
|
function GetVerRef: Boolean;
|
|
|
|
|
procedure SetVerRef(const Value: Boolean);
|
|
|
|
|
property VerRef : Boolean read GetVerRef write SetVerRef;
|
2007-10-29 19:18:51 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|