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.
39 lines
1.3 KiB
39 lines
1.3 KiB
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use kartik\form\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\shop\models\ars\RefundLog */
|
|
|
|
$this->title = '退款订单:' . $model->order_id;
|
|
$this->params['breadcrumbs'][] = ['label' => '订单列表', 'url' => ['index']];
|
|
Yii::$app->params['bsVersion'] = '4.x';
|
|
?>
|
|
|
|
<div class="refund-log-form">
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
<?= $form->field($model, 'wx_refund_id')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'reason')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'order_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'refund_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'refunded_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'refund_account')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<?= $form->field($model, 'type')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
|
|
<?= Html::a('返回', ['index'], ['class' => 'btn btn-info']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|
|
|