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.

107 lines
5.1KB

  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' => 'Clients', '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_etablissement])
  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, 'type')->dropDownList([
  26. CreditHistorique::TYPE_CREDIT => 'Crédit',
  27. CreditHistorique::TYPE_DEBIT => 'Débit',
  28. ]) ?>
  29. <?= $form->field($credit_historique, 'montant')->textInput() ?>
  30. <?= $form->field($credit_historique, 'moyen_paiement')->dropDownList([
  31. CreditHistorique::MOYEN_ESPECES => 'Espèces',
  32. CreditHistorique::MOYEN_CB => 'Carte bancaire',
  33. CreditHistorique::MOYEN_CHEQUE => 'Chèque',
  34. CreditHistorique::MOYEN_AUTRE => 'Autre',
  35. ]) ?>
  36. <?= $form->field($credit_historique, 'commentaire')->textarea() ?>
  37. <div class="form-group">
  38. <?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?>
  39. </div>
  40. <?php ActiveForm::end(); ?>
  41. </div>
  42. <div class="col-md-12">
  43. <h2>Historique</h2>
  44. <table class="table table-bordered">
  45. <thead>
  46. <tr>
  47. <th>Date</th>
  48. <th>Type</th>
  49. <th>Montant</th>
  50. <th>Paiement</th>
  51. <th>Commentaire</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <?php if(count($historique)): ?>
  56. <?php foreach($historique as $ch): ?>
  57. <tr>
  58. <td><?= date('d/m/Y à H:i:s',strtotime($ch->date)) ?></td>
  59. <td>
  60. <?php if($ch->type == CreditHistorique::TYPE_CREDIT_INITIAL): ?>Crédit initial<?php endif; ?>
  61. <?php if($ch->type == CreditHistorique::TYPE_CREDIT): ?>Crédit<?php endif; ?>
  62. <?php if($ch->type == CreditHistorique::TYPE_PAIEMENT): ?>
  63. Paiement commande
  64. <?php if(isset($ch->commande)): ?>
  65. du <?= date('d/m/Y',strtotime($ch->commande->date)) ?>
  66. <?php else: ?>
  67. (supprimée)
  68. <?php endif; ?>
  69. <?php endif; ?>
  70. <?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; ?>
  71. <?php if($ch->type == CreditHistorique::TYPE_DEBIT): ?>
  72. Débit
  73. <?php endif; ?>
  74. </td>
  75. <td>
  76. <?= number_format($ch->montant,2) ; ?> €
  77. </td>
  78. <td>
  79. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_ESPECES): ?>Espèces<?php endif; ?>
  80. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CB): ?>Carte bancaire<?php endif; ?>
  81. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CHEQUE): ?>Chèque<?php endif; ?>
  82. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_AUTRE): ?>Autre<?php endif; ?>
  83. <?php if(!$ch->moyen_paiement): ?>Crédit pain<?php endif; ?>
  84. </td>
  85. <td>
  86. <?php if(strlen($ch->commentaire)): ?>
  87. <?= nl2br(Html::encode($ch->commentaire)) ; ?>
  88. <?php endif; ?>
  89. </td>
  90. </tr>
  91. <?php endforeach; ?>
  92. <?php else: ?>
  93. <tr><td colspan="4">Aucun résultat</td></tr>
  94. <?php endif; ?>
  95. </tbody>
  96. </table>
  97. </div>
  98. </div>