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 uRecibosProveedorViewRegister;
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
2007-06-19 17:12:00 +00:00
|
|
|
|
uEditorRegistryUtils, uEditorRecibosProveedor, uEditorReciboProveedor, uEditorElegirRecibosProveedor,
|
2007-06-11 15:29:06 +00:00
|
|
|
|
uEditorReciboProveedorReport, uEditorFechaPagoProveedor;
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorFechaPagoProveedor, 'EditorFechaPagoProveedor');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorRecibosProveedor, 'EditorRecibosProveedor');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorReciboProveedor, 'EditorReciboProveedor');
|
2007-06-19 17:12:00 +00:00
|
|
|
|
EditorRegistry.RegisterClass(TfEditorElegirRecibosProveedor, 'EditorElegirRecibosProveedor');
|
2007-06-11 15:29:06 +00:00
|
|
|
|
EditorRegistry.RegisterClass(TfEditorReciboProveedorPreview, 'EditorRecibosProveedorPreview');
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorFechaPagoProveedor);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorRecibosProveedor);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorReciboProveedor);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorReciboProveedorPreview);
|
2007-06-19 17:12:00 +00:00
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorElegirRecibosProveedor);
|
2007-06-11 15:29:06 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|