|
- <?php
-
-
-
- use common\helpers\Price;
- use yii\helpers\Html;
-
- $this->setTitle('Mes factures') ;
- $this->addBreadcrumb($this->getTitle()) ;
-
- $producerModule = $this->getProducerModule();
-
- ?>
-
- <?php if($invoicesArray && count($invoicesArray)): ?>
- <div class="callout callout-info">
- <span class="glyphicon glyphicon-pencil"></span> Les factures et les réglements sont saisis en début de mois.<br />
- <span class="glyphicon glyphicon-euro"></span> Si votre chiffre d'affaire est stable et que vous souhaitez mettre en place un virement permanent,
- <a href="<?= Yii::$app->urlManager->createUrl(['support/index']) ?>">prévenez-moi</a> et vous aurez tous les mois une facture avec un montant identique. Une régule sera réalisée en fin d'année.
- </div>
-
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Date</th>
- <th>Référence</th>
- <th>Montant</th>
- <th>Statut</th>
- <th>Téléchargement</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($invoicesArray as $invoice): ?>
- <tr>
- <td><?= date('d/m/Y', $invoice['date']); ?></td>
- <td><?= Html::encode($invoice['ref']); ?></td>
- <td><?= Price::format($invoice['total_ttc']); ?></td>
- <td><?= ($invoice['remaintopay'] > 0) ? '<span class="label label-warning">Impayée</span>' : '<span class="label label-success">Payée</span>'; ?></td>
- <td>
- <a class="btn btn-default" href="<?= $this->getUrlManagerBackend()->createUrl(['producer-invoice/download', 'idDolibarrInvoice' => $invoice['id']]); ?>">
- <span class="glyphicon glyphicon-download-alt"></span> Télécharger
- </a>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- <?php else: ?>
- <div class="callout callout-info">
- <span class="glyphicon glyphicon-info-sign"></span> Vous n'avez encore aucune facture.
- </div>
-
- <?php if($producerModule->getSolver()->isFreeBillingPeriodSponsorship($producer)): ?>
- <div class="callout callout-info">
- <i class="fa fa-gift"></i>
- Et comme vous avez été parrainé au moment de votre inscription, vous n'aurez pas de facture <em>Souke</em>
- avant le <?= $producerModule->getSolver()->getDateEndFreeBillingPeriodSponsorship($producer)->format('d/m/Y'); ?>.
- </div>
- <?php endif; ?>
- <?php endif; ?>
|