工艺路线接口变更修改

master
Leon 3 years ago
parent c8348b38f7
commit d0068c2479

@ -442,13 +442,13 @@ public class InterfaceServiceImpl implements InterfaceService {
* 2.MES=_ERP
* 3.MES=MES
*/
String erpWorkCenter = componentDto.getOPERATION();
if (StringUtil.isBlank(erpWorkCenter)) {
throw BusinessException.build("BOM节点下字段【OPERATION】不能为空!");
String stepId = componentDto.getSTEP_ID();
if (StringUtil.isBlank(stepId)) {
throw BusinessException.build("步骤标示不能为空!");
}
Operation operationModel = operationService.queryOperationByErpWorkCenter(site, erpWorkCenter);
Operation operationModel = operationService.getOperationByRouterStepId(site, bom, stepId);
if (operationModel == null) {
throw BusinessException.build("ERP工作中心【" +erpWorkCenter+"】对应的MES工序未维护");
throw BusinessException.build("步骤标识【"+stepId+"】在工艺路线【"+bom+"】未到对应的工序");
}
String operationBo = operationModel.getHandle();
@ -532,18 +532,6 @@ public class InterfaceServiceImpl implements InterfaceService {
String stepId = routerStepDto.getSTEP_ID();
String erpWorkCenter = routerStepDto.getOPERATION().trim();
String operation = null;
String operationBo = null;
if (StringUtil.isBlank(erpWorkCenter)) {
operation = (i == 0) ? "HJ01_6106GX" : "6106GX";
Operation operationModel = operationService.getCurrentRevisionRef(site, operation);
if (operationModel == null) {
throw BusinessException.build("工序编号【" +operation+ "】不存在");
}
operation = operationModel.getOperation();
operationBo = operationModel.getHandle();
} else {
if (StringUtil.isBlank(entryRouterStep)) {
entryRouterStep = stepId;
}
@ -555,7 +543,17 @@ public class InterfaceServiceImpl implements InterfaceService {
routerStepList.get(i - 1).getRouterNextStepList().add(routerNextStep);
}
String operation = null;
String operationBo = null;
if (StringUtil.isBlank(erpWorkCenter)) {
operation = "6106GX";
Operation operationModel = operationService.getCurrentRevisionRef(site, operation);
if (operationModel == null) {
throw BusinessException.build("工序编号【" +operation+ "】不存在");
}
operation = operationModel.getOperation();
operationBo = operationModel.getHandle();
} else {
/**
*
* 1.ERP
@ -680,6 +678,18 @@ public class InterfaceServiceImpl implements InterfaceService {
if (StringUtil.isBlank(plannedItem)) {
throw BusinessException.build("工单的计划物料不能拿为空");
}
//查询物料清单和工艺路线
Bom bomModel = bomService.getMaxRevisionBom(site, plannedBom);
if (bomModel == null) {
throw BusinessException.build("工单【" +shopOrder+ "】的物料清单未同步!");
}
Router routerModel = routerService.getMaxRevisionRouter(site, plannedRouter);
if (routerModel == null) {
throw BusinessException.build("工单【" +shopOrder+ "】的工艺路线未同步!");
}
String plannedItemBo = HandleEnum.ITEM.getHandle(site, plannedItem, "A");
String plannedBomBo = HandleEnum.BOM.getHandle(site, plannedBom, bomType, "#");
String plannedRouterBo = HandleEnum.ROUTER.getHandle(site, plannedRouter, routerType, "#");

@ -29,5 +29,5 @@ public interface OperationMapper extends BaseMapper<Operation> {
IPage<Operation> selectOperationStep( IPage<Operation> page, @Param("locale") String locale,@Param("ew") Wrapper<Operation> wrapper);
Operation selectOperationByRouterStepId(@Param("site") String site, @Param("router") String router, @Param("stepId") String stepId);
}

@ -40,4 +40,13 @@ public interface OperationService extends IService<Operation> {
*/
Operation queryOperationByErpWorkCenter(String site, String erpWorkCenter);
/**
* By 线&
*
* @param site
* @param router
* @param stepId
* @return
*/
Operation getOperationByRouterStepId(String site, String router, String stepId);
}

@ -66,7 +66,10 @@ public class OperationServiceImpl extends ServiceImpl<OperationMapper, Operation
return operationMapper.queryOperationByErpWorkCenter(site, erpWorkCenter);
}
@Override
public Operation getOperationByRouterStepId(String site, String router, String stepId) {
return operationMapper.selectOperationByRouterStepId(site, router, stepId);
}
}

@ -636,5 +636,12 @@
ORDER BY RS.STEP_ID
</select>
<select id="selectOperationByRouterStepId" resultMap="BaseResultMap">
SELECT OP.HANDLE, OP.CHANGE_STAMP, OP.SITE, OP.OPERATION, OP.TYPE, OP.SPECIAL_ROUTER_BO, OP.STATUS_BO, OP.RESOURCE_TYPE_BO, OP.REVISION, OP.CURRENT_REVISION, OP.EFF_START_DATE, OP.EFF_END_DATE, OP.CREATED_DATE_TIME, OP.MODIFIED_DATE_TIME, OP.PCA_DASHBOARD_MODE, OP.DEFAULT_NC_CODE_BO, OP.FAILURE_TRACKING_CONFIG_BO, OP.RESOURCE_BO, OP.MAX_LOOP, OP.REQUIRED_TIME_IN_PROCESS, OP.REPORTING_STEP, OP.PREV_SITE, OP.ORIGINAL_TRANSFER_KEY, OP.SPECIAL_INSTRUCTION, OP.REPORTING_CENTER_BO, OP.ERP_CONTROL_KEY_BO, OP.ERP_WORK_CENTER_BO
FROM ROUTER RT
INNER JOIN ROUTER_STEP RS ON RS.ROUTER_BO = RT.HANDLE
INNER JOIN ROUTER_OPERATION RO ON RO.ROUTER_STEP_BO = RS.HANDLE
INNER JOIN OPERATION OP ON RO.OPERATION_BO = 'OperationBO:' ||OP.SITE||','||OP.OPERATION||',#' AND OP.CURRENT_REVISION = 'true'
WHERE RT.SITE = #{site} AND RT.ROUTER = #{router} AND RS.STEP_ID = #{stepId}
</select>
</mapper>

Loading…
Cancel
Save