|
|
|
|
|
|
|
|
<div class="col-md-12"> |
|
|
<div class="col-md-12"> |
|
|
<h1><?= $this->title ?></h1> |
|
|
<h1><?= $this->title ?></h1> |
|
|
<?php $form = ActiveForm::begin(); ?> |
|
|
<?php $form = ActiveForm::begin(); ?> |
|
|
|
|
|
<?= $form->field($credit_historique, 'type')->dropDownList([ |
|
|
|
|
|
CreditHistorique::TYPE_CREDIT => 'Crédit', |
|
|
|
|
|
CreditHistorique::TYPE_DEBIT => 'Débit', |
|
|
|
|
|
]) ?> |
|
|
<?= $form->field($credit_historique, 'montant')->textInput() ?> |
|
|
<?= $form->field($credit_historique, 'montant')->textInput() ?> |
|
|
<?= $form->field($credit_historique, 'moyen_paiement')->dropDownList([ |
|
|
<?= $form->field($credit_historique, 'moyen_paiement')->dropDownList([ |
|
|
CreditHistorique::MOYEN_ESPECES => 'Espèces', |
|
|
CreditHistorique::MOYEN_ESPECES => 'Espèces', |
|
|
CreditHistorique::MOYEN_CB => 'Carte bancaire', |
|
|
CreditHistorique::MOYEN_CB => 'Carte bancaire', |
|
|
CreditHistorique::MOYEN_CHEQUE => 'Chèque', |
|
|
CreditHistorique::MOYEN_CHEQUE => 'Chèque', |
|
|
|
|
|
CreditHistorique::MOYEN_AUTRE => 'Autre', |
|
|
]) ?> |
|
|
]) ?> |
|
|
|
|
|
<?= $form->field($credit_historique, 'commentaire')->textarea() ?> |
|
|
<div class="form-group"> |
|
|
<div class="form-group"> |
|
|
<?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?> |
|
|
<?= Html::submitButton( 'Créditer', ['class' => 'btn btn-primary']) ?> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<th>Type</th> |
|
|
<th>Type</th> |
|
|
<th>Montant</th> |
|
|
<th>Montant</th> |
|
|
<th>Paiement</th> |
|
|
<th>Paiement</th> |
|
|
|
|
|
<th>Commentaire</th> |
|
|
</tr> |
|
|
</tr> |
|
|
</thead> |
|
|
</thead> |
|
|
<tbody> |
|
|
<tbody> |
|
|
|
|
|
|
|
|
<?php endif; ?> |
|
|
<?php endif; ?> |
|
|
<?php endif; ?> |
|
|
<?php endif; ?> |
|
|
<?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; ?> |
|
|
<?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; ?> |
|
|
|
|
|
<?php if($ch->type == CreditHistorique::TYPE_DEBIT): ?> |
|
|
|
|
|
Débit |
|
|
|
|
|
<?php endif; ?> |
|
|
</td> |
|
|
</td> |
|
|
<td> |
|
|
<td> |
|
|
<?= $ch->montant ; ?> € |
|
|
|
|
|
|
|
|
<?= number_format($ch->montant,2) ; ?> € |
|
|
</td> |
|
|
</td> |
|
|
<td> |
|
|
<td> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_ESPECES): ?>Espèces<?php endif; ?> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_ESPECES): ?>Espèces<?php endif; ?> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CB): ?>Carte bancaire<?php endif; ?> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CB): ?>Carte bancaire<?php endif; ?> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CHEQUE): ?>Chèque<?php endif; ?> |
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_CHEQUE): ?>Chèque<?php endif; ?> |
|
|
|
|
|
<?php if($ch->moyen_paiement == CreditHistorique::MOYEN_AUTRE): ?>Autre<?php endif; ?> |
|
|
<?php if(!$ch->moyen_paiement): ?>Crédit pain<?php endif; ?> |
|
|
<?php if(!$ch->moyen_paiement): ?>Crédit pain<?php endif; ?> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td> |
|
|
|
|
|
<?php if(strlen($ch->commentaire)): ?> |
|
|
|
|
|
<?= nl2br(Html::encode($ch->commentaire)) ; ?> |
|
|
|
|
|
<?php endif; ?> |
|
|
|
|
|
</td> |
|
|
</tr> |
|
|
</tr> |
|
|
<?php endforeach; ?> |
|
|
<?php endforeach; ?> |
|
|
<?php else: ?> |
|
|
<?php else: ?> |