55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
use yii\helpers\ArrayHelper;
|
|
use yii\widgets\DetailView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Procurement */
|
|
/* @var $warehouses common\models\Warehouse[] */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
<?php
|
|
|
|
$warehouseOptions = ArrayHelper::map($warehouses, 'id_warehouse', 'name') ;
|
|
|
|
?>
|
|
|
|
<h3><?= Yii::t('common/product', 'Product') ?> </h3>
|
|
<?php
|
|
|
|
echo DetailView::widget([
|
|
'model' => $product,
|
|
'attributes' =>[
|
|
'productCategoryName',
|
|
'accountName',
|
|
'product_number',
|
|
'barcode',
|
|
'stock',
|
|
]
|
|
]);
|
|
|
|
?>
|
|
|
|
<div class="procurement-form">
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
|
|
<?= $form->field($model, 'id_warehouse')->dropDownList($warehouseOptions) ?>
|
|
|
|
<?= $form->field($model, 'count')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'purchase_price')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'description')->textarea(['maxlength' => true]) ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton($model->isNewRecord ? Yii::t('common/procurement', 'Create') : Yii::t('common/procurement', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|