Prueba y corrige inprcs006 (Movimiento Materia Prima)
- Proyecto ahora referencia infmcs006.4fd en vez de .per (el .per clasico no puede declarar las columnas del Tree de filas hijas) - Corrige conflicto de campo "bodega" entre INPUT y CONSTRUCT dentro del mismo DIALOG (error -8090), moviendo la busqueda a ON ACTION - Corrige binding de ComboBox Bodega y campo mensaje_ini (faltaba colName/sqlTabName, causaba Null pointer exception) - Agrega titulo "MOVIMIENTO MATERIA PRIMA" y ensancha combo de bodega - Corrige tabIndex del combo de bodega para navegacion con teclado Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
database smarmotech
|
||||
screen size 24 by 80
|
||||
screen size 24 by 80 TITLE "CONSULTA BALANCES MATERIA PRIMA"
|
||||
{
|
||||
|
||||
Codigo Materia Prima :[a]-[b]-[c ]-[d ] [a1 ] [a2 ]
|
||||
Bodega: [h ]
|
||||
Fecha Inicial:[f1 ] Fecha Final:[f2 ]
|
||||
[g ]
|
||||
\g---------------------------------------------------------------------------\g
|
||||
C a n t i d a d
|
||||
Fecha Documento Entrada Salida Balance
|
||||
@@ -31,7 +32,7 @@ c = intb00001.cod_tipo,autonext;
|
||||
d = intb00001.cod_sec,autonext;
|
||||
a1 = intb00001.descrip_esp,noentry;
|
||||
a2 = intb00001.unidad_med,noentry;
|
||||
h = intb00006.bodega,autonext;
|
||||
COMBOBOX h = formonly.bodega;
|
||||
f1 = formonly.fech_in type date,format = "dd/mm/yyyy";
|
||||
f2 = formonly.fech_fi type date,format = "dd/mm/yyyy";
|
||||
d1 = intb00006.num_doc;
|
||||
@@ -39,6 +40,7 @@ f2 = formonly.fech_fi type date,format = "dd/mm/yyyy";
|
||||
d4 = formonly.entrada;
|
||||
d5 = formonly.salida;
|
||||
d6 = formonly.balance;
|
||||
g = formonly.mensaje_ini,noentry;
|
||||
|
||||
instructions
|
||||
screen record s_csmov[8] (num_doc,fecha,entrada,salida,balance)
|
||||
|
||||
Reference in New Issue
Block a user