This commit is contained in:
loujf
2022-09-12 18:41:38 +08:00
parent c4d65ad06b
commit 4b0c817c7b
3 changed files with 9 additions and 8 deletions

View File

@@ -394,8 +394,8 @@ public class AcsToWmsServiceImpl implements AcsToWmsService {
@Override
public Map<String, Object> group(Map jsonObject) {
String task_code = (String) jsonObject.get("task_code");
String vehicle_code = (String) jsonObject.get("vehicle_code");
String task_code = jsonObject.get("task_code").toString();
String vehicle_code = jsonObject.get("vehicle_code").toString();
//永远判断生成不生成输送任务
String device_code = (String) jsonObject.get("device_code");
if (StrUtil.isEmpty(task_code)) {