Browse Source

bug修复

hu 3 months ago
parent
commit
44120be0c9

+ 2 - 0
src/custom/restcontroller/webmanage/sale/serviceorder/serviceorder.java

@@ -707,6 +707,7 @@ public class serviceorder extends Controller {
                 workpresetInfo.setSignature(row.getLong("signature"));
                 workpresetInfo.setPasscheck(row.getLong("passcheck"));
                 workpresetInfo.setQuestionedit(row.getLong("questionedit"));
+                workpresetInfo.setQuestionoption(row.getString("questionoption"));
                 String workpresetjson = JSONObject.toJSONString(workpresetInfo);
                 SQLFactory sqlFactory = new SQLFactory(this, "服务工单流程节点新增");
                 long sa_workorder_nodeid = createTableID("sa_workorder_node");
@@ -737,6 +738,7 @@ public class serviceorder extends Controller {
                         workpresetInfo1.setSignature(row2.getLong("signature"));
                         workpresetInfo1.setPasscheck(row.getLong("passcheck"));
                         workpresetInfo1.setQuestionedit(row.getLong("questionedit"));
+                        workpresetInfo1.setQuestionoption(row.getString("questionoption"));
                         String workpresetjson1 = JSONObject.toJSONString(workpresetInfo1);
                         SQLFactory sqlFactory1 = new SQLFactory(this, "服务工单流程节点新增");
                         sqlFactory1.addParameter("sa_workorder_nodeid", createTableID("sa_workorder_node"));

+ 3 - 0
src/custom/restcontroller/webmanage/sale/workorder/workorder.java

@@ -1138,6 +1138,7 @@ public class workorder extends Controller {
                 workpresetInfo.setSignature(row.getLong("signature"));
                 workpresetInfo.setPasscheck(row.getLong("passcheck"));
                 workpresetInfo.setQuestionedit(row.getLong("questionedit"));
+                workpresetInfo.setQuestionoption(row.getString("questionoption"));
                 String workpresetjson = JSONObject.toJSONString(workpresetInfo);
                 SQLFactory sqlFactory = new SQLFactory(this, "服务工单流程节点新增");
                 long sa_workorder_nodeid = createTableID("sa_workorder_node");
@@ -1168,6 +1169,7 @@ public class workorder extends Controller {
                         workpresetInfo1.setSignature(row2.getLong("signature"));
                         workpresetInfo1.setPasscheck(row.getLong("passcheck"));
                         workpresetInfo1.setQuestionedit(row.getLong("questionedit"));
+                        workpresetInfo1.setQuestionoption(row.getString("questionoption"));
                         String workpresetjson1 = JSONObject.toJSONString(workpresetInfo1);
                         SQLFactory sqlFactory1 = new SQLFactory(this, "服务工单流程节点新增");
                         sqlFactory1.addParameter("sa_workorder_nodeid", createTableID("sa_workorder_node"));
@@ -1326,6 +1328,7 @@ public class workorder extends Controller {
             workpresetInfo.setSignature(row.getLong("signature"));
             workpresetInfo.setPasscheck(row.getLong("passcheck"));
             workpresetInfo.setQuestionedit(row.getLong("questionedit"));
+            workpresetInfo.setQuestionoption(row.getString("questionoption"));
             jsonObject = JSONArray.parseObject(JSON.toJSONString(workpresetInfo));
 
         }

+ 9 - 0
src/custom/restcontroller/webmanage/sale/workorder/workpresetInfo.java

@@ -19,8 +19,17 @@ public class workpresetInfo {
 	private Long signature;
 	private Long passcheck;
 	private Long questionedit;
+	private String questionoption;
 
 
+	public String getQuestionoption() {
+		return questionoption;
+	}
+
+	public void setQuestionoption(String questionoption) {
+		this.questionoption = questionoption;
+	}
+
 	public Long getPasscheck() {
 		return passcheck;
 	}