|
- <?php
-
- use yii\helpers\Html;
- use yii\grid\GridView;
- use common\models\User ;
- use common\models\Etablissement ;
- use yii\bootstrap\ActiveForm;
-
- $this->title = 'Facturation';
- $this->params['breadcrumbs'][] = 'Administration' ;
- $this->params['breadcrumbs'][] = $this->title;
-
- ?>
-
- <h1>Facturation</h1>
-
- <p class="">
- Vous seuls savez ce que vous apporte cet outil et dans quelle mesure vous souhaitez le soutenir.<br />
- C'est pourquoi le modèle économique est basé sur un prix libre facturé mensuellement.<br />
- </p>
-
- <div id="estimation-facture" class="">
-
-
-
- <?php if($alert_prix_libre): ?>
- <div class="alert alert-success">
- Le prix libre a bien été mis à jour.
- <?php if($etablissement->prix_libre != 0): ?>
- Vos prochaines factures mensuelles auront un montant de <strong><?= number_format(Html::encode($etablissement->prix_libre),2).' € TTC' ; ?></strong>.
- <?php endif; ?>
- </div>
- <?php endif; ?>
-
- <?php $form = ActiveForm::begin([
- 'layout' => 'horizontal',
- 'fieldConfig' => [
- 'template' => "{label}\n{beginWrapper}\n{input}\n{hint}\n{error}\n{endWrapper}",
- 'horizontalCssClasses' => [
- 'label' => 'col-sm-2',
- ],
- ],
- ]); ?>
-
- <?= $form->field($etablissement, 'prix_libre')->textInput()->label('Prix libre<br /><span>€ TTC / mois</span>') ?>
-
- <div class="form-group field-user-prix_libre">
- <label class="control-label col-sm-2" for=""></label>
- <div class="col-sm-6">
- <?= Html::submitButton('Valider', ['class' => 'btn btn-primary']) ?>
- </div>
- </div>
-
- <?php ActiveForm::end(); ?>
- <div class="clr"></div>
- </div>
-
-
- <h2>Dernières factures</h2>
- <?= GridView::widget([
- 'dataProvider' => $datas_factures,
- 'columns' => [
- [
- 'attribute' => 'reference',
- 'label' => 'Référence',
- ],
- [
- 'attribute' => 'date',
- 'value' => function($model) {
- return date('d/m/Y', strtotime($model->date)) ;
- }
- ],
- 'libelle',
- [
- 'attribute' => 'montant_ht',
- 'label' => 'Montant',
- 'value' => function($model) {
- return number_format($model->montant_ht,2).' €' ;
- }
- ],
- [
- 'attribute' => 'paye',
- 'label' => 'Payé',
- 'format' => 'raw',
- 'value' => function($model) {
- if($model->paye)
- {
- return '<span class="label label-success">Oui</span>' ;
- }
- else {
- return '<span class="label label-danger">Non</span>' ;
- }
- }
- ]
- ],
- ]); ?>
|