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