Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

70 Zeilen
2.8KB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. use common\models\CreditHistorique;
  5. $this->title = 'Créditer <small>'.Html::encode($user->nom.' '.$user->prenom).'</small>';
  6. $this->params['breadcrumbs'][] = ['label' => 'Utilisateurs', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => Html::encode($user->nom.' '.$user->prenom)];
  8. $this->params['breadcrumbs'][] = 'Créditer';
  9. ?>
  10. <div class="user-credit">
  11. <div class="col-md-6">
  12. <h1><?= $this->title ?></h1>
  13. <?php $form = ActiveForm::begin(); ?>
  14. <?= $form->field($credit_historique, 'montant')->textInput() ?>
  15. <?= $form->field($credit_historique, 'moyen_paiement')->dropDownList([
  16. CreditHistorique::MOYEN_ESPECES => 'Espèces',
  17. CreditHistorique::MOYEN_CB => 'Carte bancaire',
  18. CreditHistorique::MOYEN_CHEQUE => 'Chèque',
  19. ]) ?>
  20. <div class="form-group">
  21. <?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?>
  22. </div>
  23. <?php ActiveForm::end(); ?>
  24. </div>
  25. <div class="col-md-6">
  26. <h2>Historique</h2>
  27. <table class="table table-bordered">
  28. <thead>
  29. <tr>
  30. <th>Date</th>
  31. <th>Type</th>
  32. <th>Montant</th>
  33. <th>Paiement</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <?php if(count($historique)): ?>
  38. <?php foreach($historique as $ch): ?>
  39. <tr>
  40. <td><?= date('d/m/Y à H:i:s',strtotime($ch->date)) ?></td>
  41. <td>
  42. <?php if($ch->type == CreditHistorique::TYPE_CREDIT_INITIAL): ?>Crédit initial<?php endif; ?>
  43. <?php if($ch->type == CreditHistorique::TYPE_CREDIT): ?>Crédit<?php endif; ?>
  44. <?php if($ch->type == CreditHistorique::TYPE_PAIEMENT_COMMANDE): ?>Paiement commande<?php endif; ?>
  45. </td>
  46. <td>
  47. <?= $ch->montant ; ?> €
  48. </td>
  49. <td>
  50. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_ESPECES): ?>Espèces<?php endif; ?>
  51. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CB): ?>Carte bancaire<?php endif; ?>
  52. <?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CHEQUE): ?>Chèque<?php endif; ?>
  53. </td>
  54. </tr>
  55. <?php endforeach; ?>
  56. <?php else: ?>
  57. <tr><td colspan="4">Aucun résultat</td></tr>
  58. <?php endif; ?>
  59. </tbody>
  60. </table>
  61. </div>
  62. </div>