| 1 | {% with dossier.poste.get_devise.code as code_devise_locale %} |
| 2 | <tr> |
| 3 | <th>Type</th> |
| 4 | <th colspan="2">Devise locale</th> |
| 5 | <th colspan="2">Conversion en Euros</th> |
| 6 | <th>Précision</th> |
| 7 | </tr> |
| 8 | |
| 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 | |
| 18 | {% for remun in dossier.get_remunerations_brutes %} |
| 19 | <tr class="cout"> |
| 20 | <td>{{ remun.type }}</td> |
| 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> |
| 24 | <td class="montant">{{ remun.montant_euros }}€</td> |
| 25 | <td>{{ remun.precision }}</td> |
| 26 | </tr> |
| 27 | {% endfor %} |
| 28 | |
| 29 | <tr> |
| 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> |
| 33 | <th></th> |
| 34 | </tr> |
| 35 | |
| 36 | |
| 37 | {% for remun in dossier.get_charges_salariales %} |
| 38 | <tr class="aide"> |
| 39 | <td>{{ remun.type }}</td> |
| 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> |
| 43 | <td class="montant">{{ remun.montant_euros }}€</td> |
| 44 | <td>{{ remun.precision }}</td> |
| 45 | </tr> |
| 46 | {% endfor %} |
| 47 | |
| 48 | <tr> |
| 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> |
| 52 | <th></th> |
| 53 | </tr> |
| 54 | |
| 55 | <tr> |
| 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> |
| 59 | <th></th> |
| 60 | </tr> |
| 61 | |
| 62 | {% for remun in dossier.get_charges_patronales %} |
| 63 | <tr class="aide"> |
| 64 | <td>{{ remun.type }}</td> |
| 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> |
| 68 | <td class="montant">{{ remun.montant_euros }}€</td> |
| 69 | <td>{{ remun.precision }}</td> |
| 70 | </tr> |
| 71 | {% endfor %} |
| 72 | <tr> |
| 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> |
| 76 | <th></th> |
| 77 | </tr> |
| 78 | |
| 79 | |
| 80 | <tr> |
| 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> |
| 84 | <th></th> |
| 85 | </tr> |
| 86 | |
| 87 | |
| 88 | {% if dossier.get_remunerations_tierces %} |
| 89 | <tr> |
| 90 | <th colspan="4">Autres rémunérations</th> |
| 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> |
| 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> |
| 102 | <td class="montant">{{ remun.montant_euros }}€</td> |
| 103 | <td>{{ remun.precision }}</td> |
| 104 | </tr> |
| 105 | {% endfor %} |
| 106 | {% endwith %} |