Commit 24c72e02 authored by 韩桐桐's avatar 韩桐桐

两个规定一键提交逻辑修复

parent 4e3f0c3b
...@@ -1278,8 +1278,8 @@ public class PlanTaskServiceImpl implements IPlanTaskService { ...@@ -1278,8 +1278,8 @@ public class PlanTaskServiceImpl implements IPlanTaskService {
for (int i = 0; i < jsonArray.size(); i++) { for (int i = 0; i < jsonArray.size(); i++) {
JSONObject jsonObject = jsonArray.getJSONObject(i); JSONObject jsonObject = jsonArray.getJSONObject(i);
String validateName = jsonObject.getString("name"); String validateName = jsonObject.getString("name");
String validateIsOk = jsonObject.getString("isOk"); String validateIsChecked = jsonObject.getString("isChecked");
if (validateIsOk.equals("是")) { if (validateIsChecked.equals("是")) {
checkInput.setInputValue(validateName); checkInput.setInputValue(validateName);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment