Mueve ipdir (Productos Terminados) de PROYECTOS a PROYECTO

Instruccion de Johnny: todos los directorios de fuentes de inventario
deben migrarse de la carpeta temporal PROYECTOS a la carpeta real
PROYECTO, ya que PROYECTOS sera eliminada.

Se elimino tambien un archivo suelto sin relacion llamado "ipdir"
que existia en PROYECTO (del commit inicial) y bloqueaba el nombre
de la carpeta.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-04 09:29:01 -04:00
co-authored by Claude Sonnet 5
parent 4532d51e4b
commit b6085d4140
358 changed files with 0 additions and 3213 deletions
+32
View File
@@ -0,0 +1,32 @@
schema smarmotech
LAYOUT (TEXT="ccprrp003 Analisis Saldos",STYLE="basic")
GRID
{
<G Parametros > <G Totales >
Tipo de Venta [b] Total Cte. [t0 ]
Fecha de Corte [c ] Total 1-30 [t1 ]
Cliente [a ] [d ] Total 31-60 [t2 ]
Vendedor [k1 ] Total 61-90 [t3 ]
0 50 100 Total Mas 90 [t4 ]
[p000 ] Total Saldo [t5 ]
}
end
end
tables
cctb00001
attributes
PROGRESSBAR p000 = formonly.progreso,VALUEMIN=0,VALUEMAX=100,COLOR=GREEN;
k1 = formonly.sec_vend;
b = formonly.tipo_venta type char, autonext,
comments = "1 = Ventas Locales, 2 = Ventas de Exportacion";
c = formonly.fecha_corte type date, autonext, format = "dd/mm/yyyy",
comments = "Digite la fecha de Corte del Reporte";
a = formonly.tipo_cliente;
d = formonly.sec_cliente;
t0 = formonly.total_c type decimal(10,2);
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