42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
{
|
|
-------------------------------------------------------------------------
|
|
NOMBRE : ctfmmt019
|
|
OBJETIVO : Capturar las Informaciones de la Relacion de Prod. Term.
|
|
y Semi-Elaborado.
|
|
DISENO : Tadeo A. Ferreras F.
|
|
FECHA REALIZADO : Junio 22, 1994
|
|
MODULO UTILIZA : ctprmt019
|
|
--------------------------------------------------------------------------
|
|
}
|
|
database marmotech
|
|
screen
|
|
{
|
|
Producto Terminado [n][g][t ][se ] [des1 ]
|
|
\g--------------------------------------------------------------------------\g
|
|
Semi-Elaborado Cantidad
|
|
\g--------------------------------------------------------------------------\g
|
|
[tp ] [tp1 ] [tp2 ] [cp ]
|
|
[tp ] [tp1 ] [tp2 ] [cp ]
|
|
[tp ] [tp1 ] [tp2 ] [cp ]
|
|
[tp ] [tp1 ] [tp2 ] [cp ]
|
|
}
|
|
end
|
|
tables
|
|
cttb00006
|
|
attributes
|
|
n = cttb00006.cod_n;
|
|
g = cttb00006.cod_grupo;
|
|
t = cttb00006.cod_tipo;
|
|
se = cttb00006.cod_sec;
|
|
des1 = formonly.descrip_esp type char,color=yellow,noentry;
|
|
|
|
tp = cttb00006.cod_prod, comments = "Digite Codigo Semi-elaborado";
|
|
tp1 = formonly.desc_prod type char,color=yellow,noentry;
|
|
tp2 = formonly.unidad type char,noentry,color=yellow;
|
|
cp = cttb00006.cantidad;
|
|
instructions
|
|
screen record datos_sc[4] (cod_prod,desc_prod,unidad,cantidad)
|
|
delimiters " "
|
|
end
|
|
|