Browse Source

WMSServiceImpl.java

lizw 3 months ago
parent
commit
b584244a26

+ 3 - 0
soap-gateway/src/main/java/com/galaxis/soap/wms/WMSServiceImpl.java

@@ -69,6 +69,8 @@ public class WMSServiceImpl implements WMSService {
     // 天津 D117
     private static final String D117 = "http://10.0.30.218:18999";
     private static final String D908 = "http://10.100.0.100:9908";
+    // 上海 D907
+    private static final String D907 = "http://10.100.0.100:9907";
 
     // 物流中心编码与WebService服务映射
     private static final ConcurrentMap<String, String> WMS_MAPPING = new ConcurrentHashMap<String, String>() {{
@@ -93,6 +95,7 @@ public class WMSServiceImpl implements WMSService {
         put("D118", D118); // 河南一心堂康健药业有些公司
         put("D117", D117); // 天津一心堂乾昌药业连锁有限公司
         put("D908", D908);
+        put("DA07", D907); // 上海鸿翔一心堂药业有限公司
     }};
 
     private static final ConcurrentMap<String, WMSService> SERVICE_MAPPING = new ConcurrentHashMap<>(WMS_MAPPING.size());