|
|
@ -310,7 +310,7 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void sureProduceTask(Map jsonObject) { |
|
|
|
public Map<String, Object> sureProduceTask(Map jsonObject) { |
|
|
|
String producetask_code = (String) jsonObject.get("producetask_code"); |
|
|
|
String device_code = (String) jsonObject.get("device_code"); |
|
|
|
String material_code = (String) jsonObject.get("material_code"); |
|
|
@ -356,6 +356,11 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
taskObj.put("real_qty",qty); |
|
|
|
} |
|
|
|
taskTable.update(taskObj); |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("status", HttpStatus.OK.value()); |
|
|
|
result.put("message", "任务状态反馈成功!"); |
|
|
|
result.put("data", new JSONObject()); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|