Files

42 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
-----------------------------------------------------------------------------
}
SCHEMA smarmotech
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,format = "dd/mm/yy",noentry;
po = cgtb00005.portador,noentry;
m = cgtb00005.monto,noentry;
b = cgtb00005.status_t,default ="C",upshift,comments =
" C - Cancelado Por el Banco N - Cheque Nulo";
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