Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
open-source
OSE
Commits
5b255528
Commit
5b255528
authored
Jul 03, 2019
by
Laurent Lécluse
Browse files
Correction de bug grave sur la formule de calcul
parent
61667ef4
Changes
3
Hide whitespace changes
Inline
Side-by-side
bdd/ddl.php
View file @
5b255528
...
...
@@ -24845,6 +24845,7 @@ END OSE_FORMULE;',
intervenant.param_4,
intervenant.param_5
;
EXIT WHEN cur%NOTFOUND;
intervenant.depassement_service_du_sans_hc := (i_dep_service_du_sans_hc = 1);
intervenant.service_du := CASE
...
...
@@ -24854,8 +24855,6 @@ END OSE_FORMULE;',
THEN 9999
ELSE intervenant.heures_service_statutaire + intervenant.heures_service_modifie
END;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
...
...
@@ -25007,6 +25006,8 @@ END OSE_FORMULE;',
vh.param_4,
vh.param_5
;
EXIT WHEN cur%NOTFOUND;
vh.structure_is_affectation := vh_structure_is_affectation = 1;
vh.structure_is_univ := vh_structure_is_univ = 1;
...
...
@@ -25020,8 +25021,6 @@ END OSE_FORMULE;',
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).length := length;
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).items(length) := vh;
END LOOP;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
END;
bdd/install.sql
View file @
5b255528
...
...
@@ -13741,6 +13741,7 @@ CREATE OR REPLACE PACKAGE BODY "OSE_FORMULE" AS
intervenant.param_4,
intervenant.param_5
;
EXIT WHEN cur%NOTFOUND;
intervenant.depassement_service_du_sans_hc := (i_dep_service_du_sans_hc = 1);
intervenant.service_du := CASE
...
...
@@ -13750,8 +13751,6 @@ CREATE OR REPLACE PACKAGE BODY "OSE_FORMULE" AS
THEN 9999
ELSE intervenant.heures_service_statutaire + intervenant.heures_service_modifie
END;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
...
...
@@ -13903,6 +13902,8 @@ CREATE OR REPLACE PACKAGE BODY "OSE_FORMULE" AS
vh.param_4,
vh.param_5
;
EXIT WHEN cur%NOTFOUND;
vh.structure_is_affectation := vh_structure_is_affectation = 1;
vh.structure_is_univ := vh_structure_is_univ = 1;
...
...
@@ -13916,8 +13917,6 @@ CREATE OR REPLACE PACKAGE BODY "OSE_FORMULE" AS
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).length := length;
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).items(length) := vh;
END LOOP;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
END;
data/ddl.php
View file @
5b255528
...
...
@@ -24845,6 +24845,7 @@ END OSE_FORMULE;',
intervenant.param_4,
intervenant.param_5
;
EXIT WHEN cur%NOTFOUND;
intervenant.depassement_service_du_sans_hc := (i_dep_service_du_sans_hc = 1);
intervenant.service_du := CASE
...
...
@@ -24854,8 +24855,6 @@ END OSE_FORMULE;',
THEN 9999
ELSE intervenant.heures_service_statutaire + intervenant.heures_service_modifie
END;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
...
...
@@ -25007,6 +25006,8 @@ END OSE_FORMULE;',
vh.param_4,
vh.param_5
;
EXIT WHEN cur%NOTFOUND;
vh.structure_is_affectation := vh_structure_is_affectation = 1;
vh.structure_is_univ := vh_structure_is_univ = 1;
...
...
@@ -25020,8 +25021,6 @@ END OSE_FORMULE;',
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).length := length;
all_volumes_horaires(vh_intervenant_id)(vh_type_volume_horaire_id)(etat_volume_horaire_id).items(length) := vh;
END LOOP;
EXIT WHEN cur%NOTFOUND;
END LOOP;
CLOSE cur;
END;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment