FactuGES2/Source/Modulos/Recibos de cliente/Controller/View/uIEditorFechaPago.pas
david 9a8b866380 - Usar el nuevo servicio de gestión de referencias en los módulos de la aplicación
- En la BD, añadir clave primario ID y generador para la table REFERENCIAS 

git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@69 f4e31baf-9722-1c47-927c-6f952f962d4b
2007-12-26 19:59:52 +00:00

27 lines
728 B
ObjectPascal

unit uIEditorFechaPago;
interface
uses
uEditorBasico;
type
IEditorFechaPago = interface(IEditorBasico)
['{977246EB-0801-4CEC-B37F-ABE2D2C9AFF4}']
function GetFechaPago: TDateTime;
procedure SetFechaPago(const Value: TDateTime);
property FechaPago: TDateTime Read GetFechaPago write SetFechaPago;
function GetIgnorarContabilidad: Integer;
procedure SetIgnorarContabilidad(const Value: Integer);
property IgnorarContabilidad: Integer Read GetIgnorarContabilidad write SetIgnorarContabilidad;
function GetIdSubCuenta: Integer;
procedure SetIdSubCuenta(const Value: Integer);
property IdSubCuenta: Integer Read GetIdSubCuenta write SetIdSubCuenta;
end;
implementation
end.