2007-11-28 17:40:31 +00:00
|
|
|
|
unit uPresupuestosClienteViewRegister;
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
2010-09-15 16:04:17 +00:00
|
|
|
|
uViewConfiguracionRegistryUtils,
|
|
|
|
|
|
uViewConfiguracionDocCocina, uViewConfiguracionDocArmario, uViewConfiguracionDocBano,
|
|
|
|
|
|
uViewConfiguracionDocElectrodomestico, uViewConfiguracionDocVarios,
|
2007-11-28 17:40:31 +00:00
|
|
|
|
uEditorRegistryUtils, uEditorPresupuestosCliente, uEditorPresupuestoCliente, uEditorElegirPresupuestosCliente,
|
2009-06-30 16:39:42 +00:00
|
|
|
|
uEditorElegirArticulosPresupuestoCliente, uEditorPresupuestosClienteReport, uEditorAsignarDescuento;
|
2007-11-28 17:40:31 +00:00
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorPresupuestosCliente, 'EditorPresupuestosCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorPresupuestoCliente, 'EditorPresupuestoCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorElegirPresupuestosCliente, 'EditorElegirPresupuestosCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorElegirArticulosPresupuestoCliente, 'EditorElegirArticulosPresupuestosCliente');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorPresupuestosClientePreview, 'EditorPresupuestosClientePreview');
|
2009-06-30 16:39:42 +00:00
|
|
|
|
EditorRegistry.RegisterClass(TfEditorAsignarDescuento, 'EditorAsignarDescuento');
|
2010-09-15 16:04:17 +00:00
|
|
|
|
|
|
|
|
|
|
ViewConfiguracionRegistry.RegisterClass(TfrViewConfiguracionDocCocina, 'Documento Cocina');
|
|
|
|
|
|
ViewConfiguracionRegistry.RegisterClass(TfrViewConfiguracionDocArmario, 'Documento Armario');
|
|
|
|
|
|
ViewConfiguracionRegistry.RegisterClass(TfrViewConfiguracionDocBano, 'Documento Ba<42>o');
|
|
|
|
|
|
ViewConfiguracionRegistry.RegisterClass(TfrViewConfiguracionDocElectrodomestico, 'Documento Electrodom<6F>stico');
|
|
|
|
|
|
ViewConfiguracionRegistry.RegisterClass(TfrViewConfiguracionDocVarios, 'Documento Varios');
|
2007-11-28 17:40:31 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorPresupuestosCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorPresupuestoCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorElegirPresupuestosCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorElegirArticulosPresupuestoCliente);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorPresupuestosClientePreview);
|
2010-09-15 16:04:17 +00:00
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorAsignarDescuento);
|
|
|
|
|
|
|
|
|
|
|
|
ViewConfiguracionRegistry.UnRegisterClass(TfrViewConfiguracionDocCocina);
|
|
|
|
|
|
ViewConfiguracionRegistry.UnRegisterClass(TfrViewConfiguracionDocArmario);
|
|
|
|
|
|
ViewConfiguracionRegistry.UnRegisterClass(TfrViewConfiguracionDocBano);
|
|
|
|
|
|
ViewConfiguracionRegistry.UnRegisterClass(TfrViewConfiguracionDocElectrodomestico);
|
|
|
|
|
|
ViewConfiguracionRegistry.UnRegisterClass(TfrViewConfiguracionDocVarios);
|
2007-11-28 17:40:31 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|
|
|
|
|
|
|