推送逻辑修改;

This commit is contained in:
王奎兴
2026-06-12 16:46:51 +08:00
parent fa9682ae63
commit ece27b786f
5 changed files with 229 additions and 3 deletions
@@ -1010,10 +1010,10 @@ public class StockOutOrderApplicationService {
ids.add(outOrderId);
batchPush(ids);
} else {
Long outOrderId = stockOutOrderDO.getOutOrderId();
List<Long> ids = new ArrayList<>();
String outOrderId = stockOutOrderDO.getOutOrderNumber();
List<String> ids = new ArrayList<>();
ids.add(outOrderId);
omsServiceFeign.batchPush(ids);
omsServiceFeign.batchPushByNumber(ids);
}
} catch (Exception e) {
throw new ServiceException("生成报关单失败");