Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

credit.php 4.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 <span class="the-credit"><?= number_format($user->getCredit($etablissement->id), 2); ?> €</span></h2>
  44. <table class="table table-bordered">
  45. <thead>
  46. <tr>
  47. <th>Date</th>
  48. <th>Utilisateur</th>
  49. <th>Type</th>
  50. <th>- Débit</th>
  51. <th>+ Crédit</th>
  52. <th>Paiement</th>
  53. <th>Commentaire</th>
  54. </tr>
  55. </thead>
  56. <tbody>
  57. <?php if(count($historique)): ?>
  58. <?php foreach($historique as $ch): ?>
  59. <tr>
  60. <td><?= $ch->getDate(true) ; ?></td>
  61. <td><?php if(isset($ch->userAction)): echo Html::encode($ch->userAction->nom. ' '.$ch->userAction->prenom) ; else: echo 'Administrateur' ;endif; ?></td>
  62. <td><?= $ch->getStrLibelle(); ?></td>
  63. <td>
  64. <?php if($ch->isTypeDebit()): ?>
  65. - <?= $ch->getMontant(true); ?>
  66. <?php endif; ?>
  67. </td>
  68. <td>
  69. <?php if($ch->isTypeCredit()): ?>
  70. + <?= $ch->getMontant(true); ?>
  71. <?php endif; ?>
  72. </td>
  73. <td>
  74. <?= $ch->getStrMoyenPaiement() ?>
  75. </td>
  76. <td>
  77. <?php if(strlen($ch->commentaire)): ?>
  78. <?= nl2br($ch->commentaire) ; ?>
  79. <?php endif; ?>
  80. </td>
  81. </tr>
  82. <?php endforeach; ?>
  83. <?php else: ?>
  84. <tr><td colspan="4">Aucun résultat</td></tr>
  85. <?php endif; ?>
  86. </tbody>
  87. </table>
  88. </div>
  89. </div>