Commit 8898265b authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Merge branch 'master' into alc-scindage-donnees-pj

# Conflicts:
#	data/ddl/view/V_TBL_PIECE_JOINTE_DEMANDE.sql
#	module/PieceJointe/src/Entity/Db/TypePieceJointeStatut.php
parents 2cd6920c 950cef4e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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)



+1 −1
Original line number Diff line number Diff line
@@ -349,7 +349,7 @@ return [
            'name'        => 'LIBELLE_COURT',
            'type'        => 'string',
            'bdd-type'    => 'VARCHAR2',
            'length'      => 25,
            'length'      => 50,
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => FALSE,
+12 −0
Original line number Diff line number Diff line
@@ -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',
+12 −0
Original line number Diff line number Diff line
@@ -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,
        ],
    ],
];

+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