git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@29 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
24 lines
584 B
ObjectPascal
24 lines
584 B
ObjectPascal
unit uIEditorPedidosClientePreview;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorPreview;
|
|
|
|
type
|
|
IEditorPedidosClientePreview = interface(IEditorPreview)
|
|
['{B60B6013-32C0-4694-9676-F582A759CB48}']
|
|
procedure SetVerPrecios(const Value: Boolean);
|
|
function GetVerPrecios: Boolean;
|
|
property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios;
|
|
|
|
function GetVerRefProveedor: Boolean;
|
|
procedure SetVerRefProveedor(const Value: Boolean);
|
|
property VerRefProveedor : Boolean read GetVerRefProveedor write SetVerRefProveedor;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|