modal_exchange_goods.blade.php 1.8 KB

1234567891011121314151617181920212223242526272829
  1. @extends('refund.modal_base')
  2. @section('operation_pass')
  3. @if($order['has_one_refund_apply']['status'] == \app\common\models\refund\RefundApply::WAIT_CHECK)
  4. <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
  5. <input type='radio' value='3' class="refund-action" data-action="{{yzWebUrl('refund.operation.pass')}}"
  6. name='refund_status'
  7. @if( $order['has_one_refund_apply']['status']==\app\backend\modules\refund\models\RefundApply::WAIT_CHECK) checked @endif>通过申请(需客户寄回商品)
  8. </label>
  9. @endif
  10. @endsection
  11. @section('operation_resend')
  12. @if($order['has_one_refund_apply']['status'] < \app\common\models\refund\RefundApply::WAIT_RESEND_GOODS)
  13. <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
  14. <input type='radio' value='5' class="refund-action" name='refund_status'
  15. data-action="{{yzWebUrl('refund.operation.resend')}}"
  16. @if($order['has_one_refund_apply']['status'] < \app\backend\modules\refund\models\RefundApply::COMPLETE) checked @endif>
  17. 确认发货 @if($order['has_one_refund_apply']['status'] < \app\backend\modules\refund\models\RefundApply::WAIT_RECEIVE_RETURN_GOODS)
  18. (无需客户寄回商品,商家直接发换货商品)@endif
  19. </label>
  20. @endif
  21. @if($order['has_one_refund_apply']['is_refunding'])
  22. <label class='radio-inline' style="float: left;margin-left: 0px;margin-right: 10px;">
  23. <input type='radio' value='10' class="refund-action"
  24. data-action="{{yzWebUrl('refund.operation.close')}}"
  25. name='refund_status'>关闭申请(换货完成)
  26. </label>
  27. @endif
  28. @endsection