26 lines
818 B
Plaintext
26 lines
818 B
Plaintext
database marmotech
|
|
screen size 24 by 80
|
|
{
|
|
|
|
Tipo de Venta [b] Total 1-30 [t1 ]
|
|
Ano [c ] Total 31-45 [t2 ]
|
|
Mes [c1] Total 46-60 [t3 ]
|
|
Total Mas 60 [t4 ]
|
|
Total Saldo [t5 ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
cctb00001
|
|
attributes
|
|
b = formonly.tipo_venta type char, autonext,
|
|
comments = "1 = Ventas Locales, 2 = Ventas de Exportacion";
|
|
c = formonly.ano1 type smallint;
|
|
c1 = formonly.mes1 type smallint;
|
|
t1 = formonly.total1 type decimal(10,2);
|
|
t2 = formonly.total2 type decimal(10,2);
|
|
t3 = formonly.total3 type decimal(10,2);
|
|
t4 = formonly.total4 type decimal(10,2);
|
|
t5 = formonly.total5 type decimal(10,2);
|
|
end
|