- Mueve todo el contenido de PROYECTOS/indir y varias funciones compartidas de PROYECTOS/otrodir hacia PROYECTO, siguiendo instruccion de Johnny (PROYECTOS se va a eliminar). - inprmt002: agrega campo Desglose faltante, corrige typo "eLiminar". - inprmt005: agrega formulario y 3 campos faltantes (Consumo, Requiere Autorizacion, Requisiciones), corrige typo "eLiminar". - inprmt013: agrega formulario, titulo, corrige typo "eLiminar". - inprmt046: agrega formulario y varias funciones/dependencias faltantes (cincodmov, clasf_bloque, medidas, defecto, buscaEmp, consultaTransportista, busca_departamento); corrige nombres de campo desalineados con el codigo (depto_a, bodega) y los convierte a ComboBox donde el codigo lo requiere. - Corrige dependencia faltante de FORMULARIOS_IN a la libreria Database (bloqueaba todo el modulo de MATERIA PRIMA).
51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
{
|
|
========================================================================
|
|
FORMULARIO : INFMMT057
|
|
SISTEMA : Inventario Materia Prima (Inventario Perpetuo)
|
|
OBJETIVO : Pantalla para digitar los resultados del inventario
|
|
fisico perpetuo realizado en determinada semana del
|
|
mes
|
|
PROGRAMA Q. USA : INPRMT057
|
|
PROGRAMADOR : Tadeo A. Ferreras
|
|
FECHA : Mayo 9, 1993
|
|
=========================================================================
|
|
}
|
|
database smarmotech
|
|
screen
|
|
{
|
|
|
|
Codigo [a]-[b]-[b1]-[b2 ]
|
|
[b3 ] [b4 ] Categoria [e]
|
|
Semana Del [c ] Al [c1 ]
|
|
Existencia Actual [d ] Fisica [d1 ]
|
|
[j]
|
|
|
|
Usuario Creador [usu ] Usuario Modificador [usm ]
|
|
Fecha de Creacion[fech ] Fecha de Modificacion[fec1 ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
intb00001
|
|
intb00014
|
|
intb00015
|
|
attributes
|
|
a = intb00015.cod_n,autonext,color = yellow,include = (1),default = 1;
|
|
b = intb00015.cod_grupo,autonext,color = yellow;
|
|
b1 = intb00015.cod_tipo,autonext,color = yellow;
|
|
b2 = intb00015.cod_sec,autonext,color = yellow;
|
|
b3 = intb00001.unidad_med,color = yellow,noentry;
|
|
b4 = intb00001.descrip_esp,color = yellow,noentry;
|
|
e = intb00014.categoria,color = yellow,noentry;
|
|
c = intb00015.semana_del,autonext,color = yellow,format = "dd-mm-yy";
|
|
c1 = intb00015.semana_al,autonext,color=yellow,format="dd-mm-yy";
|
|
d = intb00015.exis_act,color = yellow,noentry;
|
|
d1 = intb00015.exis_fisica,color = yellow;
|
|
j = intb00015.status_t,noentry;
|
|
usu = intb00015.us_crea,noentry;
|
|
fech = intb00015.fech_crea,noentry;
|
|
usm = intb00015.us_mod,noentry;
|
|
fec1 = intb00015.fech_mod,noentry;
|
|
instructions delimiters " "
|
|
end
|