| 1 | <html> |
| 2 | |
| 3 | <head> |
| 4 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pdf.css" /> |
| 5 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
| 6 | <style>{{ css }}</style> |
| 7 | </head> |
| 8 | |
| 9 | <body> |
| 10 | <h1>Demandes d'autorisation d'engagement de personnel</h1> |
| 11 | |
| 12 | <h2 class="section">SECTION 1 - POSTE</h2> |
| 13 | {% with dossier.poste as poste %} |
| 14 | {% include 'dae/poste_resume.html' %} |
| 15 | {% endwith %} |
| 16 | |
| 17 | <h2 class="section">SECTION 2 - PERSONNEL ENGAGÉ</h2> |
| 18 | <fieldset> |
| 19 | <div> |
| 20 | <div class="gauche"><h2>Personne</h2></div> |
| 21 | <div class="droite"> |
| 22 | <table class="droite"> |
| 23 | <tbody> |
| 24 | <tr> |
| 25 | <th>Mobilité interne</th> |
| 26 | <td colspan="3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %} |
| 27 | </tr> |
| 28 | </tbody> |
| 29 | </table> |
| 30 | </div> |
| 31 | </div> |
| 32 | <div class="clear"></div> |
| 33 | <table id="form-employe"> |
| 34 | <tbody> |
| 35 | <tr> |
| 36 | <th>Employé</th> |
| 37 | <td>{{ dossier.employe }}</td> |
| 38 | </tr> |
| 39 | </tbody> |
| 40 | </table> |
| 41 | |
| 42 | </fieldset> |
| 43 | |
| 44 | <fieldset> |
| 45 | <h2>Comparaison salariale</h2> |
| 46 | <span class="info">dans la région pour les employés occupant un poste similaire</span> |
| 47 | <table> |
| 48 | <tbody> |
| 49 | <tr> |
| 50 | <th>Implantation</th> |
| 51 | <th>Employé</th> |
| 52 | <th>Poste</th> |
| 53 | <th>Salaire</th> |
| 54 | <th>Salaire EUR</th> |
| 55 | </tr> |
| 56 | {% for dc in dossier.comparaisons.all %} |
| 57 | <tr> |
| 58 | <td>{{ dc.implantation }}</td> |
| 59 | <td>{{ dc.personne }}</td> |
| 60 | <td>{{ dc.poste }}</td> |
| 61 | <td>{{ dc.montant }} {{ dc.devise }}</td> |
| 62 | <td>{{ dc.montant_euros }} EUR</td> |
| 63 | </tr> |
| 64 | {% endfor %} |
| 65 | </tbody> |
| 66 | </table> |
| 67 | </fieldset> |
| 68 | |
| 69 | |
| 70 | <div id="form-dossier"> |
| 71 | {% comment %}Wrapper du formulaire de dossier{% endcomment %} |
| 72 | {% include "dae/embauche-dossier-consulter.html" %} |
| 73 | </div> |
| 74 | |
| 75 | <fieldset> |
| 76 | <h2>Pièces jointes</h2> |
| 77 | <ul> |
| 78 | {% for pj in dossier.dossierpiece_set.all %} |
| 79 | <li><a href="{{ pj.fichier.url }}" target="_blank">{{ pj.nom }}</a></li> |
| 80 | {% endfor %} |
| 81 | </ul> |
| 82 | |
| 83 | </fieldset> |
| 84 | |
| 85 | <h2 class="section">SECTION 3 - COÛT GLOBAL</h2> |
| 86 | |
| 87 | <fieldset> |
| 88 | <table cellspacing="0" id="global-cost"> |
| 89 | {% include 'dae/embauche-remun-consulter.html' %} |
| 90 | </table> |
| 91 | </fieldset> |
| 92 | |
| 93 | <h2 class="section">SECTION 4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)</h2> |
| 94 | <h3>A - Justification du poste</h3> |
| 95 | <p>{{ poste.justification }}</p> |
| 96 | |
| 97 | <h3>B - Justification de l'employé</h3> |
| 98 | <p class="info">Les questions posées pour la justification apparaîtront après avoir enregistré le dossier.</p> |
| 99 | <table> |
| 100 | <tbody> |
| 101 | <tr> |
| 102 | <th>NOUVEL EMPLOYÉ</th> |
| 103 | <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE</th> |
| 104 | </tr> |
| 105 | <tr> |
| 106 | <td> |
| 107 | {% for j in dossier.justificationnouvelemploye_set.all %} |
| 108 | <h4>{{ j.question }}</h4> |
| 109 | <p>{{ j.reponse }}</p> |
| 110 | {% endfor %} |
| 111 | </td> |
| 112 | <td> |
| 113 | {% for j in dossier.justificationautreemploye_set.all %} |
| 114 | <h4>{{ j.question }}</h4> |
| 115 | <p>{{ j.reponse }}</p> |
| 116 | {% endfor %} |
| 117 | </td> |
| 118 | </tr> |
| 119 | </tbody> |
| 120 | </table> |
| 121 | |
| 122 | <fieldset> |
| 123 | <h2>Validation</h2> |
| 124 | |
| 125 | <ul> |
| 126 | {% for commentaire in dossier.historique_desc %} |
| 127 | <li>{{ commentaire }}</li> |
| 128 | {% endfor %} |
| 129 | </ul> |
| 130 | </fieldset> |
| 131 | |
| 132 | <fieldset> |
| 133 | <h2>Signatures</h2> |
| 134 | |
| 135 | <p class="signature"> ____________________________________________________________</p> |
| 136 | <p class="signature"> ____________________________________________________________</p> |
| 137 | <p class="signature"> ____________________________________________________________</p> |
| 138 | </fieldset> |
| 139 | |
| 140 | </body> |
| 141 | </html> |