|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
-
-
-
- use yii\bootstrap\ActiveForm;
- use yii\helpers\Html;
-
- $productManager = $this->getProductManager();
-
- $this->setTitle('Import prix produits');
- $this->addBreadcrumb($this->getTitle());
- $this->addButton(['label' => 'Exporter les prix <span class="glyphicon glyphicon-export"></span>', 'url' => 'product/price-export', 'class' => 'btn btn-primary']);
-
- ?>
-
- <div class="product-price-import">
- <div class="alert alert-info">
- <i class="icon fa fa-info"></i>
- Télécharger le fichier CSV via <strong>Exporter les prix</strong> comme base pour éditer vos prix puis envoyez-le via le formulaire.
- </div>
-
- <?php $form = ActiveForm::begin([
- 'enableClientValidation' => false,
- 'options' => ['enctype' => 'multipart/form-data']
- ]); ?>
-
- <?= $form->field($model, 'file')->fileInput() ?>
-
- <div class="form-group">
- <?= Html::submitButton('Envoyer', ['class' => 'btn btn-primary']) ?>
- </div>
-
- <?php ActiveForm::end(); ?>
- </div>
|