This reverts commit ee55e3c3cf, reversing
changes made to befffda063.
This commit is contained in:
Lemon
2025-10-11 11:37:02 +08:00
parent 7121ccea7e
commit 2cdd16b5c1
2 changed files with 15 additions and 8 deletions

View File

@@ -52,9 +52,6 @@ public class SplitBillService {
String startTime = dto.getStartTime();
String endTime = dto.getEndTime();
// 首先根据 merchantId、startTime、endTime 查出日期区间内所有订单信息(包括 paymentId
// 格式化 startTime 和 endTime
dto.setStartTime(dto.getStartTime() + " 00:00:00");
dto.setEndTime(dto.getEndTime() + " 23:59:59");
List<OrderPaymentDetailVO> recordList = orderBasicInfoService.getSplitOrders(dto);
if (CollectionUtils.isEmpty(recordList)) {
log.info("重试运营商分账-根据参数未查询到符合条件的订单, param:{}", dto);