Commit 1e19c1fd authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Mes formations : nouveau layout + sql

parent 1bd947da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -54,8 +54,8 @@ create table unicaen_validation_type
    code                  varchar(256)         not null,
    libelle               varchar(1024)        not null,
    refusable             boolean default true not null,
    histo_creation        timestamp            not null,
    histo_createur_id     integer              not null
    histo_creation        timestamp            default now() not null,
    histo_createur_id     integer              default 0 not null
        constraint unicaen_validation_type_createur_fk
            references unicaen_utilisateur_user,
    histo_modification    timestamp,
+6 −2
Original line number Diff line number Diff line
@@ -140,8 +140,8 @@ create table element_competence_type
            primary key,
    libelle               varchar(256) not null,
    ordre                 integer,
    histo_creation        timestamp    not null,
    histo_createur_id     integer      not null
    histo_creation        timestamp    default now() not null,
    histo_createur_id     integer      default 0 not null
        constraint competence_type_createur_fk
            references unicaen_utilisateur_user,
    histo_modification    timestamp,
@@ -321,3 +321,7 @@ SELECT cp.id, d.code, d.lib, d.ordre
FROM d
JOIN unicaen_privilege_categorie cp ON cp.CODE = 'niveau';

-- COMPETENCE TYPE (copie données unicaen)
INSERT INTO element_competence_type (id,libelle, ordre) VALUES (3,'Connaissances', 10);
INSERT INTO element_competence_type (id,libelle, ordre) VALUES (2,'Compétences opérationnelles', 20);
INSERT INTO element_competence_type (id,libelle, ordre) VALUES (1,'Compétences comportementales', 30);
+22 −0
Original line number Diff line number Diff line
@@ -325,6 +325,28 @@ e'<p><span style="text-decoration: underline;">Objet :</span> ouverture de la ca
<p>La DRH reste à votre disposition pour toute demande de renseignement complémentaire.</p>
<p>Cordialement</p>',
    'EntretienProfessionnel\Provider\Template');
INSERT INTO unicaen_renderer_template (code, description, document_type, document_sujet, document_corps, document_css) VALUES ('NOTIFICATION_RAPPEL_ENTRETIEN', '<p>Courrier envoyé à l''agent lui rappelant la date de son entretien professionnel</p>', 'mail', 'Rappel de votre entretien professionnel du VAR[ENTRETIEN#date] pour la campagne VAR[CAMPAGNE#annee]', e'<p><strong>Université de Caen Normandie</strong><br /><strong>Direction des Ressources Humaines</strong></p>
<p><span style="text-decoration: underline;">Objet :</span> rappel de votre entretien professionnel du VAR[ENTRETIEN#date] pour la campagne VAR[CAMPAGNE#annee]</p>
<p> </p>
<p>Bonjour,</p>
<p>Vous avez été informé<span style="color: #4d5156; font-family: arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">·</span>e par votre supérieure hiérarchique direct des éléments concernant votre entretien professionnel :</p>
<table style="width: 443px;">
<tbody>
<tr>
<td style="width: 200.55px;">Date</td>
<td style="width: 246.45px;">VAR[ENTRETIEN#date]</td>
</tr>
<tr>
<td style="width: 200.55px;">Lieu</td>
<td style="width: 246.45px;">VAR[ENTRETIEN#lieu]</td>
</tr>
<tr>
<td style="width: 200.55px;">Responsable</td>
<td style="width: 246.45px;">VAR[ENTRETIEN#responsable]</td>
</tr>
</tbody>
</table>
<p>Cordialement,<br />Le bureau de gestion des personnels BIATSS<br />Le bureau Conseil Carrière Compétences<br /><br /><br /></p>', 'table { border : 1px; }');


INSERT INTO unicaen_renderer_macro (code, description, variable_name, methode_name) VALUES ('ENTRETIEN#ActiviteService', null, 'entretien', 'toStringActiviteService');
+700 −0

File changed.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
<?php

$navigationHelper = $this->navigation('navigation');
$env = getenv('APPLICATION_ENV') ?: 'production';

echo $this->doctype();

Loading