| | |
| | | List<OrderRefundPassList> orderRefundPassList = this.baseMapper.getOrderRefundPassList(pageInfo, refundPassListVo.getCode(), appUserIds, shopId, refundPassListVo.getRefundMethod(), refundPassListVo.getStatus()); |
| | | for (OrderRefundPassList refundPassList : orderRefundPassList) { |
| | | AppUser appUser = appUserClient.getAppUserById(refundPassList.getAppUserId()); |
| | | if(null != appUser){ |
| | | refundPassList.setUserName(appUser.getName()); |
| | | refundPassList.setPhone(appUser.getPhone()); |
| | | } |
| | | } |
| | | return pageInfo.setRecords(orderRefundPassList); |
| | | } |
| | |
| | | if(refundPass.getRefundMethod() == 2 && 2 == status){ |
| | | refundPass.setStatus(2); |
| | | } |
| | | if(3 == status){ |
| | | refundPass.setStatus(3); |
| | | } |
| | | refundPass.setPassRemark(passRemark); |
| | | //仅退款的售后需要将支付金额原路返回,然后再扣减支付获得的积分 |
| | | if(refundPass.getRefundMethod() == 2 && 2 == status){ |