templates/abscence_sheet/new.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/backEndLayout.html.twig' %}
  2. {% block content %}
  3.             {% form_theme form 'bootstrap_4_layout.html.twig' %}
  4.               <div class="col-12 jumbotron" >
  5.                
  6.                      <div class="row mt-4  mx-auto box-shadow">
  7.                         <div class="card-header">
  8.                                         <h3 class="my-0 text-center text-justify text-uppercase">  Nouvelle fiche d'abscences</h3>
  9.                         </div>
  10.                         <div class="mt-4 col-md-12 col-sm-12 table-responsive">
  11.                             <div class="row">
  12.                                 <div class="col-3   table-responsive"></div>
  13.                                 <div class="col-6  table-responsive">
  14.                                     {{ form_start(form, {action: path('admin_abscences_sheet_create'),'attr': { 'class':'evaluation'} }) }}
  15.                                     <p>
  16.                                         {{ form_widget(form.sequence ,{'attr':{'class':'ChoiceSequence'} } ) }}
  17.                                     </p>
  18.                                     <p>
  19.                                         {{ form_widget(form.classRoom,{'attr':{ 'name' :'ChoiceClassRoom'} }) }}
  20.                                     </p>
  21.                                    <div class="row">
  22.                                         <div class="col-6">
  23.                                         {{ form_widget(form.startDate,{'attr':{ 'name' :'StartDate'} }) }}
  24.                                         </div>
  25.                                         <div class="col-6">
  26.                                          {{ form_widget(form.endDate,{'attr':{ 'name' :'EndDate'} }) }}
  27.                                          </div>
  28.                                     </div>
  29.                                     
  30.                                 </div>
  31.                                 <div class="col-3  table-responsive"></div>
  32.                             </div>
  33.                         </div>
  34.                         <div id="ficheBodyStudents" class=" col-md-12  row">
  35.                             {% include "abscence_sheet/liststudents.html.twig" %}
  36.                         </div>
  37.                     </div>
  38.                     <div class="row mt-2 mx-auto">
  39.                             <div class=" col-3">
  40.                             </div>
  41.                             <div class=" col-3 mx-auto btn-group d-inline-flex p-2 bd-highlight">
  42.                                 <button class="btn btn-danger" type="submit">
  43.                                     <b>
  44.                                         <i class="fa fa-balance-scale"></i>submit</b>
  45.                                 </button>
  46.                             </div>
  47.                             <div class="  col-3 mx-auto btn-group d-inline-flex p-2 bd-highligh">
  48.                                 <a class="btn btn-info" href="{{ path('admin_abscences_sheet_index') }}">
  49.                                     <i class="fa fa-list"></i>
  50.                                     {{ 'Back to the list'|trans({}, 'admin') }}
  51.                                 </a>
  52.                                 
  53.                             </div>
  54.                             <div class=" col-3">
  55.                             </div>
  56.                     </div>
  57.                 
  58.             {{ form_end(form) }}
  59.         </div>
  60.                 
  61. {% endblock %}
  62. {% block footer %}
  63.     {{ parent() }}
  64. {% endblock %}
  65. {% block javascripts %}
  66.     {{parent()}}
  67.     <script type="text/javascript">
  68.             
  69.         var classRoom = $("#abscence_sheet_classRoom");
  70.             var idClassRoom, idSequence=$("#abscence_sheet_sequence").val(), startDate, endDate;
  71.             
  72.             classRoom.change(function () {
  73.                 idClassRoom = $("#abscence_sheet_classRoom option:selected").val();
  74.                 $.ajax({
  75.                     type: "POST",
  76.                     url: "{{ path('admin_abscence_list_students') }}",
  77.                     data: {
  78.                     idClassRoom: idClassRoom
  79.                     },
  80.                     datatype: "json",
  81.                     success: function (data) {
  82.                         $("#ficheBodyStudents").html(data).show();
  83.                     }
  84.                 });
  85.             });
  86.             $("#abscence_sheet_sequence").change(function () {
  87.                 idSequence = $(this).val();
  88.             });
  89.             $("#abscence_sheet_startDate").change(function () {
  90.                 startDate = $(this).val();
  91.             });
  92.             $("#abscence_sheet_endDate").change(function () {
  93.                 endDate = $(this).val();
  94.             });
  95.             
  96.         $(function () {
  97.             $(document).on('submit', 'form', function (e) { // il est impératif de commencer avec cette méthode qui va empêcher le navigateur d'envoyer le formulaire lui-même
  98.             e.preventDefault();
  99.             console.log(idClassRoom, idSequence, startDate, endDate);
  100.             var abscencesJson = [];
  101.             if(startDate < endDate) {
  102.                     $("input[max=180]").each(function (index) {
  103.                         abscencesJson.push({"matricule": $(this).attr('id'), "weight": $(this).val(), "raison": $(this).parent().next().children().val()});
  104.                     });
  105.                     console.log(abscencesJson);
  106.                     postData = {
  107.                         "abscences": JSON.stringify(abscencesJson),
  108.                         "idRoom": idClassRoom,
  109.                         "idSequence": idSequence,
  110.                         "startDate": startDate,
  111.                         "endDate": endDate
  112.                     };
  113.                 if(abscencesJson.length>0){
  114.                 $.ajax({
  115.                     type: "POST",
  116.                     url: "{{ path('admin_abscences_sheet_create') }}",
  117.                     data: postData,
  118.                     datatype: "json",
  119.                     success: function (data) {
  120.                         alert("Enregistre avec succes.");
  121.                     },
  122.                     error: function (e) {
  123.                         console.log(e.message);
  124.                         alert("Echec.");
  125.                     }
  126.                     });
  127.                 } else {
  128.                     alert("Aucune abscence enregistree");
  129.                 }
  130.             
  131.             } else {
  132.                 alert("La date de debut doit etre anterieure a la date de fin");
  133.             }
  134.         });
  135.         });
  136.              
  137.      
  138.         
  139.     </script>
  140. {% endblock javascripts %}