This commit is contained in:
2023-03-03 12:14:26 +08:00
parent 83424bb995
commit 139776ad07
8 changed files with 16 additions and 6 deletions

View File

@@ -288,7 +288,7 @@ public class RawFoilServiceImpl implements RawFoilService {
JSONObject raw_jo = whereJson.getJSONObject("raw_jo");
WQLObject rawTab = WQLObject.getWQLObject("PDM_BI_RawFoilWorkOrder"); // 生箔工单表
JSONObject jsonRaw = rawTab.query("mfg_order_name = '" + raw_jo.getString("mfg_order_name") + "'").uniqueResult(0);
JSONObject jsonRaw = rawTab.query("container_name = '" + raw_jo.getString("container_name") + "'").uniqueResult(0);
if (!StrUtil.equals(jsonRaw.getString("status"), "03")) throw new BadRequestException("工单不为确认下卷");
//查询该母卷号对应的任务

View File

@@ -388,7 +388,7 @@ public class ShippingServiceImpl implements ShippingService {
if (StrUtil.isEmpty(qzzno)) {
throw new BadRequestException("气涨轴不能为空!");
}
JSONArray plan = WQLObject.getWQLObject("pdm_bi_slittingproductionplan").query("qzzno = '" + qzzno + "'").getResultJSONArray(0);
JSONArray plan = WQLObject.getWQLObject("pdm_bi_slittingproductionplan").query("qzzno = '" + qzzno + "' AND is_delete = '0' AND is_child_tz_ok = '1' AND status = '01'").getResultJSONArray(0);
if (ObjectUtil.isEmpty(plan)) {
throw new BadRequestException("未找到气涨轴【" + qzzno + "】对应的分切计划!");
}

View File

@@ -53,6 +53,8 @@
ivt.empty_point_status = '02'
AND
ivt.full_point_status = '01'
AND
ivt.is_used = '1'
AND NOT EXISTS (
SELECT
@@ -87,8 +89,9 @@
ST_IVT_CoolPointIvt ivt
WHERE
ivt.full_point_status = '01'
AND NOT EXISTS (
AND
ivt.is_used = '1'
AND NOT EXISTS (
SELECT
*
FROM
@@ -195,7 +198,6 @@
OPTION 输入.container_name <> ""
der.container_name = 输入.container_name
ENDOPTION
ENDSELECT
ENDPAGEQUERY
ENDIF

View File

@@ -55,6 +55,7 @@ public class SlittingproductionplanServiceImpl implements Slittingproductionplan
String is_parent_ok = MapUtil.getStr(whereJson, "is_parent_ok");
String is_child_tz_ok = MapUtil.getStr(whereJson, "is_child_tz_ok");
String is_child_ps_ok = MapUtil.getStr(whereJson, "is_child_ps_ok");
String is_call = MapUtil.getStr(whereJson, "is_call");
String begin_time = MapUtil.getStr(whereJson, "begin_time");
String end_time = MapUtil.getStr(whereJson, "end_time");
@@ -68,6 +69,7 @@ public class SlittingproductionplanServiceImpl implements Slittingproductionplan
map.put("is_parent_ok", is_parent_ok);
map.put("is_child_tz_ok", is_child_tz_ok);
map.put("is_child_ps_ok", is_child_ps_ok);
map.put("is_call", is_call);
if (ObjectUtil.isNotEmpty(resource_name)) map.put("resource_name","%"+resource_name+"%");
if (ObjectUtil.isNotEmpty(parent_container_name)) map.put("parent_container_name","%"+parent_container_name+"%");
if (ObjectUtil.isNotEmpty(container_name)) map.put("container_name","%"+container_name+"%");

View File

@@ -26,6 +26,7 @@
输入.is_child_ps_ok TYPEAS s_string
输入.is_child_tz_ok TYPEAS s_string
输入.is_parent_ok TYPEAS s_string
输入.is_call TYPEAS s_string
[临时表]
@@ -102,6 +103,10 @@
plan.is_child_ps_ok = 输入.is_child_ps_ok
ENDOPTION
OPTION 输入.is_call <> ""
plan.is_call = 输入.is_call
ENDOPTION
OPTION 输入.begin_time <> ""
plan.manufacture_date >= 输入.begin_time
ENDOPTION

View File

@@ -315,7 +315,7 @@ public class InHotTask extends AbstractAcsTask {
} else {
json.put("priority", priority_jo.getString("value"));
}
json.put("acs_task_type", "8");
json.put("acs_task_type", "6");
tab.insert(json);
task_id = json.getString("task_id");
}