2007-06-11 15:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Copyright (<EFBFBD>) 2007. Rodax Software.
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Los contenidos de este fichero son propiedad de Rodax Software titular del
|
|
|
|
|
|
copyright. Este fichero s<EFBFBD>lo podr<EFBFBD> ser copiado, distribuido y utilizado,
|
|
|
|
|
|
en su totalidad o en parte, con el permiso escrito de Rodax Software, o de
|
|
|
|
|
|
acuerdo con los t<EFBFBD>rminos y condiciones establecidas en el acuerdo/contrato
|
|
|
|
|
|
bajo el que se suministra.
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
Web: www.rodax-software.com
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Fecha primera versi<EFBFBD>n:
|
|
|
|
|
|
Versi<EFBFBD>n actual: 1.0.0
|
|
|
|
|
|
Fecha versi<EFBFBD>n actual:
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Modificaciones:
|
|
|
|
|
|
|
|
|
|
|
|
Fecha Comentarios
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unit uRecibosClienteViewRegister;
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
|
uEditorRegistryUtils, uEditorRecibosCliente, uEditorReciboCliente, uEditorElegirRecibosCliente,
|
|
|
|
|
|
uEditorReciboClienteReport, uEditorFechaPago;
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorFechaPago, 'EditorFechaPago');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorRecibosCliente, 'EditorRecibosCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorReciboCliente, 'EditorReciboCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorElegirRecibosCliente, 'EditorElegirRecibosCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorReciboClientePreview, 'EditorRecibosClientePreview');
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorFechaPago);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorRecibosCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorReciboCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorElegirRecibosCliente);
|
2007-06-19 17:12:00 +00:00
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorReciboClientePreview);
|
2007-06-11 15:29:06 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|