| 1234567891011121314151617181920212223242526272829 |
- @extends('refund.modal_base')
- @section('operation_pass')
- @if($order['has_one_refund_apply']['status'] == \app\common\models\refund\RefundApply::WAIT_CHECK)
- <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
- <input type='radio' value='3' class="refund-action" data-action="{{yzWebUrl('refund.operation.pass')}}"
- name='refund_status'
- @if( $order['has_one_refund_apply']['status']==\app\backend\modules\refund\models\RefundApply::WAIT_CHECK) checked @endif>通过申请(需客户寄回商品)
- </label>
- @endif
- @endsection
- @section('operation_resend')
- @if($order['has_one_refund_apply']['status'] < \app\common\models\refund\RefundApply::WAIT_RESEND_GOODS)
- <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
- <input type='radio' value='5' class="refund-action" name='refund_status'
- data-action="{{yzWebUrl('refund.operation.resend')}}"
- @if($order['has_one_refund_apply']['status'] < \app\backend\modules\refund\models\RefundApply::COMPLETE) checked @endif>
- 确认发货 @if($order['has_one_refund_apply']['status'] < \app\backend\modules\refund\models\RefundApply::WAIT_RECEIVE_RETURN_GOODS)
- (无需客户寄回商品,商家直接发换货商品)@endif
- </label>
- @endif
- @if($order['has_one_refund_apply']['is_refunding'])
- <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
- <input type='radio' value='10' class="refund-action"
- data-action="{{yzWebUrl('refund.operation.close')}}"
- name='refund_status'>关闭申请(换货完成)
- </label>
- @endif
- @endsection
|