You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 4.1KB

8 years ago
8 years ago
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. /* @var $this yii\web\View */
  3. use yii\helpers\Html;
  4. $this->title = 'Commande' ;
  5. ?>
  6. <div id="index-commande">
  7. <h1 class="title-systeme-commande"><img class="icon" src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/order.png" alt="" /> Tableau de bord</h1>
  8. <h2>Boulangeries</h2>
  9. <?php if(count($boulangeries)): ?>
  10. <ul>
  11. <?php foreach($boulangeries as $b): ?>
  12. <li><?php echo Html::encode($b['nom_magasin']); ?></li>
  13. <?php endforeach; ?>
  14. </ul>
  15. <?php else: ?>
  16. <div class="alert alert-info">Aucune boulangerie</div>
  17. <?php endif; ?>
  18. <!--<div class="accueil">
  19. <a class="btn btn-primary btn-lg" href="<?php echo Yii::$app->urlManager->createUrl(['commande/create']); ?>">Passer une commande</a>
  20. </div>-->
  21. <h2>Historique</h2>
  22. <?php if(count($commandes)): ?>
  23. <p>Retrouvez ici vos dernières commandes.</p>
  24. <?php if($commande_ok): ?>
  25. <div class="alert alert-success">
  26. <div class="icon"></div>
  27. Votre commande a bien été prise en compte !
  28. <?php if($pate_deja_petrie): ?>
  29. <br /><strong>Cette fournée étant déjà pétrie, la livraison se fera suivant les stocks disponibles. Merci pour votre compréhension.</strong>
  30. <?php endif; ?>
  31. </div>
  32. <?php endif; ?>
  33. <?php if($annule_ok): ?>
  34. <div class="alert alert-success"><div class="icon"></div>Votre commande a bien été annulée.</div>
  35. <?php endif; ?>
  36. <table id="historique-commandes" class="table table-striped table-bordered">
  37. <thead>
  38. <tr>
  39. <!-- <th>Date commande</th> -->
  40. <th>Date livraison</th>
  41. <th>Résumé</th>
  42. <th>Lieu</th>
  43. <th class="montant">Montant</th>
  44. <th class="statut"></th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <?php foreach($commandes as $c): ?>
  49. <tr>
  50. <!-- <td><?php echo date('d/m/Y',strtotime($c->date)); ?></td> -->
  51. <td><?php echo date('d/m/Y',strtotime($c->production->date)); ?></td>
  52. <td class="resume"><?php
  53. $count = count($c->commandeProduits);
  54. $i = 0;
  55. foreach($c->commandeProduits as $p): ?>
  56. <?php if($p->produit->vrac): ?>
  57. <?php echo $p->quantite; ?>g de <?php echo Html::encode($p->produit->nom) ; ?><?php if(++$i != $count): ?>, <?php endif; ?>
  58. <?php else: ?>
  59. <?php echo $p->quantite; ?> x <?php echo Html::encode($p->produit->nom) ; ?><?php if(++$i != $count): ?>, <?php endif; ?>
  60. <?php endif; ?>
  61. <?php endforeach; ?></td>
  62. <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>
  63. <td class="montant"><?php echo number_format($c->montant,2) ; ?> €</td>
  64. <td class="statut">
  65. <?php
  66. if(date('H') > 20) {
  67. $date_limite = date('Y-m-d',strtotime(date('Y-m-d')) + 60*60*24) ;
  68. }
  69. else {
  70. $date_limite = date('Y-m-d') ;
  71. }
  72. ?>
  73. <?php if($c->production->date < date('Y-m-d') || ($c->production->date == date('Y-m-d') && date('H') > 13)): ?>Livrée
  74. <?php elseif($c->production->date <= $date_limite): ?>En cours de préparation
  75. <?php else: ?>
  76. <!-- <a href="<?php echo Yii::$app->urlManager->createUrl(['commande/update','id'=>$c->id]) ; ?>" class="btn btn-default"><span class="glyphicon glyphicon-pencil"></span> Modifier</a>-->
  77. <div class="btn-group">
  78. <a href="<?php echo Yii::$app->urlManager->createUrl(['commande/update','id'=>$c->id]) ; ?>" class="btn btn-default"><span class="glyphicon glyphicon-pencil"></span> Modifier</a>
  79. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
  80. <span class="caret"></span>
  81. <span class="sr-only">Toggle Dropdown</span>
  82. </button>
  83. <ul class="dropdown-menu" role="menu">
  84. <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>
  85. </ul>
  86. </div>
  87. <?php endif; ?>
  88. </td>
  89. </tr>
  90. <?php endforeach; ?>
  91. </tbody>
  92. </table>
  93. <?php else: ?>
  94. <p>Vous n'avez pas encore passé de commandes</p>
  95. <?php endif; ?>
  96. </div>