25 lines
613 B
PHP
25 lines
613 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Procurement */
|
|
/* @var $warehouses common\models\Warehouse[] */
|
|
|
|
$this->title = Yii::t('common/procurement', 'Create Procurement');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/procurement', 'Procurements'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="procurement-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form_product', [
|
|
'product' => $product,
|
|
'model' => $model,
|
|
'warehouses' => $warehouses
|
|
]) ?>
|
|
|
|
</div>
|