dmencu 0.3.60 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/unlogged/bypass-formulario.js +3 -3
- package/dist/client/unlogged/render-formulario.tsx +4 -0
- package/dist/server/server/app-dmencu.js +9 -6
- package/dist/server/server/table-tareas_areas.js +10 -1
- package/dist/server/server/table-tareas_tem.d.ts +7 -1
- package/dist/server/server/table-tareas_tem.js +36 -6
- package/dist/unlogged/unlogged/bypass-formulario.js +3 -3
- package/dist/unlogged/unlogged/render-formulario.js +5 -1
- package/dist/unlogged/unlogged/render-formulario.tsx +4 -0
- package/package.json +1 -1
|
@@ -952,6 +952,10 @@ var botonFormularioConResumen = (
|
|
|
952
952
|
onClick:()=>{
|
|
953
953
|
if(defBoton.esConfirmar){
|
|
954
954
|
if(defBoton.num != null){
|
|
955
|
+
if(casillero.salto){
|
|
956
|
+
var BF_varname = '$B.F:'+ casillero.salto as IdVariable
|
|
957
|
+
dispatchByPass(accion_registrar_respuesta,{forPk:forPkPadre, variable:BF_varname, respuesta:defBoton.num==0?null:defBoton.num as Valor});
|
|
958
|
+
}
|
|
955
959
|
dispatchByPass(accion_registrar_respuesta,{forPk:forPkPadre, variable:casillero.expresion_habilitar as IdVariable, respuesta:defBoton.num as Valor});
|
|
956
960
|
}
|
|
957
961
|
}else{
|
package/package.json
CHANGED