Commit 658e26f4 authored by Florian Joriot's avatar Florian Joriot
Browse files

Merge remote-tracking branch 'origin/master'

parents 005791ad aebaa0ca
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -43,6 +43,9 @@

* Modification de libellé dans l'affichage de l'offre de formation (#49763)
* Possibilité de modifier manuellement l'email expéditeur pour l'envoi d'email via les indicateurs (#50725)
* Synchronisation du code source de l'intervenant avec l'export SIHAM lors d'une PEC ou REN (#50845)
* Les indicateurs 550, 560 et 570 sont maintenant utilisables même si la clôture n'est pas utilisée par les établissements (#50952)
* Blocage de la saisie de motif de non paiement sur du service référentiel déjà validé (#51180)

## Corrections de bugs

@@ -53,6 +56,7 @@
* Filtrage des types d'intervention pour la saisie de service hors établissement (#51512)
* L'enregistrement d'un statut ne possédant pas de contrat se fait correctement lorsqu'il n'y a pas d'état de sortie de saisie (#51400)
* Le bouton de saisie du référentiel apparait maintenant même si la composante de l'intervenant diffère de celle du gestionnaire (#50799)
* Remise en forme de l'écran engagement et liquidation (#50738) 

# OSE 20.5 (07/06/2023)

+4 −3
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ return [
        'actif'       => AppConfig::get('export-rh', 'actif') ? AppConfig::get('export-rh', 'actif') : false,
        'connecteur'  => AppConfig::get('export-rh', 'connecteur') ? AppConfig::get('export-rh', 'connecteur') : '',
        'sync-code'   => AppConfig::get('export-rh', 'sync-code') ? AppConfig::get('export-rh', 'sync-code') : false,
        'sync-source' => AppConfig::get('export-rh', 'sync-source') ? AppConfig::get('export-rh', 'sync-source') : '',
    ],

];
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -7,12 +7,12 @@ FROM
  tbl_workflow w
  JOIN tbl_workflow wc ON wc.intervenant_id = w.intervenant_id
  JOIN intervenant i ON i.id = wc.intervenant_id
  JOIN statut s ON s.id = i.statut_id
  JOIN structure s ON s.id = w.structure_id
WHERE
  w.etape_code = 'SERVICE_VALIDATION_REALISE'
  AND w.objectif > w.realisation
  AND w.atteignable = 1

  AND wc.etape_code = 'CLOTURE_REALISE'
  AND (wc.etape_code = 'CLOTURE_REALISE' AND s.cloture = 1)
  AND wc.objectif = wc.realisation
  AND w.structure_id <> i.structure_id
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -9,13 +9,14 @@ FROM
  JOIN tbl_workflow wc ON wc.intervenant_id = w.intervenant_id
  JOIN intervenant i ON i.id = wc.intervenant_id
  JOIN structure s ON s.id = w.structure_id
  JOIN statut s ON s.id = i.statut_id
  LEFT JOIN HISTO_INTERVENANT_SERVICE his ON his.INTERVENANT_ID = w.intervenant_id
WHERE
  w.etape_code = 'REFERENTIEL_VALIDATION_REALISE'
  AND w.objectif > w.realisation
  AND w.atteignable = 1

  AND wc.etape_code = 'CLOTURE_REALISE'
  AND (wc.etape_code = 'CLOTURE_REALISE' AND s.cloture = 1)
  AND wc.objectif = wc.realisation
  AND w.structure_id = i.structure_id

+2 −1
Original line number Diff line number Diff line
@@ -7,12 +7,13 @@ FROM
  tbl_workflow w
  JOIN tbl_workflow wc ON wc.intervenant_id = w.intervenant_id
  JOIN intervenant i ON i.id = wc.intervenant_id
  JOIN statut s ON s.id = i.statut_id
  JOIN structure s ON s.id = w.structure_id
WHERE
  w.etape_code = 'REFERENTIEL_VALIDATION_REALISE'
  AND w.objectif > w.realisation
  AND w.atteignable = 1

  AND wc.etape_code = 'CLOTURE_REALISE'
  AND (wc.etape_code = 'CLOTURE_REALISE' AND s.cloture =1)
  AND wc.objectif = wc.realisation
  AND w.structure_id <> i.structure_id
 No newline at end of file
Loading