查询站点订单日报详情

This commit is contained in:
2023-08-22 09:42:30 +08:00
parent 0bbde0245d
commit 36fe313a82
22 changed files with 321 additions and 21 deletions

View File

@@ -369,9 +369,7 @@ public class MemberService {
.list(collect)
.pages(pages)
.total(total)
.build();
vo.setPageResponse(pageResponse);
log.info("查询用户余额信息 service方法 end");
return vo;

View File

@@ -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();