33 lines
1.2 KiB
Plaintext
33 lines
1.2 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 ]
|
|
Vendedor [k ] Total Cobrar [t5 ]
|
|
Cliente [c2][c3 ]
|
|
}
|
|
end
|
|
tables
|
|
cctb00001,vetb00002
|
|
attributes
|
|
c2 = vetb00002.tipo_cliente;
|
|
c3 = vetb00002.sec_cliente;
|
|
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 3- Ventas Locales USD$";
|
|
d = formonly.cod_cia, autonext,
|
|
comments = "1 = M a r m o t e c h";
|
|
k = vetb00002.sec_vend;
|
|
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
|