update 订单分账

This commit is contained in:
Guoqs
2024-09-09 15:58:12 +08:00
parent 274b2695b4
commit bc895e0661
2 changed files with 6 additions and 2 deletions

View File

@@ -187,7 +187,11 @@ public class JsowellTask {
// 调分账方法
pileMerchantInfos.parallelStream().forEach(merchant -> {
orderBasicInfoService.orderSplittingOperations(merchant.getId()+"", yesterday.toString());
try {
orderBasicInfoService.orderSplittingOperations(merchant.getId()+"", yesterday.toString());
} catch (Exception e) {
log.error("处理订单分账异常", e);
}
});
}
}