Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

141 lines
5.7KB

  1. <?php
  2. /* @var $this yii\web\View */
  3. use yii\helpers\Html;
  4. use yii\bootstrap\ActiveForm;
  5. $this->title = 'Commande' ;
  6. ?>
  7. <div id="index-commande">
  8. <h1 class="title-systeme-commande"><span class="glyphicon glyphicon-th-list"></span> Tableau de bord</h1>
  9. <h2>Boulangeries</h2>
  10. <?php if($commande_ok): ?>
  11. <div class="alert alert-success">
  12. <div class="icon"></div>
  13. Votre commande a bien été prise en compte.
  14. </div>
  15. <?php endif; ?>
  16. <?php if($annule_ok): ?>
  17. <div class="alert alert-success"><div class="icon"></div>Votre commande a bien été annulée.</div>
  18. <?php endif; ?>
  19. <div id="liste-boulangeries">
  20. <?=
  21. $this->render('_liste_etablissements.php',[
  22. 'etablissements' => $etablissements,
  23. 'context' => 'index'
  24. ]) ;
  25. ?>
  26. <div class="col-md-6" id="bloc-add-etablissement">
  27. <div class="panel panel-default">
  28. <div class="panel-heading">
  29. <h3 class="panel-title"><span class="glyphicon glyphicon-plus"></span> Ajouter une boulangerie</h3>
  30. </div>
  31. <div class="panel-body">
  32. <?php $form = ActiveForm::begin(['id' => 'form-add-boulanger','enableClientValidation'=> false]); ?>
  33. <?= $form->field($model_form_etablissement, 'id_etablissement')
  34. ->label('')
  35. ->dropDownList($data_etablissements_dispos,
  36. ['prompt' => '--',
  37. 'encode' => false,
  38. 'options' => $options_etablissements_dispos
  39. ]) ; ?>
  40. <div id="bloc-code-acces">
  41. <?= $form->field($model_form_etablissement, 'code',[
  42. 'inputTemplate' => '<div class="input-group"><span class="input-group-addon"><span class="glyphicon glyphicon-lock"></span></span>{input}</div>',
  43. ])
  44. ->label('Code')
  45. ->hint('Renseignez-vous auprès de votre boulangerie pour qu\'elle vous fournisse le code d\'accès') ; ?>
  46. </div>
  47. <?= Html::submitButton('<span class="glyphicon glyphicon-plus"></span> Valider', ['class' => 'btn btn-default', 'name' => 'add-etablissement-button']) ?>
  48. <?php ActiveForm::end(); ?>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="clr"></div>
  53. </div>
  54. <h2>Historique</h2>
  55. <?php if(count($commandes)): ?>
  56. <p>Retrouvez ici vos dernières commandes.</p>
  57. <table id="historique-commandes" class="table table-striped table-bordered">
  58. <thead>
  59. <tr>
  60. <th>Boulangerie</th>
  61. <th>Date livraison</th>
  62. <th>Résumé</th>
  63. <th>Lieu</th>
  64. <th class="montant">Montant</th>
  65. <th class="statut"></th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. <?php foreach($commandes as $c): ?>
  70. <tr>
  71. <td><?= Html::encode($c->production->etablissement->nom) ?></td>
  72. <td><?php echo date('d/m/Y',strtotime($c->production->date)); ?></td>
  73. <td class="resume"><?php
  74. $count = count($c->commandeProduits);
  75. $i = 0;
  76. foreach($c->commandeProduits as $p): ?>
  77. <?php if(isset($p->produit)): ?>
  78. <?php if($p->produit->vrac): ?>
  79. <?php echo $p->quantite; ?>g de <?php echo Html::encode($p->produit->nom) ; ?><?php if(++$i != $count): ?>, <?php endif; ?>
  80. <?php else: ?>
  81. <?php echo $p->quantite; ?> x <?php echo Html::encode($p->produit->nom) ; ?><?php if(++$i != $count): ?>, <?php endif; ?>
  82. <?php endif; ?>
  83. <?php endif; ?>
  84. <?php endforeach; ?></td>
  85. <td><?php echo '<span class="nom-point-vente">'.Html::encode($c->pointVente->nom) .'</span><br /><span class="localite">'.Html::encode($c->pointVente->localite).'</span>' ; ?></td>
  86. <td class="montant"><?php echo number_format($c->montant,2) ; ?> €</td>
  87. <td class="statut">
  88. <?php
  89. if(date('H') > 20) {
  90. $date_limite = date('Y-m-d',strtotime(date('Y-m-d')) + 60*60*24) ;
  91. }
  92. else {
  93. $date_limite = date('Y-m-d') ;
  94. }
  95. ?>
  96. <?php if($c->production->date < date('Y-m-d') || ($c->production->date == date('Y-m-d') && date('H') > 13)): ?>Livrée
  97. <?php elseif($c->production->date <= $date_limite): ?>En cours de préparation
  98. <?php else: ?>
  99. <div class="btn-group">
  100. <a href="<?php echo Yii::$app->urlManager->createUrl(['commande/update','id'=>$c->id, 'id_etablissement'=>$c->production->etablissement->id]) ; ?>" class="btn btn-default"><span class="glyphicon glyphicon-pencil"></span> Modifier</a>
  101. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
  102. <span class="caret"></span>
  103. <span class="sr-only">Toggle Dropdown</span>
  104. </button>
  105. <ul class="dropdown-menu" role="menu">
  106. <li><a href="<?php echo Yii::$app->urlManager->createUrl(['commande/annuler','id'=>$c->id]) ; ?>"><span class="glyphicon glyphicon-trash"></span> Annuler la commande</a></li>
  107. </ul>
  108. </div>
  109. <?php endif; ?>
  110. </td>
  111. </tr>
  112. <?php endforeach; ?>
  113. </tbody>
  114. </table>
  115. <?php else: ?>
  116. <div class="alert alert-info">Vous n'avez pas encore passé de commandes</div>
  117. <?php endif; ?>
  118. </div>