Files
MBS/PROYECTO/ccdir/ccfmrp013.per
T

30 lines
1.1 KiB
Plaintext

database marmotech
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/yyyy",autonext,
comments = "Fecha inicial de la(s) factura(s)";
b = formonly.fecha_final type date, format = "dd/mm/yyyy",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