|
- <?php
-
- use common\helpers\Image;
- use yii\helpers\Html;
- use yii\bootstrap\ActiveForm;
- use yii\helpers\ArrayHelper;
- use common\helpers\GlobalParam;
- use common\logic\Product\Product\Model\Product;
- use common\logic\PointSale\PointSale\Model\PointSale;
-
- $productCategoryManager = $this->getProductCategoryManager();
- $taxRateManager = $this->getTaxRateManager();
-
- ?>
-
- <div class="product-form">
-
- <?php $form = ActiveForm::begin([
- 'enableClientValidation' => false,
- 'options' => ['enctype' => 'multipart/form-data']
- ]); ?>
-
- <div>
- <div class="col-md-8">
- <?= $form->field($model, 'active')->radioList([1 => 'Oui', 0 => 'Non']) ?>
- <?= $form->field($model, 'name')->textInput(['maxlength' => 255]) ?>
- <?= $form->field($model, 'reference')->textInput(['maxlength' => 255]) ?>
- <?= $form->field($model, 'id_product_category')->dropDownList($productCategoryManager->populateProductCategoriesDropdownList()); ?>
- <?= $form->field($model, 'description')->textInput(['maxlength' => 255]) ?>
- <?= $form->field($model, 'recipe')->textarea()->label('Description longue') ?>
-
- <?= $form->field($model, 'unit')
- ->dropDownList(ArrayHelper::map(Product::$unitsArray, 'unit', 'wording'))
- ->label('Unité (pièce, poids ou volume)'); ?>
-
-
- <?php
-
- //Récupère la tva par défaut du producteur courant
- $producer = \common\helpers\GlobalParam::getCurrentProducer();
- $taxRateDefault = $producer->taxRate;
-
- $taxRateNamesArray = array_merge(array(0 => 'Tva par défaut'), ArrayHelper::map($taxRateManager->findTaxRates(), 'id', function ($model) {
- return $model->name;
- }));
- $taxRateValuesArray = array_merge(array(0 => $taxRateDefault->value), ArrayHelper::map($taxRateManager->findTaxRates(), 'id', function ($model) {
- return $model->value;
- }));
- foreach ($taxRateValuesArray as $key => $taxRateValue) {
- $taxRateValuesArrayFormatted[$key] = array('data-tax-rate-value' => $taxRateValue);
- }
-
- ?>
-
- <?php if($taxRateDefault->value != 0): ?>
- <?= $form->field($model, 'id_tax_rate')->dropDownList($taxRateNamesArray, ['options' => $taxRateValuesArrayFormatted])->label('Taxe'); ?>
- <?php endif; ?>
-
- <?= $form->field($model, 'price', [
- 'template' => '
- <div class="row">
- <div class="col-xs-6">
- <label for="product-price" class="control-label without-tax"></label>
- <div class="input-group">
- {input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span>
- </div>
- </div>
- <div class="col-xs-6">
- <label for="product-price-with-tax" class="control-label with-tax"></label>
- <div class="input-group">
- <input type="text" id="product-price-with-tax" class="form-control" name="" value="">
- <span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span>
- </div>
- </div>
- </div>
-
- ',
- ]) ?>
- <?= $form->field($model, 'step')->textInput()->hint('Définit ce qui est ajouté ou enlevé lors des changements de quantité.') ?>
-
- <?= $form->field($model, 'weight')->textInput()->label('Poids (g)') ?>
-
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_monday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_tuesday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_wednesday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_thursday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_friday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_saturday')->textInput() ?>
- </div>
- <div class="col-md-3">
- <?= $form->field($model, 'quantity_max_sunday')->textInput() ?>
- </div>
- <div class="clr"></div>
-
- <?php
- if (!$model->isNewRecord) {
- echo $form->field($model, 'apply_distributions')
- ->checkbox()
- ->hint('Sélectionnez cette option si vous souhaitez que ces modifications (actif / non actif, quantité max) soient répercutées dans les distributions à venir déjà initialisées.');
- }
- ?>
- </div>
- <div class="col-md-4">
- <?= $form->field($model, 'photo')->fileInput() ?>
- <?php
- if (strlen($model->photo)) {
- echo '<img class="photo-product" src="' . Image::getThumbnailSmall($model->photo, true). '" width="200px" /><br />';
- echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label>';
- }
- ?>
-
- <div id="days-production">
- <h2>Jours de distribution</h2>
- <?= $form->field($model, 'monday')->checkbox() ?>
- <?= $form->field($model, 'tuesday')->checkbox() ?>
- <?= $form->field($model, 'wednesday')->checkbox() ?>
- <?= $form->field($model, 'thursday')->checkbox() ?>
- <?= $form->field($model, 'friday')->checkbox() ?>
- <?= $form->field($model, 'saturday')->checkbox() ?>
- <?= $form->field($model, 'sunday')->checkbox() ?>
- </div>
- <div class="clr"></div>
-
- <div id="availability-points-sale">
- <h2>Disponibilité points de vente</h2>
- <?= $form->field($model, 'available_on_points_sale')->radioList([1 => 'Disponible', 0 => 'Indisponible']) ?>
-
- <strong id="label-availability-points-sale">Et <span><?php if($model->available_on_points_sale): ?>indisponible<?php else: ?>disponible<?php endif; ?></span> sur les points de vente</strong>
- <?php $pointSaleArray = PointSale::find()
- ->where([
- 'id_producer' => GlobalParam::getCurrentProducerId(),
- 'status' => 1
- ])
- ->orderBy('is_bread_box ASC, name ASC')
- ->all(); ?>
- <?= Html::activeCheckboxList($model, 'pointsSale', ArrayHelper::map($pointSaleArray, 'id', function ($pointSale, $defaultValue) use ($model) {
- return Html::encode($pointSale->name) ;
- }), ['encode' => false, 'class' => '']) ?>
- </div>
- </div>
- <div class="clr"></div>
- </div>
-
- <?= $form->field($model, 'id_producer')->hiddenInput()->label('') ?>
-
- <div class="form-group">
- <?= Html::submitButton($model->isNewRecord ? 'Ajouter' : 'Modifier', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
- </div>
-
- <?php ActiveForm::end(); ?>
-
- </div>
|