Loading CHANGELOG.md +5 −0 Original line number Diff line number Diff line Loading @@ -35,10 +35,15 @@ Passage à PHP 8.4 : Une fois passé en version 25, Vous devrez monter en versio * Ajout d'indicateurs (231 et 241) pour les permanents et les vacataires pour gérer les pièces justificatives facultatives (#62574) ## Améliorations * Passage de 25 à 50 caractères autorisés pour les libellés courts des structures ## Corrections * Correction demande de mise en paiement avec paiement par la composante d'affectation (#62759) * L'affichage de la saisie de services fonctionne à nouveau avec des enseignements pris sur l'extérieur (pb arrivé en 24.8) * Correction d'un problème sur le refus d'une candidature dans le cadre des missions (#63060) Loading data/ddl/table/STRUCTURE.php +1 −1 Original line number Diff line number Diff line Loading @@ -349,7 +349,7 @@ return [ 'name' => 'LIBELLE_COURT', 'type' => 'string', 'bdd-type' => 'VARCHAR2', 'length' => 25, 'length' => 50, 'scale' => NULL, 'precision' => NULL, 'nullable' => FALSE, Loading data/ddl/table/TYPE_PIECE_JOINTE_STATUT.php +12 −0 Original line number Diff line number Diff line Loading @@ -57,6 +57,18 @@ return [ 'position' => 12, 'commentaire' => null, ], 'FA' => [ 'name' => 'FA', 'type' => 'bool', 'bdd-type' => 'NUMBER', 'length' => 0, 'scale' => NULL, 'precision' => 1, 'nullable' => FALSE, 'default' => '0', 'position' => 20, 'commentaire' => NULL, ], 'HISTO_CREATEUR_ID' => [ 'name' => 'HISTO_CREATEUR_ID', 'type' => 'int', Loading data/ddl/table/UNICAEN_MAIL_MAIL.php +12 −0 Original line number Diff line number Diff line Loading @@ -141,6 +141,18 @@ return [ 'position' => 6, 'commentaire' => NULL, ], 'REPLY_TO' => [ 'name' => 'REPLY_TO', 'type' => 'string', 'bdd-type' => 'VARCHAR2', 'length' => 500, 'scale' => NULL, 'precision' => NULL, 'nullable' => TRUE, 'default' => NULL, 'position' => 12, 'commentaire' => NULL, ], ], ]; Loading data/ddl/view/V_INDICATEUR_231.sql 0 → 100644 +21 −0 Original line number Diff line number Diff line CREATE OR REPLACE FORCE VIEW V_INDICATEUR_231 AS SELECT DISTINCT MAX(i.NOM_USUEL), MAX(i.PRENOM), w.intervenant_id, i.structure_id, MAX(pj.histo_modification) AS "Date de modification" FROM tbl_workflow w JOIN tbl_workflow wc ON wc.intervenant_id = w.intervenant_id JOIN intervenant i ON i.id = w.intervenant_id AND i.histo_destruction IS NULL JOIN tbl_piece_jointe tpj ON i.id = tpj.intervenant_id AND tpj.demandee = 0 LEFT JOIN piece_jointe pj ON i.id = pj.intervenant_id WHERE w.etape_code = 'PJ_VALIDATION' AND wc.etape_code = 'PJ_SAISIE' AND w.type_intervenant_code = 'E' AND w.atteignable = 1 AND tpj.fournie = 1 AND tpj.validee = 0 GROUP BY (w.intervenant_id, i.structure_id) No newline at end of file Loading
CHANGELOG.md +5 −0 Original line number Diff line number Diff line Loading @@ -35,10 +35,15 @@ Passage à PHP 8.4 : Une fois passé en version 25, Vous devrez monter en versio * Ajout d'indicateurs (231 et 241) pour les permanents et les vacataires pour gérer les pièces justificatives facultatives (#62574) ## Améliorations * Passage de 25 à 50 caractères autorisés pour les libellés courts des structures ## Corrections * Correction demande de mise en paiement avec paiement par la composante d'affectation (#62759) * L'affichage de la saisie de services fonctionne à nouveau avec des enseignements pris sur l'extérieur (pb arrivé en 24.8) * Correction d'un problème sur le refus d'une candidature dans le cadre des missions (#63060) Loading
data/ddl/table/STRUCTURE.php +1 −1 Original line number Diff line number Diff line Loading @@ -349,7 +349,7 @@ return [ 'name' => 'LIBELLE_COURT', 'type' => 'string', 'bdd-type' => 'VARCHAR2', 'length' => 25, 'length' => 50, 'scale' => NULL, 'precision' => NULL, 'nullable' => FALSE, Loading
data/ddl/table/TYPE_PIECE_JOINTE_STATUT.php +12 −0 Original line number Diff line number Diff line Loading @@ -57,6 +57,18 @@ return [ 'position' => 12, 'commentaire' => null, ], 'FA' => [ 'name' => 'FA', 'type' => 'bool', 'bdd-type' => 'NUMBER', 'length' => 0, 'scale' => NULL, 'precision' => 1, 'nullable' => FALSE, 'default' => '0', 'position' => 20, 'commentaire' => NULL, ], 'HISTO_CREATEUR_ID' => [ 'name' => 'HISTO_CREATEUR_ID', 'type' => 'int', Loading
data/ddl/table/UNICAEN_MAIL_MAIL.php +12 −0 Original line number Diff line number Diff line Loading @@ -141,6 +141,18 @@ return [ 'position' => 6, 'commentaire' => NULL, ], 'REPLY_TO' => [ 'name' => 'REPLY_TO', 'type' => 'string', 'bdd-type' => 'VARCHAR2', 'length' => 500, 'scale' => NULL, 'precision' => NULL, 'nullable' => TRUE, 'default' => NULL, 'position' => 12, 'commentaire' => NULL, ], ], ]; Loading
data/ddl/view/V_INDICATEUR_231.sql 0 → 100644 +21 −0 Original line number Diff line number Diff line CREATE OR REPLACE FORCE VIEW V_INDICATEUR_231 AS SELECT DISTINCT MAX(i.NOM_USUEL), MAX(i.PRENOM), w.intervenant_id, i.structure_id, MAX(pj.histo_modification) AS "Date de modification" FROM tbl_workflow w JOIN tbl_workflow wc ON wc.intervenant_id = w.intervenant_id JOIN intervenant i ON i.id = w.intervenant_id AND i.histo_destruction IS NULL JOIN tbl_piece_jointe tpj ON i.id = tpj.intervenant_id AND tpj.demandee = 0 LEFT JOIN piece_jointe pj ON i.id = pj.intervenant_id WHERE w.etape_code = 'PJ_VALIDATION' AND wc.etape_code = 'PJ_SAISIE' AND w.type_intervenant_code = 'E' AND w.atteignable = 1 AND tpj.fournie = 1 AND tpj.validee = 0 GROUP BY (w.intervenant_id, i.structure_id) No newline at end of file