You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
635 B
21 lines
635 B
<?php
|
|
|
|
use blobt\widgets\Icheck;
|
|
use common\models\ars\ExpressTemplate;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\ars\ExpressTemplate */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>
|
|
|
|
<?= $form->field($model, 'calculation')->widget(Icheck::className(), ["items" => ExpressTemplate::$calculation, 'type' => "radio"]) ?>
|
|
|
|
<?= $form->field($model, 'basic_amount')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'basic_price')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'extra_amount')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'extra_price')->textInput() ?>
|