Commit 39e3173e authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Ajout de nouveaux indicateurs identiques aux 710 et 720 mais pour les permanents. (Ticket #34577)

parent 143e84f7
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_INDICATEUR_730 AS
SELECT rownum id, t."ANNEE_ID", t."INTERVENANT_ID", t."STRUCTURE_ID"
FROM (
         SELECT DISTINCT w.annee_id,
                         w.intervenant_id,
                         w.structure_id
         FROM tbl_workflow w
         WHERE w.etape_code = 'SERVICE_VALIDATION'
           AND w.type_intervenant_code = 'P'
           AND w.atteignable = 1
           AND w.objectif > w.realisation
     ) t
 No newline at end of file
+13 −0
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_INDICATEUR_740 AS
SELECT rownum id, t."ANNEE_ID", t."INTERVENANT_ID", t."STRUCTURE_ID"
FROM (
         SELECT DISTINCT w.annee_id,
                         w.intervenant_id,
                         w.structure_id
         FROM tbl_workflow w
         WHERE w.etape_code = 'SERVICE_VALIDATION_REALISE'
           AND w.type_intervenant_code = 'P'
           AND w.atteignable = 1
           AND w.objectif > w.realisation
     ) t
 No newline at end of file
+32 −11
Original line number Diff line number Diff line
@@ -51,16 +51,6 @@ return [
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    710  => [
        'TYPE'              => 'Enseignements <em>Vacataires</em>',
        'ENABLED'           => true,
        'LIBELLE_PLURIEL'   => '%s vacataires sont en attente de validation de leurs enseignements <i>prévisionnels</i>',
        'LIBELLE_SINGULIER' => '%s vacataire est en attente de validation de ses enseignements <i>prévisionnels</i>',
        'MESSAGE'           => null,
        'ROUTE'             => 'intervenant/validation/service/prevu',
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    610  => [
        'TYPE'              => 'Enseignements et référentiel <em>Permanents</em>',
        'ENABLED'           => true,
@@ -91,8 +81,18 @@ return [
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    710  => [
        'TYPE'              => 'Enseignements <em>Permanents</em> ou <em>Vacataires</em>',
        'ENABLED'           => true,
        'LIBELLE_PLURIEL'   => '%s vacataires sont en attente de validation de leurs enseignements <i>prévisionnels</i>',
        'LIBELLE_SINGULIER' => '%s vacataire est en attente de validation de ses enseignements <i>prévisionnels</i>',
        'MESSAGE'           => null,
        'ROUTE'             => 'intervenant/validation/service/prevu',
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    720  => [
        'TYPE'              => 'Enseignements <em>Vacataires</em>',
        'TYPE'              => 'Enseignements <em>Permanents</em> ou <em>Vacataires</em>',
        'ENABLED'           => true,
        'LIBELLE_PLURIEL'   => '%s vacataires sont en attente de validation de leurs enseignements <i>réalisés</i>',
        'LIBELLE_SINGULIER' => '%s vacataire est en attente de validation de ses enseignements <i>réalisés</i>',
@@ -101,6 +101,27 @@ return [
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    730  => [
        'TYPE'              => 'Enseignements <em>Permanents</em> ou <em>Vacataires</em>',
        'ENABLED'           => true,
        'LIBELLE_PLURIEL'   => '%s permanents sont en attente de validation de leurs enseignements <i>prévisionnels</i>',
        'LIBELLE_SINGULIER' => '%s permanents est en attente de validation de ses enseignements <i>prévisionnels</i>',
        'MESSAGE'           => null,
        'ROUTE'             => 'intervenant/validation/service/prevu',
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],
    740  => [
        'TYPE'              => 'Enseignements <em>Permanents</em> ou <em>Vacataires</em>',
        'ENABLED'           => true,
        'LIBELLE_PLURIEL'   => '%s permanents sont en attente de validation de leurs enseignements <i>réalisés</i>',
        'LIBELLE_SINGULIER' => '%s permanents est en attente de validation de ses enseignements <i>réalisés</i>',
        'MESSAGE'           => null,
        'ROUTE'             => 'intervenant/validation/service/realise',
        'TEM_DISTINCT'      => true,
        'TEM_NOT_STRUCTURE' => false,
    ],

    640  => [
        'TYPE'              => 'Enseignements et référentiel <em>Permanents</em>',
        'ENABLED'           => true,
+8 −0
Original line number Diff line number Diff line
<?php

namespace Application\Entity\Db\Indicateur;

class Indicateur730 extends AbstractIndicateur
{

}
+8 −0
Original line number Diff line number Diff line
<?php

namespace Application\Entity\Db\Indicateur;

class Indicateur740 extends AbstractIndicateur
{

}
Loading