_form.php 3.88 KB
<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\helpers\ArrayHelper;
use common\components\artboxtree\ArtboxTreeHelper;
use common\modules\product\helpers\ProductHelper;
use kartik\file\FileInput;
use unclead\widgets\MultipleInput;
use unclead\widgets\MultipleInputColumn;
use kartik\select2\Select2;

/* @var $this yii\web\View */
/* @var $model common\modules\product\models\Product */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="product-form">

    <?php $form = ActiveForm::begin(); ?>

    <?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'description')->widget(\mihaildev\ckeditor\CKEditor::className(),['editorOptions' => [ 'preset' => 'full', 'inline' => false, ], ]); ?>
    <?= $form->field($model, 'video')->textarea(); ?>

    <?= $form->field($model, 'brand_id')->dropDownList(
        ArrayHelper::map(ProductHelper::getBrands()->all(), 'brand_id', 'name'),
        [
            'prompt' => Yii::t('product', 'Select brand')
        ]
    ) ?>

    <?= $form->field($model, 'categories')->widget(Select2::className(), [
            'data' => ArtboxTreeHelper::treeMap(ProductHelper::getCategories(), 'category_id', 'name'),
            'language' => 'ru',
            'options' => [
                'placeholder' => Yii::t('product', 'Select categories'),
                'multiple' => true,
            ],
            'pluginOptions' => [
                'allowClear' => true
            ],
        ]
    ) ?>



    <?php /*= $form->field($model, 'imagesUpload[]')->widget(FileInput::classname(), [
        'options' => [
            'accept' => 'image/*',
            'multiple' => true,
        ],
    ]);*/?>

    <?= $form->field($model, 'variants')->widget(MultipleInput::className(), [
        'columns' => [
            [
                'name'  => 'product_variant_id',
                'type'  => MultipleInputColumn::TYPE_HIDDEN_INPUT,
            ],
            [
                'name'  => 'name',
                'type'  => MultipleInputColumn::TYPE_TEXT_INPUT,
                'title' => Yii::t('product', 'Name'),
            ],
            [
                'name'  => 'sku',
                'type'  => MultipleInputColumn::TYPE_TEXT_INPUT,
                'title' => Yii::t('product', 'SKU'),
            ],
            [
                'name'  => 'price',
                'type'  => MultipleInputColumn::TYPE_TEXT_INPUT,
                'title' => Yii::t('product', 'Price'),
            ],
            [
                'name'  => 'price_old',
                'type'  => MultipleInputColumn::TYPE_TEXT_INPUT,
                'title' => Yii::t('product', 'Old Price'),
            ],
            [
                'name'  => 'product_unit_id',
                'type'  => MultipleInputColumn::TYPE_DROPDOWN,
                'title' => Yii::t('product', 'Unit'),
                'items' => ArrayHelper::map(\common\modules\product\models\ProductUnit::find()->all(), 'product_unit_id', 'name'),
            ],
            [
                'name'  => 'stock',
                'type'  => MultipleInputColumn::TYPE_TEXT_INPUT,
                'title' => Yii::t('product', 'Stock'),
                'options' => [
                    'placeholder' => '∞'
                ],
            ],
        ],
    ]);
    ?>

    <?php if(isset($groups)) :?>
    <?php  foreach($groups->all() as $group) :?>
        <?= $form->field($model, 'options')->checkboxList(
        ArrayHelper::map($group->options, 'tax_option_id', 'ValueRenderFlash'),
        [
            'multiple' => true,
            'unselect' => null,
        ]
        )->label($group->name);?>
    <?php endforeach?>
    <?php endif?>

    <div class="form-group">
        <?= Html::submitButton($model->isNewRecord ? Yii::t('product', 'Create') : Yii::t('product', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>