打印日志

This commit is contained in:
Guoqs
2025-02-19 09:34:35 +08:00
parent 0fdec523dd
commit 5f6ea3dfda
3 changed files with 21 additions and 15 deletions

View File

@@ -215,16 +215,16 @@ public class JsowellTask {
}
// 调分账方法
pileMerchantInfos.parallelStream().forEach(merchant -> {
try {
orderBasicInfoService.orderSplittingOperations(merchant.getId() + "", yesterday.toString());
} catch (Exception e) {
log.error("处理订单分账异常, merchantId:{}", merchant.getId(), e);
}
});
// pileMerchantInfos.parallelStream().forEach(merchant -> {
// try {
// orderBasicInfoService.orderSplittingOperations(merchant.getId() + "", yesterday.toString());
// } catch (Exception e) {
// log.error("处理订单分账异常, merchantId:{}", merchant.getId(), e);
// }
// });
// TODO 换为实时分账后, 此方法改为 自动提现并计算前一天的分账信息
// 换为实时分账后, 此方法改为 自动提现并计算前一天的分账信息
pileMerchantInfos.parallelStream().forEach(merchant -> {
automaticPayouts(merchant.getId() + "");
});