mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
查询站点订单日报详情
This commit is contained in:
@@ -369,9 +369,7 @@ public class MemberService {
|
||||
.list(collect)
|
||||
.pages(pages)
|
||||
.total(total)
|
||||
|
||||
.build();
|
||||
|
||||
vo.setPageResponse(pageResponse);
|
||||
log.info("查询用户余额信息 service方法 end");
|
||||
return vo;
|
||||
|
||||
@@ -405,7 +405,9 @@ public class OrderService {
|
||||
}
|
||||
|
||||
// 支付流水
|
||||
List<OrderPayRecord> orderPayRecordList = orderPayRecordService.getOrderPayRecordList(orderCode);
|
||||
List<OrderDetailInfoVO.PayRecord> payRecords = orderPayRecordService.selectOrderPayInfoList(orderCode);
|
||||
vo.setPayRecordList(payRecords);
|
||||
/*List<OrderPayRecord> orderPayRecordList = orderPayRecordService.getOrderPayRecordList(orderCode);
|
||||
if (CollectionUtils.isNotEmpty(orderPayRecordList)) {
|
||||
List<OrderDetailInfoVO.PayRecord> payRecordList = Lists.newArrayList();
|
||||
for (OrderPayRecord orderPayRecord : orderPayRecordList) {
|
||||
@@ -466,7 +468,7 @@ public class OrderService {
|
||||
payRecordList.add(payInfo);
|
||||
}
|
||||
vo.setPayRecordList(payRecordList);
|
||||
}
|
||||
}*/
|
||||
|
||||
// 查询退款明细
|
||||
List<OrderDetailInfoVO.OrderRefundInfo> orderRefundInfoList = Lists.newArrayList();
|
||||
|
||||
Reference in New Issue
Block a user