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
+8
View File
@@ -0,0 +1,8 @@
SELECT a.tipo_cliente,a.sec_cliente,b.nombre,b.limite_credito,SUM(a.neto)
FROM vetb00002 a,vetb00004 b
WHERE a.status_t IS NULL AND a.fecha_factura between "01101999" AND "23022000" AND
a.tipo_cliente = b.tipo_cliente and
a.sec_cliente = b.sec_cliente AND b.status_t IS NULL
and a.ventas = '1'
GROUP BY 1,2,3,4 ORDER BY 5 DESC,1,2