Files
MBS/PROYECTO/indir/infmmt019.per
T
jpeguero efdf8953dd Reorganiza MATERIA PRIMA a PROYECTO y avanza inprmt002/005/013/046
- 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).
2026-08-26 13:31:09 -04:00

49 lines
1.5 KiB
Plaintext

{
========================================================================
FORMULARIO : INFMMT019
SISTEMA : Inventario Cierre Anual
OBJETIVO : Pantalla para digitar los resultados del inventario
fisico de Cierre Anual
PROGRAMA Q. USA : INPRMT019
PROGRAMADOR : Tadeo A. Ferreras
FECHA : Diciembre 13, 1995
=========================================================================
}
database exterior
screen
{
Grupo [g]
Fecha [c ]
Codigo [a]-[b]-[b1]-[b2 ]
[b4 ] [b3 ]
Cantidad [d ]
[j]
Usuario Creador [usu ] Usuario Modificador [usm ]
Fecha de Creacion[fech ] Fecha de Modificacion[fec1 ]
}
end
tables
intb00001
intb00026
attributes
g = formonly.grupo type char,upshift,include = ("A","B"), comments =
"Digite el Grupo a que Pertenece el Conteo (A/B)";
c = intb00026.fecha,autonext,format = "dd/mm/yy";
a = intb00026.cod_n,autonext,color = yellow,include = (1,3,6,9),default = 1;
b = intb00026.cod_grupo,autonext;
b1 = intb00026.cod_tipo,autonext;
b2 = intb00026.cod_sec,autonext;
b3 = intb00001.unidad_med,noentry;
b4 = intb00001.descrip_esp,noentry;
d = formonly.cantidad1,comments = "Digite Cantidad Contada";
j = intb00026.status_t,noentry;
usu = intb00026.us_crea,noentry;
fech = intb00026.fech_crea,noentry;
usm = intb00026.us_mod,noentry;
fec1 = intb00026.fech_mod,noentry;
instructions delimiters " "
end