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ů.

117 lines
5.2KB

  1. <?php
  2. /* @var $this yii\web\View */
  3. use yii\helpers\Html;
  4. use yii\bootstrap\ActiveForm;
  5. use common\models\Commande ;
  6. $this->title = 'Commande' ;
  7. ?>
  8. <div id="index-commande">
  9. <?php if($commande_ok): ?>
  10. <div class="alert alert-success">
  11. <div class="icon"></div>
  12. Votre commande a bien été prise en compte.
  13. </div>
  14. <?php endif; ?>
  15. <?php if($annule_ok): ?>
  16. <div class="alert alert-success"><div class="icon"></div>Votre commande a bien été annulée.</div>
  17. <?php endif; ?>
  18. <div id="liste-boulangeries">
  19. <?=
  20. $this->render('_liste_etablissements.php',[
  21. 'etablissements' => $etablissements,
  22. 'context' => 'index'
  23. ]) ;
  24. ?>
  25. <div class="col-md-6" id="bloc-add-etablissement">
  26. <div class="panel panel-default">
  27. <div class="panel-heading">
  28. <h3 class="panel-title"><span class="glyphicon glyphicon-plus"></span> Ajouter un producteur</h3>
  29. </div>
  30. <div class="panel-body">
  31. <?php $form = ActiveForm::begin(['id' => 'form-add-boulanger','enableClientValidation'=> false]); ?>
  32. <?= $form->field($model_form_etablissement, 'id_etablissement')
  33. ->label('')
  34. ->dropDownList($data_etablissements_dispos,
  35. ['prompt' => '--',
  36. 'encode' => false,
  37. 'options' => $options_etablissements_dispos
  38. ]) ; ?>
  39. <div id="bloc-code-acces">
  40. <?= $form->field($model_form_etablissement, 'code',[
  41. 'inputTemplate' => '<div class="input-group"><span class="input-group-addon"><span class="glyphicon glyphicon-lock"></span></span>{input}</div>',
  42. ])
  43. ->label('Code')
  44. ->hint('Renseignez-vous auprès de votre producteur pour qu\'il vous fournisse le code d\'accès') ; ?>
  45. </div>
  46. <?= Html::submitButton('<span class="glyphicon glyphicon-plus"></span> Valider', ['class' => 'btn btn-default', 'name' => 'add-etablissement-button']) ?>
  47. <?php ActiveForm::end(); ?>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="clr"></div>
  52. </div>
  53. <h2 class="first">Historique</h2>
  54. <?php if(count($commandes)): ?>
  55. <p>Retrouvez ici vos dernières commandes.</p>
  56. <table id="historique-commandes" class="table table-striped table-bordered">
  57. <thead>
  58. <tr>
  59. <th>Producteur</th>
  60. <th>Date livraison</th>
  61. <th>Résumé</th>
  62. <th>Lieu</th>
  63. <th class="montant">Montant</th>
  64. <th class="statut"></th>
  65. </tr>
  66. </thead>
  67. <tbody>
  68. <?php foreach($commandes as $c): ?>
  69. <tr>
  70. <td><?= Html::encode($c->production->etablissement->nom) ?></td>
  71. <td><?php echo date('d/m/Y',strtotime($c->production->date)); ?></td>
  72. <td class="resume"><?= $c->getResumePanier() ; ?></td>
  73. <td><?= $c->getResumePointVente(); ?></td>
  74. <td class="montant"><?= $c->getResumeMontant(); ?></td>
  75. <td class="statut">
  76. <?php if($c->getEtat() == Commande::ETAT_LIVREE): ?>
  77. Livrée
  78. <?php elseif($c->getEtat() == Commande::ETAT_PREPARATION): ?>
  79. En préparation
  80. <?php elseif($c->getEtat() == Commande::ETAT_MODIFIABLE): ?>
  81. <div class="btn-group">
  82. <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>
  83. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
  84. <span class="caret"></span>
  85. <span class="sr-only">Toggle Dropdown</span>
  86. </button>
  87. <ul class="dropdown-menu" role="menu">
  88. <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>
  89. </ul>
  90. </div>
  91. <?php endif; ?>
  92. </td>
  93. </tr>
  94. <?php endforeach; ?>
  95. </tbody>
  96. </table>
  97. <?php else: ?>
  98. <div class="alert alert-info">Vous n'avez pas encore passé de commandes</div>
  99. <?php endif; ?>
  100. </div>