OMS-GW推送-商业合作伙伴

This commit is contained in:
zhaoqing
2026-05-06 14:16:14 +08:00
parent 4d732b1bf8
commit d32e7e97f6
5 changed files with 10 additions and 8 deletions
@@ -173,7 +173,8 @@ public class BusinessPartnerApplicationService {
private void updatePushStatus(Long shipperId, Integer pushStatus, Date pushTime, Long pushBy) {
try {
// 调用user-center的Feign接口,更新货主的推送状态
AjaxResult result = userServiceFeign.updatePushStatus(shipperId, pushStatus, pushTime, pushBy);
String pushTimeStr = pushTime != null ? DateUtil.format(pushTime, "yyyy-MM-dd HH:mm:ss") : null;
AjaxResult result = userServiceFeign.updatePushStatus(shipperId, pushStatus, pushTimeStr, pushBy);
log.info("更新返回结果:{}",result);
} catch (Exception e) {
// 如果更新失败,记录错误日志,但不阻断主流程