Compare commits

...

4 Commits

Author SHA1 Message Date
be821d0265 B
Merge branch 'main' into dev
2025-10-22 17:42:28 +08:00
cbed988f4a 新增发货后的蓝驰系统库存扣减 2025-10-22 17:41:24 +08:00
20cab88cf9 商家异常订单手动发货功能新增 2025-10-22 15:17:32 +08:00
1112033ed8 拣货完成,更改参数 2025-10-22 12:48:35 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl<ShopOrderInfoMappe
}
Map<String, Object> requestParams = new HashMap<>();
requestParams.put("order_id", sfOrderId);
requestParams.put("order_id", sfOrderId); // 顺丰订单号
requestParams.put("store_id", storeId);
ThirdApiRes response = sfExpressApiService.notifyProductReady(requestParams);

View File

@ -832,7 +832,7 @@ public class SFExpressApiServiceImpl implements SFExpressApiService {
params.put("order_type", 1); // 1表示顺丰订单号2表示商家订单号
params.put("shop_id", shopStoreSameCityTransportBase.getShop_id());
params.put("shop_type", 2);// 1表示顺丰店铺id2表示接入方店铺id
params.put("shop_type", 1);// 1表示顺丰店铺id2表示接入方店铺id
params.put("notice_ready_time", System.currentTimeMillis() / 1000);
params.putAll(buildCommonParams());