Commit | Line | Data |
---|---|---|
552d0db7 | 1 | {% with dossier.poste.get_devise.code as code_devise_locale %} |
a9e52624 OL |
2 | <tr> |
3 | <th>Type</th> | |
24481672 | 4 | <th colspan="2">Devise locale</th> |
a9e52624 OL |
5 | <th colspan="2">Conversion en Euros</th> |
6 | <th>Précision</th> | |
7 | </tr> | |
8 | ||
24481672 OL |
9 | <tr> |
10 | <th></th> | |
11 | <th>Mensuel</th> | |
12 | <th>Annuel</th> | |
13 | <th>Mensuel</th> | |
14 | <th>Annuel</th> | |
15 | <th></th> | |
16 | </tr> | |
17 | ||
bf6fbbcf | 18 | {% for remun in dossier.get_remunerations_brutes %} |
a9e52624 OL |
19 | <tr class="cout"> |
20 | <td>{{ remun.type }}</td> | |
24481672 OL |
21 | <td class="montant">{{ remun.montant_mois|floatformat:0 }} {{ remun.devise.code }}</td> |
22 | <td class="montant">{{ remun.montant|floatformat:0 }} {{ remun.devise.code }}</td> | |
23 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}€</td> | |
e84c8ef1 | 24 | <td class="montant">{{ remun.montant_euros }}€</td> |
a9e52624 OL |
25 | <td>{{ remun.precision }}</td> |
26 | </tr> | |
27 | {% endfor %} | |
28 | ||
29 | <tr> | |
552d0db7 OL |
30 | <th colspan="2">Salaire brut</th> |
31 | <th class="montant">{{ dossier.get_local_salaire_brut|floatformat:0 }} {{code_devise_locale }}</th> | |
32 | <th colspan="2" id="sous-total-cout" class="montant">{{ dossier.get_salaire_brut|floatformat:0 }}€</th> | |
c03cfcd8 | 33 | <th></th> |
a9e52624 OL |
34 | </tr> |
35 | ||
dcaf1398 | 36 | |
bf6fbbcf OL |
37 | {% for remun in dossier.get_charges_salariales %} |
38 | <tr class="aide"> | |
39 | <td>{{ remun.type }}</td> | |
24481672 OL |
40 | <td class="montant">{{ remun.montant_mois|floatformat:0 }} {{ remun.devise.code }}</td> |
41 | <td class="montant">{{ remun.montant|floatformat:0 }} {{ remun.devise.code }}</td> | |
42 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}€</td> | |
e84c8ef1 | 43 | <td class="montant">{{ remun.montant_euros }}€</td> |
bf6fbbcf OL |
44 | <td>{{ remun.precision }}</td> |
45 | </tr> | |
46 | {% endfor %} | |
47 | ||
48 | <tr> | |
552d0db7 OL |
49 | <th colspan="2">Charges salariales</th> |
50 | <th class="montant">{{ dossier.get_total_local_charges_salariales|floatformat:0 }} {{code_devise_locale }}</th> | |
51 | <th colspan="2" id="sous-total-aide" class="montant">{{ dossier.get_total_charges_salariales|floatformat:0 }}€</th> | |
dcaf1398 OL |
52 | <th></th> |
53 | </tr> | |
54 | ||
55 | <tr> | |
552d0db7 OL |
56 | <th colspan="2">Salaire net</th> |
57 | <th class="montant">{{ dossier.get_local_salaire_net|floatformat:0 }} {{code_devise_locale }}</th> | |
58 | <th colspan="2" id="sous-total-aide" class="montant">{{ dossier.get_salaire_net|floatformat:0 }}€</th> | |
bf6fbbcf OL |
59 | <th></th> |
60 | </tr> | |
61 | ||
62 | {% for remun in dossier.get_charges_patronales %} | |
a9e52624 OL |
63 | <tr class="aide"> |
64 | <td>{{ remun.type }}</td> | |
24481672 OL |
65 | <td class="montant">{{ remun.montant_mois|floatformat:0 }} {{ remun.devise.code }}</td> |
66 | <td class="montant">{{ remun.montant|floatformat:0 }} {{ remun.devise.code }}</td> | |
67 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}€</td> | |
e84c8ef1 | 68 | <td class="montant">{{ remun.montant_euros }}€</td> |
a9e52624 OL |
69 | <td>{{ remun.precision }}</td> |
70 | </tr> | |
71 | {% endfor %} | |
dcaf1398 | 72 | <tr> |
552d0db7 OL |
73 | <th colspan="2">Charges patronales</th> |
74 | <th class="montant">{{ dossier.get_total_local_charges_patronales|floatformat:0 }} {{code_devise_locale }}</th> | |
75 | <th colspan="2" id="sous-total-cout" class="montant">{{ dossier.get_total_charges_patronales|floatformat:0 }}€</th> | |
dcaf1398 OL |
76 | <th></th> |
77 | </tr> | |
78 | ||
a9e52624 OL |
79 | |
80 | <tr> | |
552d0db7 OL |
81 | <th colspan="2">Côuts AUF</th> |
82 | <th class="montant">{{ dossier.get_local_couts_auf|floatformat:0 }} {{code_devise_locale }}</th> | |
83 | <th colspan="2" id="sous-total-cout" class="montant">{{ dossier.get_couts_auf|floatformat:0 }}€</th> | |
c03cfcd8 | 84 | <th></th> |
a9e52624 | 85 | </tr> |
bf6fbbcf OL |
86 | |
87 | ||
88 | {% if dossier.get_remunerations_tierces %} | |
89 | <tr> | |
24481672 | 90 | <th colspan="4">Autres rémunérations</th> |
bf6fbbcf OL |
91 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_remunerations_tierces|floatformat:0 }}€</th> |
92 | <th></th> | |
93 | </tr> | |
94 | {% endif %} | |
95 | ||
96 | {% for remun in dossier.get_remunerations_tierces %} | |
97 | <tr class="aide"> | |
98 | <td>{{ remun.type }}</td> | |
24481672 OL |
99 | <td class="montant">{{ remun.montant_mois|floatformat:0 }} {{ remun.devise.code }}</td> |
100 | <td class="montant">{{ remun.montant|floatformat:0 }} {{ remun.devise.code }}</td> | |
101 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}€</td> | |
e84c8ef1 | 102 | <td class="montant">{{ remun.montant_euros }}€</td> |
bf6fbbcf OL |
103 | <td>{{ remun.precision }}</td> |
104 | </tr> | |
105 | {% endfor %} | |
552d0db7 | 106 | {% endwith %} |