Commit inicial: fuentes MBS ERP (Genero 6) + .gitignore + docs/SETUP_PC_MBS.md

This commit is contained in:
2026-08-18 20:59:52 -04:00
commit 454973e269
5978 changed files with 2664094 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
schema smarmotech
LAYOUT (TEXT="ccprrp005 Documentos CXC",STYLE="basic")
GRID
{
Localidad [lo ]
Cliente [tc]-[sc ]
Numero Doc. [n ]
Tipo Documento [ti]
Fecha Inicial [a ]
Fecha Final [b ]
[K]
0 50 100
[P00 ]
}
end
END
tables
cctb00001
ATTRIBUTES
K=formonly.pflag;
PROGRESSBAR P00 = formonly.progreso,VALUEMIN=0,VALUEMAX=100;
COMBOBOX lo = formonly.localidad,ITEMS=(("1","SAN CRISTOBAL"),("2","SANTO DOMINGO"),("3","SANTIDAGO"));
ti = formonly.tipo type char,upshift,comments =
"PG-Pago NC-Nota Credito ND-Nota Debito DE-Devolucion FT-Factura FE-Exportacion";
tc = formonly.tipo_cliente;
n = cctb00001.num_doc;
sc = formonly.sec_cliente;
a = formonly.fecha_inicial type date, format = "dd/mm/yyyy",autonext,
comments = "Fecha inicial del recibo de pago";
b = formonly.fecha_final type date, format = "dd/mm/yyyy",autonext,
comments = "Fecha final del recibo de pago";
end