58 lines
1.4 KiB
ObjectPascal
58 lines
1.4 KiB
ObjectPascal
|
|
package Inventario_controller;
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
{$ALIGN 8}
|
||
|
|
{$ASSERTIONS ON}
|
||
|
|
{$BOOLEVAL OFF}
|
||
|
|
{$DEBUGINFO ON}
|
||
|
|
{$EXTENDEDSYNTAX ON}
|
||
|
|
{$IMPORTEDDATA ON}
|
||
|
|
{$IOCHECKS ON}
|
||
|
|
{$LOCALSYMBOLS ON}
|
||
|
|
{$LONGSTRINGS ON}
|
||
|
|
{$OPENSTRINGS ON}
|
||
|
|
{$OPTIMIZATION ON}
|
||
|
|
{$OVERFLOWCHECKS OFF}
|
||
|
|
{$RANGECHECKS OFF}
|
||
|
|
{$REFERENCEINFO ON}
|
||
|
|
{$SAFEDIVIDE OFF}
|
||
|
|
{$STACKFRAMES OFF}
|
||
|
|
{$TYPEDADDRESS OFF}
|
||
|
|
{$VARSTRINGCHECKS ON}
|
||
|
|
{$WRITEABLECONST OFF}
|
||
|
|
{$MINENUMSIZE 1}
|
||
|
|
{$IMAGEBASE $400000}
|
||
|
|
{$IMPLICITBUILD OFF}
|
||
|
|
|
||
|
|
requires
|
||
|
|
rtl,
|
||
|
|
Inventario_model,
|
||
|
|
vcl,
|
||
|
|
dbrtl,
|
||
|
|
cxLibraryD10,
|
||
|
|
dxThemeD10,
|
||
|
|
dsnap,
|
||
|
|
vcldb,
|
||
|
|
adortl,
|
||
|
|
GUIBase,
|
||
|
|
Inventario_data,
|
||
|
|
Usuarios,
|
||
|
|
Almacenes_controller,
|
||
|
|
Articulos_controller,
|
||
|
|
PedidosCliente_controller,
|
||
|
|
PedidosCliente_model,
|
||
|
|
PedidosProveedor_controller,
|
||
|
|
PedidosProveedor_model;
|
||
|
|
|
||
|
|
contains
|
||
|
|
uIEditorInventario in 'View\uIEditorInventario.pas',
|
||
|
|
uInventarioController in 'uInventarioController.pas',
|
||
|
|
uIEditorEntradaSalidaArticulos in 'View\uIEditorEntradaSalidaArticulos.pas',
|
||
|
|
uArticulosInventarioController in 'uArticulosInventarioController.pas',
|
||
|
|
uIEditorElegirArticulosCatalogo in 'View\uIEditorElegirArticulosCatalogo.pas',
|
||
|
|
uIEditorElegirArticulosAlmacen in 'View\uIEditorElegirArticulosAlmacen.pas',
|
||
|
|
uInventarioUtils in '..\Utiles\uInventarioUtils.pas' {dmInventarioUtils: TDataModule},
|
||
|
|
uIEditorDetalleReservas in 'View\uIEditorDetalleReservas.pas';
|
||
|
|
|
||
|
|
end.
|