Commit | Line | Data |
---|---|---|
61835109 OL |
1 | <fieldset> |
2 | <h2>Contrat</h2> | |
3 | <table> | |
4 | <tbody> | |
5 | <tr> | |
b1baa306 | 6 | <th>Type de contrat</th> |
a6eadec5 OL |
7 | <td>{{ dossier.type_contrat }}</td> |
8 | </tr> | |
9 | <tr> | |
b1baa306 | 10 | <th>Remplacement</th> |
9cab61eb | 11 | <td>{%if dossier.remplacement %}oui{% else %}non{%endif %}</td> |
61835109 OL |
12 | </tr> |
13 | <tr> | |
a6eadec5 OL |
14 | <th>Durée</th> |
15 | <td> du {{ dossier.contrat_date_debut }} au {{ dossier.contrat_date_fin }}</td> | |
16 | </tr> | |
17 | <tr> | |
b1baa306 | 18 | <th>Régime de travail</th> |
bcc6fa3f | 19 | <td>{{ dossier.regime_travail|floatformat:0 }}%</td> |
61835109 OL |
20 | </tr> |
21 | <tr> | |
b1baa306 | 22 | <th>Nombre d'heure par semaine</th> |
a6eadec5 OL |
23 | <td>{{ dossier.regime_travail_nb_heure_semaine|floatformat:0 }}H</td> |
24 | </tr> | |
25 | <tr> | |
26 | <th>Statut</th> | |
27 | <td>{{ dossier.statut }} {{ dossier.statut_residence }}</td> | |
61835109 OL |
28 | </tr> |
29 | <tr> | |
b1baa306 | 30 | <th>Organisme BSTG</th> |
9cab61eb OL |
31 | {% if dossier.organisme_bstg or dossier.organisme_bstg_autre %} |
32 | <td>{% if dossier.organisme_bstg %}{{ dossier.organisme_bstg }}{% endif %} {{ dossier.organisme_bstg_autre }}</td> | |
33 | {% else %} | |
34 | <td>s/o</td> | |
35 | {% endif %} | |
61835109 OL |
36 | </tr> |
37 | </tbody> | |
38 | </table> | |
39 | </fieldset> | |
40 | ||
41 | <fieldset> | |
42 | <h2>Classement et salaire de base</h2> | |
2e6408b6 OL |
43 | |
44 | <h3>Ancien dossier <span class="info">(le cas échéant)</span></h3> | |
bae8d179 | 45 | {% if dossier.salaire_anterieur != None %} |
61835109 OL |
46 | <table> |
47 | <tbody> | |
48 | <tr> | |
49 | <td colspan="7"> | |
88a0e98d | 50 | {{ dossier.employe }} <span class="info">{{ dossier.employe.id_rh.rh_dossiers.all.0.poste.type_poste.nom }} {{ dossier.employe.id_rh.dossier_set.all.0.complement1 }}</span> |
61835109 OL |
51 | </td> |
52 | </tr> | |
53 | <tr> | |
b1baa306 OL |
54 | <th>Classement antérieur</th> |
55 | <th>Salaire antérieur</th> | |
56 | <th>Statut antérieur</th> | |
57 | <th>Type contrat</th> | |
61835109 OL |
58 | </tr> |
59 | <tr> | |
b1baa306 | 60 | <td>{{ dossier.classement_anterieur|default:"" }}</td> |
88a0e98d OL |
61 | <td class="montant">{{ dossier.salaire_anterieur|floatformat:0 }} |
62 | {{ dossier.devise_anterieur.code }} | |
63 | {% if dossier.devise_anterieur %} | |
64 | ({{ dossier.get_salaire_anterieur_euros|floatformat:0 }}€) | |
65 | {% endif %} | |
66 | </td> | |
b1baa306 | 67 | <td>{{ dossier.statut_anterieur|default:"" }}</td> |
f682e283 | 68 | <td>{{ dossier.type_contrat_anterieur|default:"" }}</td> |
61835109 | 69 | </tr> |
2e6408b6 OL |
70 | </tbody> |
71 | </table> | |
72 | {% else %} | |
f1c9329c | 73 | <p>Il n'y a pas d'ancien dossier pour cet employé</p> |
2e6408b6 OL |
74 | {% endif %} |
75 | ||
76 | <h3>Précédent titulaire <span class="info">(le cas échéant)</span></h3> | |
77 | {% if dossier.classement_titulaire_anterieur %} | |
78 | <table> | |
79 | <tbody> | |
61835109 | 80 | <tr> |
dbcd768b | 81 | <td colspan="3"> |
2e6408b6 | 82 | {{ dossier.employe_anterieur|default:"" }} |
61835109 OL |
83 | </td> |
84 | </tr> | |
85 | <tr> | |
b1baa306 | 86 | <th>Classement du titulaire antérieur</th> |
dbcd768b | 87 | <th>Salaire du titulaire antérieur</th> |
b1baa306 | 88 | <th>Statut du titulaire antérieur</th> |
61835109 OL |
89 | </tr> |
90 | <tr> | |
2e6408b6 | 91 | <td>{{ dossier.classement_titulaire_anterieur|default:"" }}</td> |
88a0e98d OL |
92 | <td class="montant">{{ dossier.salaire_titulaire_anterieur|floatformat:0 }} |
93 | {% if dossier.devise_titulaire_anterieur %} | |
94 | {{ dossier.devise_titulaire_anterieur.code }} | |
95 | ({{ dossier.get_salaire_titulaire_anterieur_euros|floatformat:0 }}€) | |
96 | {% endif %}</td> | |
2e6408b6 | 97 | <td>{{ dossier.statut_titulaire_anterieur|default:"" }}</td> |
61835109 | 98 | </tr> |
2e6408b6 OL |
99 | </tbody> |
100 | <table> | |
101 | {% else %} | |
102 | <p>Il n'y a pas de précédent titulaire</p> | |
103 | {% endif %} | |
104 | ||
105 | <h3>Proposition de classement</h3> | |
106 | <table> | |
107 | <tbody> | |
61835109 | 108 | <tr> |
b1baa306 | 109 | <th>Classement proposé</th> |
2e6408b6 | 110 | <th colspan="6">Salaire proposé</span></th> |
61835109 OL |
111 | </tr> |
112 | <tr> | |
b1baa306 | 113 | <td>{{ dossier.classement }}</td> |
71a05581 OL |
114 | <td colspan="2">{{ dossier.salaire|floatformat:0 }} {{ dossier.devise.code }}</td> |
115 | <td colspan="4" id="salaire-propose-euros" class="montant">{{ dossier.get_salaire_euros|floatformat:0 }} €</td> | |
61835109 OL |
116 | </tr> |
117 | </tbody> | |
118 | </table> | |
2e6408b6 | 119 | |
61835109 OL |
120 | </fieldset> |
121 | ||
61835109 | 122 | <fieldset> |
487de0a4 | 123 | <h2>Accès et ouvertures des comptes</h2> |
61835109 OL |
124 | <table> |
125 | <tbody> | |
126 | <tr> | |
82a13ae0 | 127 | <th>Compte comptabilité<th> |
b1baa306 OL |
128 | <td>{% if dossier.compte_compta %}oui{% else %}non{% endif %}</td> |
129 | <th>Compte courriel</th> | |
130 | <td>{% if dossier.compte_courriel %}oui{% else %}non{% endif %}</td> | |
61835109 OL |
131 | </tr> |
132 | </tbody> | |
133 | </table> | |
134 | </fieldset> | |
135 |