dmencu 0.8.4 → 0.8.5
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.
|
@@ -32,8 +32,8 @@ begin
|
|
|
32
32
|
from tem
|
|
33
33
|
where operativo = old.operativo and enc = old.enc;
|
|
34
34
|
|
|
35
|
-
insert into historial_tem (operativo, enc, orden, tarea, ts_salida, recepcionista, asignado, json_encuesta, resumen_estado, resumen_estado_sup, rea, norea, rea_sup, norea_sup) values
|
|
36
|
-
(old.operativo, old.enc, v_proximo_orden, old.tarea_actual, current_timestamp, v_recepcionista, v_asignado, v_json_encuesta, v_resumen_estado, v_resumen_estado_sup, v_rea, v_norea, v_rea_sup, v_norea_sup);
|
|
35
|
+
insert into historial_tem (operativo, enc, orden, tarea, estado, ts_salida, recepcionista, asignado, json_encuesta, resumen_estado, resumen_estado_sup, rea, norea, rea_sup, norea_sup) values
|
|
36
|
+
(old.operativo, old.enc, v_proximo_orden, old.estado, old.tarea_actual, current_timestamp, v_recepcionista, v_asignado, v_json_encuesta, v_resumen_estado, v_resumen_estado_sup, v_rea, v_norea, v_rea_sup, v_norea_sup);
|
|
37
37
|
end if;
|
|
38
38
|
return new;
|
|
39
39
|
end;
|
package/package.json
CHANGED