43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
{
|
|
-----------------------------------------------------------------------------
|
|
FORMULARIO : CGFMMT011
|
|
OBJETIVO : Pantalla para los cheques pagados por el banco
|
|
Es utilizada por: CGPRMT011
|
|
PROGRAMADOR : Ing. Juan F. Soto
|
|
FECHA REALIZACION : Diciembre 28 1993
|
|
-----------------------------------------------------------------------------
|
|
}
|
|
database marmotech
|
|
screen size 24 by 80
|
|
{
|
|
Banco [c ] [a ]
|
|
|
|
Numero Cheque [ck ]
|
|
Fecha [fe ]
|
|
Portador [po ]
|
|
Monto [m ]
|
|
Status Cheque [b][d ]
|
|
|
|
Usuario Creador [e ] Usuario Modificador [e2 ]
|
|
Fecha Creacion [e1 ] Fecha Modificacion [e3 ]
|
|
}
|
|
end
|
|
tables
|
|
cgtb00001,cgtb00005
|
|
attributes
|
|
c = cgtb00001.cuenta_no,autonext,comments = "Digite Cuenta del Banco";
|
|
a = cgtb00001.descripcion,noentry;
|
|
ck = cgtb00005.cheque_no,comments = "Digite Numero del cheque";
|
|
fe = cgtb00005.fecha,noentry,format = "dd/mm/yy";
|
|
po = cgtb00005.portador,noentry;
|
|
m = cgtb00005.monto,noentry;
|
|
b = cgtb00005.status_t,comments =
|
|
" N - Nulo ",
|
|
include = ("N"),upshift;
|
|
d = formonly.descrip_st,noentry;
|
|
e = cgtb00005.us_crea,noentry;
|
|
e1 = cgtb00005.fech_crea,noentry;
|
|
e2 = cgtb00005.us_mod,noentry;
|
|
e3 = cgtb00005.fech_mod,noentry;
|
|
end
|