30 lines
1.1 KiB
Plaintext
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 Cobrar [t5 ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
cctb00001
|
|
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- Marmotech";
|
|
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
|