Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

91 rinda
4.2KB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. use common\models\CreditHistorique;
  5. use common\models\Etablissement;
  6. $this->title = 'Créditer <small>'.Html::encode($user->nom.' '.$user->prenom).'</small>';
  7. $this->params['breadcrumbs'][] = ['label' => 'Utilisateurs', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = ['label' => Html::encode($user->nom.' '.$user->prenom)];
  9. $this->params['breadcrumbs'][] = 'Créditer';
  10. ?>
  11. <div class="user-credit">
  12. <?php
  13. $etablissement = Etablissement::find()
  14. ->where(['id' => Yii::$app->user->identity->id])
  15. ->one() ;
  16. if(!$etablissement->credit_pain)
  17. {
  18. echo '<div class="alert alert-warning">Attention, la fonctionnalité <strong>Crédit Pain</strong> est désactivée dans vos <a href="'.Yii::$app->urlManager->createurl(['etablissement/update']).'">paramètres</a>.'
  19. . ' Pensez à l\'activer si vous souhaitez qu\'elle soit visible de vos clients.</div>' ;
  20. }
  21. ?>
  22. <div class="col-md-12">
  23. <h1><?= $this->title ?></h1>
  24. <?php $form = ActiveForm::begin(); ?>
  25. <?= $form->field($credit_historique, 'montant')->textInput() ?>
  26. <?= $form->field($credit_historique, 'moyen_paiement')->dropDownList([
  27. CreditHistorique::MOYEN_ESPECES => 'Espèces',
  28. CreditHistorique::MOYEN_CB => 'Carte bancaire',
  29. CreditHistorique::MOYEN_CHEQUE => 'Chèque',
  30. ]) ?>
  31. <div class="form-group">
  32. <?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?>
  33. </div>
  34. <?php ActiveForm::end(); ?>
  35. </div>
  36. <div class="col-md-12">
  37. <h2>Historique</h2>
  38. <table class="table table-bordered">
  39. <thead>
  40. <tr>
  41. <th>Date</th>
  42. <th>Type</th>
  43. <th>Montant</th>
  44. <th>Paiement</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <?php if(count($historique)): ?>
  49. <?php foreach($historique as $ch): ?>
  50. <tr>
  51. <td><?= date('d/m/Y à H:i:s',strtotime($ch->date)) ?></td>
  52. <td>
  53. <?php if($ch->type == CreditHistorique::TYPE_CREDIT_INITIAL): ?>Crédit initial<?php endif; ?>
  54. <?php if($ch->type == CreditHistorique::TYPE_CREDIT): ?>Crédit<?php endif; ?>
  55. <?php if($ch->type == CreditHistorique::TYPE_PAIEMENT): ?>
  56. Paiement commande
  57. <?php if(isset($ch->commande)): ?>
  58. du <?= date('d/m/Y',strtotime($ch->commande->date)) ?>
  59. <?php else: ?>
  60. (supprimée)
  61. <?php endif; ?>
  62. <?php endif; ?>
  63. <?php if($ch->type == CreditHistorique::TYPE_REMBOURSEMENT): ?>Remboursement commande <?php if(isset($ch->commande)): ?>du <?= date('d/m/Y',strtotime($ch->commande->date)) ?><?php else: ?>(supprimée)<?php endif; ?><?php endif; ?>
  64. </td>
  65. <td>
  66. <?= $ch->montant ; ?> €
  67. </td>
  68. <td>
  69. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_ESPECES): ?>Espèces<?php endif; ?>
  70. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CB): ?>Carte bancaire<?php endif; ?>
  71. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CHEQUE): ?>Chèque<?php endif; ?>
  72. <?php if(!$ch->moyen_paiement): ?>Crédit pain<?php endif; ?>
  73. </td>
  74. </tr>
  75. <?php endforeach; ?>
  76. <?php else: ?>
  77. <tr><td colspan="4">Aucun résultat</td></tr>
  78. <?php endif; ?>
  79. </tbody>
  80. </table>
  81. </div>
  82. </div>