代码更新

This commit is contained in:
2023-01-29 12:46:57 +08:00
parent 9e2afda6c7
commit 69cfb2fb87

View File

@@ -125,12 +125,6 @@ public class CheckServiceImpl implements CheckService {
JSONArray ja = wo_dtl.query("check_id='" + check_id + "'").getResultJSONArray(0); JSONArray ja = wo_dtl.query("check_id='" + check_id + "'").getResultJSONArray(0);
for (int i = 0; i < ja.size(); i++) { for (int i = 0; i < ja.size(); i++) {
JSONObject jo = ja.getJSONObject(i); JSONObject jo = ja.getJSONObject(i);
//解锁起点点位、仓位
JSONObject from_start = new JSONObject();
from_start.put("lock_type", "00");
from_start.put("struct_id", jo.getString("struct_id"));
storPublicService.updateStructAndPoint(from_start);
//删除明细 //删除明细
wo_dtl.delete("checkdtl_id='" + jo.getString("checkdtl_id") + "'"); wo_dtl.delete("checkdtl_id='" + jo.getString("checkdtl_id") + "'");
} }