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