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 | ||
10 | <tr> | |
bf6fbbcf OL |
11 | <th colspan="5">Salaire brut</th> |
12 | <th id="sous-total-cout" class="montant">{{ dossier.get_salaire_brut|floatformat:0 }}€</th> | |
c03cfcd8 | 13 | <th></th> |
a9e52624 | 14 | </tr> |
9cab61eb | 15 | |
a9e52624 | 16 | |
bf6fbbcf | 17 | {% for remun in dossier.get_remunerations_brutes %} |
a9e52624 OL |
18 | <tr class="cout"> |
19 | <td>{{ remun.type }}</td> | |
20 | <td>{{ remun.devise }}</td> | |
5cbf3ffc OL |
21 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> |
22 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
23 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
24 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
a9e52624 OL |
25 | <td>{{ remun.precision }}</td> |
26 | </tr> | |
27 | {% endfor %} | |
28 | ||
29 | <tr> | |
bf6fbbcf OL |
30 | <th colspan="5">Charges salariales</th> |
31 | <th id="sous-total-aide" class="montant">{{ dossier.get_total_charges_salariales|floatformat:0 }}€</th> | |
c03cfcd8 | 32 | <th></th> |
a9e52624 OL |
33 | </tr> |
34 | ||
bf6fbbcf OL |
35 | {% for remun in dossier.get_charges_salariales %} |
36 | <tr class="aide"> | |
37 | <td>{{ remun.type }}</td> | |
38 | <td>{{ remun.devise }}</td> | |
39 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> | |
40 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
41 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
42 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
43 | <td>{{ remun.precision }}</td> | |
44 | </tr> | |
45 | {% endfor %} | |
46 | ||
47 | <tr> | |
48 | <th colspan="5">Charges patronales</th> | |
49 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_charges_patronales|floatformat:0 }}€</th> | |
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 %} | |
64 | ||
65 | <tr> | |
bf6fbbcf OL |
66 | <th colspan="5">Côuts AUF</th> |
67 | <th id="sous-total-cout" class="montant">{{ dossier.get_couts_auf|floatformat:0 }}€</th> | |
c03cfcd8 | 68 | <th></th> |
a9e52624 | 69 | </tr> |
bf6fbbcf OL |
70 | |
71 | ||
72 | {% if dossier.get_remunerations_tierces %} | |
73 | <tr> | |
74 | <th colspan="5">Autres rémunérations</th> | |
75 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_remunerations_tierces|floatformat:0 }}€</th> | |
76 | <th></th> | |
77 | </tr> | |
78 | {% endif %} | |
79 | ||
80 | {% for remun in dossier.get_remunerations_tierces %} | |
81 | <tr class="aide"> | |
82 | <td>{{ remun.type }}</td> | |
83 | <td>{{ remun.devise }}</td> | |
84 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> | |
85 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
86 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
87 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
88 | <td>{{ remun.precision }}</td> | |
89 | </tr> | |
90 | {% endfor %} | |
91 |