50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Transfer */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="transfer-form">
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
<?= $form->field($model, 'id_discount')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'id_currency')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'id_object')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'status')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'type')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'item_price')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'count')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'money')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'money_currency')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'rate')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'id_user')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'comment')->textInput(['maxlength' => true]) ?>
|
|
|
|
<?= $form->field($model, 'created_at')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'updated_at')->textInput() ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton($model->isNewRecord ? Yii::t('frontend/transfer', 'Create') : Yii::t('frontend/transfer', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|