git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@29 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
29 lines
960 B
ObjectPascal
29 lines
960 B
ObjectPascal
unit uIEditorAlbaranesClientePreview;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorPreview;
|
|
|
|
type
|
|
IEditorAlbaranesClientePreview = interface(IEditorPreview)
|
|
['{F58BF987-28EB-485A-B953-55BDEEBE2C91}']
|
|
function GetVerPrecios: Boolean;
|
|
function GetVerRefProveedor: Boolean;
|
|
function GetVerIncidencias: Boolean;
|
|
function GetVerObservaciones: Boolean;
|
|
procedure SetVerPrecios(const Value: Boolean);
|
|
procedure SetVerRefProveedor(const Value: Boolean);
|
|
procedure SetObservaciones(const Value: Boolean);
|
|
procedure SetVerIncidencias(const Value: Boolean);
|
|
property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios;
|
|
property VerRefProveedor : Boolean read GetVerRefProveedor write SetVerRefProveedor;
|
|
property VerObservaciones : Boolean read GetVerObservaciones write SetObservaciones;
|
|
property VerIncidencias : Boolean read GetVerIncidencias write SetVerIncidencias;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|