Files
MBS/PROYECTO/vedir/vefmrp023.per
T

31 lines
1.0 KiB
Plaintext

database smarmotech
screen size 24 by 80
{
Fecha Inicial [a ] Total Bruto [t1 ]
Fecha Final [b ] Total Desc. [t2 ]
Tipo de Venta [c] Total Neto [t3 ]
Compania [d] Total Itbi [t4 ]
Total Facturado [t5 ]
}
end
tables
vetb00002
attributes
a = formonly.fecha_inicial type date, format = "dd/mm/yy",autonext,
comments = "Fecha inicial de la(s) factura(s)";
b = formonly.fecha_final type date, format = "dd/mm/yy",autonext,
comments = "Fecha final de la(s) factura(s)";
c = formonly.tipo_venta type char, autonext,
comments = "1 = Ventas Locales, 2 = Ventas de Exportacion";
d = formonly.cod_cia, autonext,
comments = "1 = M A R M O T E C H";
t1 = formonly.tot_1 type decimal(10,2),noentry;
t2 = formonly.tot_2 type decimal(10,2),noentry;
t3 = formonly.tot_3 type decimal(10,2),noentry;
t4 = formonly.tot_4 type decimal(10,2),noentry;
t5 = formonly.tot_5 type decimal(10,2),noentry;
end