49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
{
|
|
--------------------------------------------------------------------------
|
|
FORMULARIO : VEFMMT033
|
|
OBJETIVO : Este programa Activa Facturas Eliminadas (VEPRMT033)
|
|
REALIZADO POR : Tadeo A. Ferreras F.
|
|
FECHA : Mayo 06, 1996.
|
|
--------------------------------------------------------------------------
|
|
}
|
|
database marmotech
|
|
screen size 24 by 80
|
|
{
|
|
|
|
Factura :[f1 ] Fecha [feo ] Sub-total :[f10 ]
|
|
Ventas :[t] [e8 ] Descuento : [f11 ]
|
|
Compania :[c] [comp ] Itbis :[f12 ]
|
|
Cliente :[c1]-[c2 ] Total :[f13 ]
|
|
[n1 ]
|
|
|
|
Usuario Creador [uc ] Fecha Creacion [fc ]
|
|
Usuario Modificador [um ] Fecha Modificacion [fmf ]
|
|
}
|
|
tables
|
|
vetb00002,
|
|
vetb00003,
|
|
iptb00006
|
|
attributes
|
|
c = vetb00002.cod_cia,noentry;
|
|
e8 = formonly.tipo_f,noentry;
|
|
t = vetb00002.ventas;
|
|
f1 = vetb00002.factura,noentry;
|
|
feo = formonly.fecha type date,format = "dd/mm/yy";
|
|
c1 = vetb00002.tipo_cliente,noentry;
|
|
c2 = vetb00002.sec_cliente,noentry;
|
|
n1 = formonly.nombre,noentry;
|
|
comp= formonly.desc_com;
|
|
|
|
f10 = formonly.bruto,noentry;
|
|
f11 = formonly.descu,noentry;
|
|
f12 = formonly.itbi,noentry;
|
|
f13 = formonly.neto,noentry;
|
|
|
|
uc = vetb00002.us_crea;
|
|
fc = vetb00002.fech_crea;
|
|
um = vetb00002.us_mod;
|
|
fmf = vetb00002.fech_mod;
|
|
instructions
|
|
delimiters " "
|
|
end
|