|
- <?php
-
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- use common\models\CreditHistorique;
- use common\models\Etablissement;
-
- $this->title = 'Créditer <small>'.Html::encode($user->nom.' '.$user->prenom).'</small>';
- $this->params['breadcrumbs'][] = ['label' => 'Clients', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => Html::encode($user->nom.' '.$user->prenom)];
- $this->params['breadcrumbs'][] = 'Créditer';
-
- ?>
-
- <div class="user-credit">
-
- <?php
- $etablissement = Etablissement::find()
- ->where(['id' => Yii::$app->user->identity->id_etablissement])
- ->one() ;
- if(!$etablissement->credit_pain)
- {
- 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>.'
- . ' Pensez à l\'activer si vous souhaitez qu\'elle soit visible de vos clients.</div>' ;
- }
- ?>
-
- <div class="col-md-12">
- <h1><?= $this->title ?></h1>
- <?php $form = ActiveForm::begin(); ?>
- <?= $form->field($credit_form, 'type')->dropDownList([
- CreditHistorique::TYPE_CREDIT => 'Crédit',
- CreditHistorique::TYPE_DEBIT => 'Débit',
- ]) ?>
- <?= $form->field($credit_form, 'montant')->textInput() ?>
- <?= $form->field($credit_form, 'moyen_paiement')->dropDownList([
- CreditHistorique::MOYEN_ESPECES => 'Espèces',
- CreditHistorique::MOYEN_CB => 'Carte bancaire',
- CreditHistorique::MOYEN_CHEQUE => 'Chèque',
- CreditHistorique::MOYEN_AUTRE => 'Autre',
- ]) ?>
- <?= $form->field($credit_form, 'commentaire')->textarea() ?>
- <?= $form->field($credit_form, 'send_mail')->checkbox() ?>
-
- <div class="form-group">
- <?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
-
- <div class="col-md-12">
- <h2>Historique <span class="the-credit"><?= number_format($user->getCredit($etablissement->id), 2); ?> €</span></h2>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Date</th>
- <th>Utilisateur</th>
- <th>Type</th>
- <th>- Débit</th>
- <th>+ Crédit</th>
- <th>Paiement</th>
- <th>Commentaire</th>
- </tr>
- </thead>
- <tbody>
- <?php if(count($historique)): ?>
- <?php foreach($historique as $ch): ?>
- <tr>
- <td><?= $ch->getDate(true) ; ?></td>
- <td><?= Html::encode($ch->strUserAction()); ?></td>
- <td><?= $ch->getStrLibelle(); ?></td>
- <td>
- <?php if($ch->isTypeDebit()): ?>
- - <?= $ch->getMontant(true); ?>
- <?php endif; ?>
- </td>
- <td>
- <?php if($ch->isTypeCredit()): ?>
- + <?= $ch->getMontant(true); ?>
- <?php endif; ?>
- </td>
- <td>
- <?= $ch->getStrMoyenPaiement() ?>
- </td>
- <td>
- <?php if(strlen($ch->commentaire)): ?>
- <?= nl2br($ch->commentaire) ; ?>
- <?php endif; ?>
- </td>
- </tr>
- <?php endforeach; ?>
- <?php else: ?>
- <tr><td colspan="4">Aucun résultat</td></tr>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
-
- </div>
|