|
|
@@ -42,64 +42,88 @@ use yii\helpers\Html; |
|
|
|
|
|
|
|
?> |
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
<?= |
|
|
|
<div class="panel panel-default"> |
|
|
|
<div class="panel-heading"> |
|
|
|
<h3 class="panel-title"> |
|
|
|
<div class="glyphicon glyphicon-hdd"></div> |
|
|
|
Hébergement |
|
|
|
</h3> |
|
|
|
</div> |
|
|
|
<div class="panel-body"> |
|
|
|
<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é. 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' => 'Tarif (HT)', |
|
|
|
'format' => 'raw', |
|
|
|
'value' => function ($model) { |
|
|
|
$html = $model->price . ' €'; |
|
|
|
|
|
|
|
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; |
|
|
|
} |
|
|
|
], |
|
|
|
] |
|
|
|
]); |
|
|
|
?> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
return $html; |
|
|
|
} |
|
|
|
], |
|
|
|
] |
|
|
|
]); |
|
|
|
?> |
|
|
|
<div class="panel panel-default"> |
|
|
|
<div class="panel-heading"> |
|
|
|
<h3 class="panel-title"> |
|
|
|
<span class="glyphicon glyphicon-th-large"></span> |
|
|
|
Modules |
|
|
|
</h3> |
|
|
|
</div> |
|
|
|
<div class="panel-body"> |
|
|
|
<div class="alert alert-warning" role="alert"> |
|
|
|
Retrouvez ici les modules payants d'Opendistrib correspondant aux développements qui n'ont pas encore |
|
|
|
été totalement financés et aux fonctionnalités nécessitant une configuration spécifique. Contactez-moi |
|
|
|
pour demander l'activation d'un module. |
|
|
|
</div> |
|
|
|
<table class="table table-striped table-bordered"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Module</th> |
|
|
|
<th>Tarif (HT)</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<?php foreach($paidFeaturesArray as $paidFeature): ?> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<div><strong><?= Html::encode($paidFeature->name) ?></strong></div> |
|
|
|
<div><?= $paidFeature->description ?></div> |
|
|
|
</td> |
|
|
|
<td><?= Price::format($paidFeature->price, 0) ?></td> |
|
|
|
</tr> |
|
|
|
<?php endforeach; ?> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<table class="table table-striped table-bordered"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Module</th> |
|
|
|
<th>Activation du module (HT)</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<?php foreach($paidFeaturesArray as $paidFeature): ?> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<div><strong><?= Html::encode($paidFeature->name) ?></strong></div> |
|
|
|
<div><?= $paidFeature->description ?></div> |
|
|
|
</td> |
|
|
|
<td><?= Price::format($paidFeature->price, 0) ?></td> |
|
|
|
</tr> |
|
|
|
<?php endforeach; ?> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
|