Commit | Line | Data |
---|---|---|
0316268d | 1 | {% load dae %} |
61835109 OL |
2 | <fieldset> |
3 | <h2>Contrat</h2> | |
4 | <table> | |
5 | <tbody> | |
6 | <tr> | |
b1baa306 | 7 | <th>Type de contrat</th> |
a6eadec5 OL |
8 | <td>{{ dossier.type_contrat }}</td> |
9 | </tr> | |
10 | <tr> | |
b1baa306 | 11 | <th>Remplacement</th> |
9cab61eb | 12 | <td>{%if dossier.remplacement %}oui{% else %}non{%endif %}</td> |
61835109 OL |
13 | </tr> |
14 | <tr> | |
9623a926 BS |
15 | <th>Est un cadre?</th> |
16 | <td>{%if dossier.est_cadre %}oui{% else %}non{%endif %}</td> | |
17 | </tr> | |
18 | <tr> | |
a6eadec5 OL |
19 | <th>Durée</th> |
20 | <td> du {{ dossier.contrat_date_debut }} au {{ dossier.contrat_date_fin }}</td> | |
21 | </tr> | |
22 | <tr> | |
b1baa306 | 23 | <th>Régime de travail</th> |
bcc6fa3f | 24 | <td>{{ dossier.regime_travail|floatformat:0 }}%</td> |
61835109 OL |
25 | </tr> |
26 | <tr> | |
b1baa306 | 27 | <th>Nombre d'heure par semaine</th> |
a6eadec5 OL |
28 | <td>{{ dossier.regime_travail_nb_heure_semaine|floatformat:0 }}H</td> |
29 | </tr> | |
30 | <tr> | |
31 | <th>Statut</th> | |
32 | <td>{{ dossier.statut }} {{ dossier.statut_residence }}</td> | |
61835109 OL |
33 | </tr> |
34 | <tr> | |
b1baa306 | 35 | <th>Organisme BSTG</th> |
9cab61eb OL |
36 | {% if dossier.organisme_bstg or dossier.organisme_bstg_autre %} |
37 | <td>{% if dossier.organisme_bstg %}{{ dossier.organisme_bstg }}{% endif %} {{ dossier.organisme_bstg_autre }}</td> | |
38 | {% else %} | |
39 | <td>s/o</td> | |
40 | {% endif %} | |
61835109 OL |
41 | </tr> |
42 | </tbody> | |
43 | </table> | |
44 | </fieldset> | |
45 | ||
46 | <fieldset> | |
47 | <h2>Classement et salaire de base</h2> | |
2e6408b6 OL |
48 | |
49 | <h3>Ancien dossier <span class="info">(le cas échéant)</span></h3> | |
0316268d BS |
50 | {% with dossier.employe.id_rh.get_latest_dossier_ordered_by_date_fin_and_principal as ancien_dossier %} |
51 | {% if ancien_dossier %} | |
61835109 | 52 | <table> |
0316268d BS |
53 | <tbody> |
54 | <tr> | |
55 | <th>Classement</th> | |
56 | <th>Statut</th> | |
57 | <th>Implantation</th> | |
58 | <th>Employé</th> | |
59 | <th>Poste</th> | |
60 | <th>Salaire</th> | |
61 | <th>Salaire EUR</th> | |
62 | </tr> | |
63 | <tr class="gris-bkg"> | |
64 | <td>{{ ancien_dossier.classement|default:"" }}</td> | |
65 | <td>{{ ancien_dossier.statut|default:"" }}</td> | |
66 | <td>{{ ancien_dossier.poste.implantation }}</td> | |
67 | <td>{{ dossier.employe }}</td> | |
68 | <td>{{ ancien_dossier.poste.nom }}</td> | |
69 | {% with ancien_dossier.get_salaire as salaire %} | |
70 | <td>{{ salaire }}</td> | |
71 | <td>{{ salaire.montant_euros_float|floatformat:2 }} EUR</td> | |
72 | {% endwith %} | |
73 | </tr> | |
74 | {% if ancien_dossier and ancien_dossier.remunerations.all.count > 0 %} | |
75 | <tr> | |
76 | <td colspan="1"> | |
77 | Rémunérations | |
78 | </td> | |
79 | <td colspan="6"> | |
80 | {% rh_remun_form_for_year ancien_dossier %} | |
81 | </td> | |
82 | </tr> | |
83 | {% endif %} | |
84 | </tbody> | |
2e6408b6 OL |
85 | </table> |
86 | {% else %} | |
f1c9329c | 87 | <p>Il n'y a pas d'ancien dossier pour cet employé</p> |
2e6408b6 | 88 | {% endif %} |
0316268d | 89 | {% endwith %} |
2e6408b6 OL |
90 | |
91 | <h3>Précédent titulaire <span class="info">(le cas échéant)</span></h3> | |
92 | {% if dossier.classement_titulaire_anterieur %} | |
0316268d | 93 | {% with dossier.get_dossier_precedent_titulaire as precedent_titulaire %} |
2e6408b6 OL |
94 | <table> |
95 | <tbody> | |
61835109 | 96 | <tr> |
0316268d BS |
97 | <th>Classement</th> |
98 | <th>Statut</th> | |
99 | <th>Implantation</th> | |
100 | <th>Employé</th> | |
101 | <th>Poste</th> | |
102 | <th>Salaire</th> | |
103 | <th>Salaire EUR</th> | |
104 | </tr> | |
105 | <tr> | |
106 | <td>{{ precedent_titulaire.classement|default:"" }}</td> | |
107 | <td>{{ precedent_titulaire.statut|default:"" }}</td> | |
108 | <td>{{ precedent_titulaire.poste.implantation }}</td> | |
109 | <td>{{ precedent_titulaire.employe }}</td> | |
110 | <td>{{ precedent_titulaire.poste.nom }}</td> | |
111 | {% with precedent_titulaire.get_salaire as salaire %} | |
112 | <td>{{ salaire }}</td> | |
113 | <td>{{ salaire.montant_euros_float|floatformat:2 }} EUR</td> | |
114 | {% endwith %} | |
61835109 | 115 | </tr> |
0316268d | 116 | {% if precedent_titulaire and precedent_titulaire.remunerations.all.count > 0 %} |
61835109 | 117 | <tr> |
0316268d BS |
118 | <td colspan="1"> |
119 | Rémunérations | |
120 | </td> | |
121 | <td colspan="6"> | |
122 | {% rh_remun_form_for_year precedent_titulaire %} | |
123 | </td> | |
61835109 | 124 | </tr> |
0316268d | 125 | {% endif %} |
2e6408b6 OL |
126 | </tbody> |
127 | <table> | |
0316268d | 128 | {% endwith %} |
2e6408b6 OL |
129 | {% else %} |
130 | <p>Il n'y a pas de précédent titulaire</p> | |
131 | {% endif %} | |
132 | ||
133 | <h3>Proposition de classement</h3> | |
134 | <table> | |
135 | <tbody> | |
61835109 | 136 | <tr> |
b1baa306 | 137 | <th>Classement proposé</th> |
2e6408b6 | 138 | <th colspan="6">Salaire proposé</span></th> |
61835109 OL |
139 | </tr> |
140 | <tr> | |
b1baa306 | 141 | <td>{{ dossier.classement }}</td> |
71a05581 OL |
142 | <td colspan="2">{{ dossier.salaire|floatformat:0 }} {{ dossier.devise.code }}</td> |
143 | <td colspan="4" id="salaire-propose-euros" class="montant">{{ dossier.get_salaire_euros|floatformat:0 }} €</td> | |
61835109 OL |
144 | </tr> |
145 | </tbody> | |
146 | </table> | |
2e6408b6 | 147 | |
61835109 OL |
148 | </fieldset> |
149 | ||
61835109 | 150 | <fieldset> |
487de0a4 | 151 | <h2>Accès et ouvertures des comptes</h2> |
61835109 OL |
152 | <table> |
153 | <tbody> | |
154 | <tr> | |
82a13ae0 | 155 | <th>Compte comptabilité<th> |
b1baa306 OL |
156 | <td>{% if dossier.compte_compta %}oui{% else %}non{% endif %}</td> |
157 | <th>Compte courriel</th> | |
158 | <td>{% if dossier.compte_courriel %}oui{% else %}non{% endif %}</td> | |
61835109 OL |
159 | </tr> |
160 | </tbody> | |
161 | </table> | |
162 | </fieldset> | |
163 |