This commit is contained in:
zds
2022-08-04 17:20:43 +08:00
parent 247e948ce4
commit 588b9bdf83
3 changed files with 9 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ public class DailyplanServiceImpl implements DailyplanService {
map.put("material_code", "%" + material_code + "%"); map.put("material_code", "%" + material_code + "%");
} }
map.put("flag", "1"); map.put("flag", "1");
JSONObject jret = WQL.getWO("QPDM_PRODUCTDAILYPLAN").addParamMap(map).pageQuery(WqlUtil.getHttpContext(page), "pp.planstart_date"); JSONObject jret = WQL.getWO("QPDM_PRODUCTDAILYPLAN").addParamMap(map).pageQuery(WqlUtil.getHttpContext(page), "pp.planstart_date,pp.plan_code");
JSONArray json = jret.getJSONArray("content"); JSONArray json = jret.getJSONArray("content");
JSONArray ja = new JSONArray(); JSONArray ja = new JSONArray();
for(int i=0;i<json.size();i++){ for(int i=0;i<json.size();i++){

View File

@@ -140,7 +140,7 @@
OPTION 输入.device_id <> "" OPTION 输入.device_id <> ""
pp.device_id = 输入.device_id pp.device_id = 输入.device_id
ENDOPTION ENDOPTION
order by pp.planstart_date order by pp.planstart_date,pp.plan_code
ENDSELECT ENDSELECT
ENDQUERY ENDQUERY
ENDIF ENDIF

View File

@@ -26,6 +26,7 @@
<el-table <el-table
ref="dragTable" ref="dragTable"
:data="tableDtl" :data="tableDtl"
row-key="dailyplan_id"
style="width: 100%;" style="width: 100%;"
border border
:highlight-current-row="true" :highlight-current-row="true"