dmencu 0.7.6 → 0.7.7
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.
|
@@ -23,9 +23,9 @@ begin
|
|
|
23
23
|
where operativo = new.operativo and enc = new.enc;
|
|
24
24
|
if new.verificado='1' then
|
|
25
25
|
if v_tarea_actual='encu' then
|
|
26
|
-
case when
|
|
26
|
+
case when v_pasa_a_recuperacion or v_rea in (3,4) then
|
|
27
27
|
v_proxtarea='recu';
|
|
28
|
-
when
|
|
28
|
+
when v_pasa_a_supervision then
|
|
29
29
|
v_proxtarea='supe';
|
|
30
30
|
when v_rea=1 and (v_supervision_aleatoria is not null or v_supervision_dirigida is not null) then
|
|
31
31
|
v_proxtarea='supe';
|
|
@@ -33,7 +33,7 @@ begin
|
|
|
33
33
|
v_proxtarea='finc';
|
|
34
34
|
end case;
|
|
35
35
|
elsif v_tarea_actual='recu' then
|
|
36
|
-
case when
|
|
36
|
+
case when v_pasa_a_supervision then
|
|
37
37
|
v_proxtarea='supe';
|
|
38
38
|
when v_rea=1 and (v_supervision_aleatoria is not null or v_supervision_dirigida is not null) then
|
|
39
39
|
v_proxtarea='supe';
|
package/package.json
CHANGED