|
- <?php
-
-
-
- use yii\grid\GridView;
-
- ?>
-
- <div class="alert alert-warning" role="alert">
- Découvrez ci-dessous la <strong>grille tarifaire</strong> pour l'hébergement de votre circuit court sur Opendistrib.
- Le montant qui vous est facturé mensuellement dépend de votre chiffre d’affaire hors taxe réalisé sur le logiciel.
- Il est donc adapté chaque mois en fonction de l’évolution de votre activité.<br>
- Le service est <strong>sans engagement</strong>, vous arrêtez quand vous voulez sur simple désactivation de votre compte.
- </div>
-
- <?=
-
- GridView::widget([
- 'dataProvider' => $dataProviderPrices,
- 'summary' => '',
- 'columns' => [
- [
- 'label' => 'Tranches (CA HT / mois)',
- 'format' => 'raw',
- 'value' => function ($model) {
- if ($model->range_begin == 0) {
- $html = 'Moins de ' . $model->range_end . ' €';
- } elseif ($model->range_end == null) {
- $html = 'Plus de ' . $model->range_begin . ' €';
- } else {
- $html = 'Entre ' . $model->range_begin . ' €';
- $html .= ' et ' . $model->range_end . ' €';
- }
- return $html;
- }
- ],
- [
- 'label' => 'Tarifs (HT)',
- 'format' => 'raw',
- 'value' => function ($model) {
- $html = $model->price . ' €';
-
- return $html;
- }
- ],
- ]
- ]);
- ?>
-
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Module</th>
- <th>Activation du module (HT)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <strong>Paiement en ligne</strong><br>
- <p>Le paiement en ligne permet à vos clients d'alimenter leur crédit (compte prépayé en ligne) par carte bancaire.<br>
- Le logiciel fonctionne avec la plateforme <a href="https://stripe.com/fr">Stripe</a> pour accepter les paiements.<br>
- <a href="https://stripe.com/fr/pricing">Voir les tarifs Stripe</a>
- </p>
- </td>
- <td>120 €</td>
- </tr>
- </tbody>
- </table>
|