diff --git a/admin/migration/v21Nomenclatures.php b/admin/migration/v21Nomenclatures.php
new file mode 100644
index 0000000000000000000000000000000000000000..71bb42e4cf325aee10d94540c2828f4d6d0dba45
--- /dev/null
+++ b/admin/migration/v21Nomenclatures.php
@@ -0,0 +1,35 @@
+<?php
+
+
+
+
+
+class v21Nomenclatures extends AbstractMigration
+{
+
+ public function description(): string
+ {
+ return "Peuplement des nouvelles nomenclatures";
+ }
+
+
+
+ public function utile(): bool
+ {
+ return $this->manager->hasNew('table', 'TAUX_REMU');
+ }
+
+
+
+ public function after()
+ {
+ $c = $this->manager->getOseAdmin()->getConsole();
+ $du = $this->manager->getBdd()->dataUpdater();
+
+ $du->run('install', 'TAUX_REMU');
+ $du->run('install', 'TAUX_REMU_VALEUR');
+ $du->run('install', 'JOUR_FERIE');
+ $du->run('install', 'TYPE_SERVICE');
+ $du->run('install', 'TYPE_MISSION');
+ }
+}
\ No newline at end of file
diff --git a/data/taux_remu.php b/data/taux_remu.php
index 7709155e6af559c40c9a3ab33ac24c9550b2eb93..f6dfdb88397749ff393c4f8bad3cff0df61179fb 100644
--- a/data/taux_remu.php
+++ b/data/taux_remu.php
@@ -8,6 +8,7 @@ return [
'25/06/2014' => 40.91,
'01/02/2017' => 41.41,
'01/07/2022' => 42.86,
+ '01/07/2023' => 43.50,
],
],
'SMIC' => [
diff --git a/data/workflow_etapes.php b/data/workflow_etapes.php
index db1714513632e48979a33fe19be3c2931afbd863..bff9dfac8148c533451a1ee597a87cd93961b51f 100644
--- a/data/workflow_etapes.php
+++ b/data/workflow_etapes.php
@@ -8,13 +8,6 @@ return [
"DESC_NON_FRANCHIE" => "Aucune candidature n'a été faite",
"OBLIGATOIRE" => true,
],
- "CANDIDATURE_VALIDATION" => [
- "LIBELLE_INTERVENANT" => "Je visualise la validation de mes candidatures",
- "LIBELLE_AUTRES" => "J'accède à la validation des candidatures",
- "ROUTE" => "intervenant/candidature",
- "DESC_NON_FRANCHIE" => "Certaines candidatures attendent une réponse",
- "OBLIGATOIRE" => true,
- ],
"DONNEES_PERSO_SAISIE" => [
"LIBELLE_INTERVENANT" => "Je saisis mes données personnelles",
"LIBELLE_AUTRES" => "J'accède aux données personnelles",
@@ -50,6 +43,13 @@ return [
"DESC_NON_FRANCHIE" => "Les données personnelles n'ont pas été validées",
"OBLIGATOIRE" => true,
],
+ "CANDIDATURE_VALIDATION" => [
+ "LIBELLE_INTERVENANT" => "Je visualise la validation de mes candidatures",
+ "LIBELLE_AUTRES" => "J'accède à la validation des candidatures",
+ "ROUTE" => "intervenant/candidature",
+ "DESC_NON_FRANCHIE" => "Certaines candidatures attendent une réponse",
+ "OBLIGATOIRE" => true,
+ ],
"MISSION_SAISIE" => [
"LIBELLE_INTERVENANT" => "Je visualise mes missions",
"LIBELLE_AUTRES" => "J'accède aux missions",