diff --git a/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/dto/AbnormalBillDto.java b/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/dto/AbnormalBillDto.java index 5800918b..bcf0ee4e 100644 --- a/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/dto/AbnormalBillDto.java +++ b/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/dto/AbnormalBillDto.java @@ -1,8 +1,10 @@ package com.foreverwin.mesnac.anomaly.dto; import com.foreverwin.mesnac.anomaly.model.AbnormalBill; +import com.foreverwin.mesnac.meapi.model.DataFieldList; import java.time.LocalDateTime; +import java.util.List; /** * @Description TODO @@ -50,6 +52,8 @@ public class AbnormalBillDto extends AbnormalBill { private String checkUsr; + private List cancelCodeList; + public String getCheckUsr() { return checkUsr; } @@ -163,4 +167,12 @@ public class AbnormalBillDto extends AbnormalBill { public void setProductionCategory(String productionCategory) { this.productionCategory = productionCategory; } + + public List getCancelCodeList() { + return cancelCodeList; + } + + public void setCancelCodeList(List cancelCodeList) { + this.cancelCodeList = cancelCodeList; + } } diff --git a/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/service/impl/AbnormalBillServiceImpl.java b/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/service/impl/AbnormalBillServiceImpl.java index c364929f..c9630539 100644 --- a/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/service/impl/AbnormalBillServiceImpl.java +++ b/anomaly/src/main/java/com/foreverwin/mesnac/anomaly/service/impl/AbnormalBillServiceImpl.java @@ -309,11 +309,17 @@ public class AbnormalBillServiceImpl extends ServiceImpl ncCodesAndNcGroups = ncCodeService.findNcCodeDescriptionByNcCode(abnormalBill.getNcCode()); List abnormalNcCodes = new LinkedList<>(); for(int i = 0; i < ncCodesAndNcGroups.size(); i ++){ @@ -451,7 +457,13 @@ public class AbnormalBillServiceImpl extends ServiceImpl dataFieldList = dataFieldListMapper.findDataFieldList(dataField); + AbnormalBillDto abnormalBillDto = abnormalBillMapper.findAllByAbnormalNoDevice(abnormalBill, local); + abnormalBillDto.setCancelCodeList(dataFieldList); + return abnormalBillDto; } @Override @@ -480,10 +492,10 @@ public class AbnormalBillServiceImpl extends ServiceImpl Double.parseDouble(abnormalBill2.getNcQty())){ //跳过啥都不做 @@ -558,10 +575,8 @@ public class AbnormalBillServiceImpl extends ServiceImpl 0 OR SS.QTY_IN_WORK > 0) INNER JOIN SHOP_ORDER SO ON SO.HANDLE = S.SHOP_ORDER_BO INNER JOIN ITEM I ON I.HANDLE = SO.ITEM_BO LEFT JOIN ITEM_T IT ON IT.ITEM_BO = I.HANDLE AND IT.LOCALE = #{locale} - INNER JOIN Z_SFC_DISPATCH ZSD ON S.SFC = ZSD.SFC AND S.SITE = ZSD.SITE - INNER JOIN OPERATION O ON O.OPERATION = ZSD.OPERATION AND O.SITE = S.SITE AND O.CURRENT_REVISION = 'true' - INNER JOIN OPERATION_T OT ON OT.OPERATION_BO = O.HANDLE AND OT.LOCALE = #{locale} + LEFT JOIN Z_SFC_DISPATCH ZSD ON S.SFC = ZSD.SFC AND S.SITE = ZSD.SITE + LEFT JOIN OPERATION O ON O.OPERATION = ZSD.OPERATION AND O.SITE = S.SITE AND O.CURRENT_REVISION = 'true' + LEFT JOIN OPERATION_T OT ON OT.OPERATION_BO = O.HANDLE AND OT.LOCALE = #{locale} + LEFT JOIN OPERATION O2 ON O2.OPERATION = SUBSTR(SS.OPERATION_BO,INSTR(SS.OPERATION_BO,',',1,1)+1,INSTR(SS.OPERATION_BO,',',1,2) - INSTR(SS.OPERATION_BO,',') -1) + AND O2.SITE = S.SITE AND O2.CURRENT_REVISION = 'true' + LEFT JOIN OPERATION_T OT2 ON OT2.OPERATION_BO = O2.HANDLE AND OT2.LOCALE = #{locale} LEFT JOIN Z_NWA_USER ZNU ON ZNU.USER_NAME = ZSD.EMPLOYEE AND ZSD.DISPATCH_SEQ = ( SELECT MAX(ZSD2.DISPATCH_SEQ) FROM Z_SFC_DISPATCH ZSD2 WHERE S.SFC = ZSD2.SFC AND S.SITE = ZSD2.SITE ) diff --git a/common/src/main/java/com/foreverwin/mesnac/common/constant/Constants.java b/common/src/main/java/com/foreverwin/mesnac/common/constant/Constants.java index 3c3f4774..4d29163a 100644 --- a/common/src/main/java/com/foreverwin/mesnac/common/constant/Constants.java +++ b/common/src/main/java/com/foreverwin/mesnac/common/constant/Constants.java @@ -50,6 +50,8 @@ public interface Constants { String PRODUCT_SCRAP = "C";//产品报废 String MATCH = "P"; //配作 String REPAIR = "F";//返修 + String REPAIR_OUT_SOURCING = "FW";//返修(外协) + String REPAIR_NOT_ROUTER = "FB";//返修(不回原工艺) String REGULAR_REPAIR = "CG";//常规维修 String PLAN_REPAIR = "JH";//计划维修 String MAJOR_REPAIR = "DX";//大项修 diff --git a/common/src/main/java/com/foreverwin/mesnac/common/enums/AnomalyConstant.java b/common/src/main/java/com/foreverwin/mesnac/common/enums/AnomalyConstant.java index 567dbbfa..71169c98 100644 --- a/common/src/main/java/com/foreverwin/mesnac/common/enums/AnomalyConstant.java +++ b/common/src/main/java/com/foreverwin/mesnac/common/enums/AnomalyConstant.java @@ -224,7 +224,10 @@ public enum AnomalyConstant { AnomalyMethod3("R","让步放行"), AnomalyMethod4("C","产品报废"), AnomalyMethod5("P","配作"), - AnomalyMethod6("F","返修"); + AnomalyMethod6("F","返修"), + AnomalyMethod7("FW","返修(外协)"), + AnomalyMethod8("FB","返修(不返回原工艺)"); + diff --git a/production/src/main/java/com/foreverwin/mesnac/production/mapper/SfcCrossMapper.java b/production/src/main/java/com/foreverwin/mesnac/production/mapper/SfcCrossMapper.java index 59a92ee6..273576e5 100644 --- a/production/src/main/java/com/foreverwin/mesnac/production/mapper/SfcCrossMapper.java +++ b/production/src/main/java/com/foreverwin/mesnac/production/mapper/SfcCrossMapper.java @@ -1,7 +1,6 @@ package com.foreverwin.mesnac.production.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.core.metadata.IPage; import com.foreverwin.mesnac.meapi.dto.SfcDto; import com.foreverwin.mesnac.meapi.model.Sfc; import com.foreverwin.mesnac.meapi.model.ShopOrder; @@ -53,11 +52,10 @@ public interface SfcCrossMapper extends BaseMapper { /** * 查找工艺路线的最后一道工序 - * @param page - * @param routerBo + * @param sfcBo * @return */ - StepOperation findRouterLastOperationByRouterBo(IPage page, @Param("routerBo") String routerBo); + List findRouterLastOperationByRouterBo(@Param("sfcBo") String sfcBo); List getResourceBySfc(@Param("site") String site, @Param("sfc") String sfc); diff --git a/production/src/main/java/com/foreverwin/mesnac/production/mapper/SplitSfcMapper.java b/production/src/main/java/com/foreverwin/mesnac/production/mapper/SplitSfcMapper.java index 4ca6d14e..d1735dfa 100644 --- a/production/src/main/java/com/foreverwin/mesnac/production/mapper/SplitSfcMapper.java +++ b/production/src/main/java/com/foreverwin/mesnac/production/mapper/SplitSfcMapper.java @@ -7,6 +7,8 @@ import com.foreverwin.mesnac.production.model.SplitSfc; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; +import java.util.List; + /** *

* 产品条码拆分表 Mapper 接口 @@ -20,6 +22,9 @@ public interface SplitSfcMapper extends BaseMapper { SfcDto getSfcData(@Param("handle") String handle); - SplitSfcDto getAbnormalQty(@Param("site") String site, @Param("sfc") String sfc, @Param("operation") String operation,@Param("abnormalNo") String abnormalNo); + SplitSfcDto getAbnormalQty(@Param("site") String site, @Param("sfc") String sfc, @Param("stepId") String stepId,@Param("abnormalNo") String abnormalNo); + + void updateSfcRouterInUse(@Param("sfcRouterBo") String sfcRouterRef, @Param("isUse") String isUse, @Param("completed") String completed); + List getCompleteSfcData(@Param("handle") String handle); } \ No newline at end of file diff --git a/production/src/main/java/com/foreverwin/mesnac/production/model/StepOperation.java b/production/src/main/java/com/foreverwin/mesnac/production/model/StepOperation.java index 2459a164..a03b13ad 100644 --- a/production/src/main/java/com/foreverwin/mesnac/production/model/StepOperation.java +++ b/production/src/main/java/com/foreverwin/mesnac/production/model/StepOperation.java @@ -8,6 +8,9 @@ import java.math.BigDecimal; * 时间: 2021-6-29 08:48 */ public class StepOperation { + private String handle; + + private String routerBo; private String operationBo; @@ -31,6 +34,32 @@ public class StepOperation { private String resourceBo; + private String resrce; + + public String getResrce() { + return resrce; + } + + public void setResrce(String resrce) { + this.resrce = resrce; + } + + public String getRouterBo() { + return routerBo; + } + + public void setRouterBo(String routerBo) { + this.routerBo = routerBo; + } + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + public String getResourceBo() { return resourceBo; } diff --git a/production/src/main/java/com/foreverwin/mesnac/production/service/impl/SplitSfcServiceImpl.java b/production/src/main/java/com/foreverwin/mesnac/production/service/impl/SplitSfcServiceImpl.java index e322f3ad..27593128 100644 --- a/production/src/main/java/com/foreverwin/mesnac/production/service/impl/SplitSfcServiceImpl.java +++ b/production/src/main/java/com/foreverwin/mesnac/production/service/impl/SplitSfcServiceImpl.java @@ -14,22 +14,25 @@ import com.foreverwin.mesnac.common.util.StringUtil; import com.foreverwin.mesnac.meapi.dto.RouterStepDto; import com.foreverwin.mesnac.meapi.dto.SfcDto; import com.foreverwin.mesnac.meapi.model.Router; +import com.foreverwin.mesnac.meapi.model.Sfc; +import com.foreverwin.mesnac.meapi.service.OperationService; import com.foreverwin.mesnac.meapi.service.RouterService; import com.foreverwin.mesnac.meapi.service.RouterStepService; -import com.foreverwin.mesnac.meapi.service.ShopOrderService; +import com.foreverwin.mesnac.meapi.service.SfcService; import com.foreverwin.mesnac.production.dto.SplitSfcDto; +import com.foreverwin.mesnac.production.mapper.SfcCrossMapper; import com.foreverwin.mesnac.production.mapper.SplitSfcMapper; import com.foreverwin.mesnac.production.model.SplitSfc; +import com.foreverwin.mesnac.production.model.StepOperation; +import com.foreverwin.mesnac.production.service.SfcCrossService; import com.foreverwin.mesnac.production.service.SplitSfcService; import com.foreverwin.modular.core.exception.BaseException; import com.foreverwin.modular.core.meext.MEServices; import com.foreverwin.modular.core.util.CommonMethods; import com.foreverwin.modular.core.util.FrontPage; import com.sap.me.nonconformance.*; -import com.sap.me.production.SplitSerializeServiceInterface; -import com.sap.me.production.SplitSfcDetail; -import com.sap.me.production.SplitSfcRequest; -import com.sap.me.production.SplitSfcResponse; +import com.sap.me.production.*; +import com.sap.me.status.StatusBOHandle; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -58,10 +61,16 @@ public class SplitSfcServiceImpl extends ServiceImpl i @Autowired private InspectionTaskService inspectionTaskService; @Autowired - private ShopOrderService shopOrderService; + private OperationService operationService; + @Autowired + private SfcCrossMapper sfcCrossMapper; @Autowired private RouterService routerService; @Autowired + private SfcService sfcService; + @Autowired + private SfcCrossService sfcCrossService; + @Autowired private RouterStepService routerStepService; @Autowired private CommonService commonService; @@ -92,11 +101,15 @@ public class SplitSfcServiceImpl extends ServiceImpl i //根据sfc找工单等信息 SfcDto sfcData = splitSfcMapper.getSfcData(handle); if (sfcData==null){ - throw new BaseException("未找到产品条码信息"); + Sfc sfcServiceById = sfcService.getById(handle); + if (!sfcServiceById.getStatusBo().equals(HandleEnum.STATUS.getHandle(site,"405"))){ + throw new BaseException("未找到产品条码信息"); + } + sfcData= splitSfcMapper.getCompleteSfcData(handle).get(0); } - String operation = sfcData.getOperation(); + String stepId = sfcData.getStepId(); //查询质量异常记录数量 - SplitSfcDto sfcDto=splitSfcMapper.getAbnormalQty(site,dto.getSfc(),operation,dto.getAbnormalNo()); + SplitSfcDto sfcDto=splitSfcMapper.getAbnormalQty(site,dto.getSfc(),stepId,dto.getAbnormalNo()); if (sfcDto==null){ throw new BaseException("未找到闭环关闭的质量异常"); } @@ -181,12 +194,40 @@ public class SplitSfcServiceImpl extends ServiceImpl i //根据sfc找工单等信息 SfcDto sfcData = splitSfcMapper.getSfcData(handle); - String operation = sfcData.getOperation(); + String operation ; + BigDecimal qty ; + String shopOrder; + String stepId; + String stepSequence; + String resrce = null; + boolean isComplete=false; + String routerBoBySfc = null; + String sfcRouterRef = null; if (sfcData==null){ - throw new BaseException("未找到产品条码信息"); + Sfc sfcServiceById = sfcService.getById(handle); + if (!sfcServiceById.getStatusBo().equals(new StatusBOHandle(site,"405").getValue())){ + throw new BaseException("未找到产品条码信息"); + } + StepOperation lastStep = sfcCrossMapper.findRouterLastOperationByRouterBo(handle).get(0); + qty=new BigDecimal(sfcServiceById.getQty().toString()); + operation = StringUtil.trimHandle(lastStep.getOperationBo()); + shopOrder=StringUtil.trimHandle(sfcServiceById.getShopOrderBo()); + stepId=lastStep.getStepId(); + stepSequence= String.valueOf(lastStep.getSequence()); + routerBoBySfc=lastStep.getRouterBo(); + sfcRouterRef=lastStep.getHandle(); + resrce= lastStep.getResrce(); + isComplete=true; + }else { + qty= BigDecimal.valueOf(sfcData.getQty()); + operation = sfcData.getOperation(); + shopOrder=sfcData.getShopOrder(); + stepId=sfcData.getStepId(); + stepSequence=sfcData.getStepSequence(); } + //查询质量异常记录数量 处置工艺路线及不良代码 - SplitSfcDto splitSfcDto=splitSfcMapper.getAbnormalQty(site,sfc,operation, abnormalNo); + SplitSfcDto splitSfcDto=splitSfcMapper.getAbnormalQty(site,sfc,stepId, abnormalNo); SfcDispatchDto sfcDispatchDto = new SfcDispatchDto(); sfcDispatchDto.setSite(site); sfcDispatchDto.setSfc(sfc); @@ -201,7 +242,7 @@ public class SplitSfcServiceImpl extends ServiceImpl i if (StringUtil.isBlank(ncCode)){ throw new BaseException("异常处置未选择不良代码"); } - BigDecimal sfcQty = new BigDecimal(sfcData.getQty()); + BigDecimal sfcQty = qty; if (new BigDecimal(splitSfcDto.getNcQty()).compareTo(sfcQty)>=0){ throw new BaseException("质量异常数量大于等于于产品条码的数量,不能拆分"); } @@ -213,7 +254,14 @@ public class SplitSfcServiceImpl extends ServiceImpl i SplitSfcRequest splitSfcRequest=new SplitSfcRequest(); try { SplitSerializeServiceInterface splitService = MEServices.create("com.sap.me.production", "SplitSerializeService",site); - NCProductionServiceInterface ncProductionService = MEServices.create("com.sap.me.nonconformance", "NCProductionService",site); + if (isComplete){ + //修改状态 + updateStatus(site,handle,HandleEnum.STATUS.getHandle(site,"402")); + //调整步骤 + splitSfcMapper.updateSfcRouterInUse(sfcRouterRef,"true","false"); + placeInQueueAtStep(site, handle, routerBoBySfc, HandleEnum.OPERATION.getHandle(site,operation), sfcRouterRef, qty, stepId); + + } //拆sfc List newList=new ArrayList<>(); SplitSfcDetail splitDetail=new SplitSfcDetail(); @@ -225,39 +273,19 @@ public class SplitSfcServiceImpl extends ServiceImpl i SplitSfcResponse splitSfcResponse = splitSfcResponses.iterator().next(); String newSfcRef = splitSfcResponse.getNewSfcRef(); String newSfc = StringUtil.trimHandle(newSfcRef); - if(abnormalMethod.equals("F")&&StringUtil.notBlank(routerBo)){ - //记录不合格 - CreateNCRequest createNCRequest=new CreateNCRequest(); - createNCRequest.setQty(splitQty); - createNCRequest.setSfcRef(newSfcRef); - ProductionContext productionContext=new ProductionContext(); - StepIdentifier stepIdentifier=new StepIdentifier(); - stepIdentifier.setStepId(sfcData.getStepId()); - stepIdentifier.setOperationId(sfcData.getOperation()); - productionContext.setStepIdentifier(stepIdentifier); - String resrceBo = commonService.getResrceByOperation(operation); - productionContext.setResourceRef(resrceBo); - createNCRequest.setProdCtx(productionContext); - createNCRequest.setNcCodeRef(HandleEnum.NC_CODE.getHandle(site,splitNcCode[0])); - ncProductionService.createNC(createNCRequest); - //不合格处置特殊工艺路线 - DispositionMultipleSfcsRequest dispositionSfcsRequest=new DispositionMultipleSfcsRequest(); - List sfcs=new ArrayList<>(); - sfcs.add(newSfcRef); - dispositionSfcsRequest.setSfcs(sfcs); - dispositionSfcsRequest.setBypassStepValidation(true); - DispositionSelection dispositionSelection=new DispositionSelection(); - Router maxRevisionRouter = routerService.getMaxRevisionRouter(site, StringUtil.trimHandle(routerBo)); - dispositionSelection.setRouterRef(maxRevisionRouter.getHandle()); - dispositionSfcsRequest.setDispositionSelection(dispositionSelection); - dispositionSfcsRequest.setProdCtx(new ProductionContext()); - ncProductionService.dispositionMultipleSfcs(dispositionSfcsRequest); - List routerOperationByRouterBo = routerStepService.findRouterOperationByRouterBo(site, maxRevisionRouter.getHandle()); - if (routerOperationByRouterBo.isEmpty()){ - throw new BaseException("处置工艺路线没有步骤"); - } - sfcDispatchCommonService.saveSplitSfcDispatch(site, CommonMethods.getUser(),"R", sfcData.getShopOrder(), sfc, operation, sfcDispatchBySfc.getStepId(),newSfc, maxRevisionRouter.getHandle(), sfcData.getStepSequence()); + if (isComplete){ + //修改状态 + updateStatus(site,handle,HandleEnum.STATUS.getHandle(site,"405")); + splitSfcMapper.updateSfcRouterInUse(sfcRouterRef,"false","true"); + //Operation currentRevisionRef = operationService.getCurrentRevisionRef(site, operation); + //sfcCrossService.passAction(site,currentRevisionRef.getHandle(),resrce,handle,null); + //修改库存数量 + commonService.updateInventory(site,sfc,qty.subtract(splitQty)); } + if(abnormalMethod.equals("F")&&StringUtil.notBlank(routerBo)){ + //记录不合格和处置 + recordNc(site, shopOrder, sfc, operation, stepId, newSfc, stepSequence, splitQty, newSfcRef, splitNcCode, routerBo); + } //创建专检任务 Map paramMap=new HashMap<>(); paramMap.put("CATEGORY", Constants.INSPECTION_TYPE_P); @@ -286,4 +314,61 @@ public class SplitSfcServiceImpl extends ServiceImpl i return null; } + private void updateStatus(String site,String sfcBo,String statusBo) throws Exception { + SfcStateServiceInterface sfcStateServiceInterface = MEServices.create("com.sap.me.production", "SfcStateService", site); + UpdateSfcStatusRequest updateSfcStatusRequest = new UpdateSfcStatusRequest(); + updateSfcStatusRequest.setSfcRef(sfcBo); + updateSfcStatusRequest.setStatusRef(statusBo); + sfcStateServiceInterface.updateSfcStatus(updateSfcStatusRequest); + } + + private void placeInQueueAtStep(String site, String sfcRef, String routerRef, String operationRef, String sfcRouterRef, BigDecimal qty, String stepId) throws Exception { + SfcRoutingServiceInterface sfcRoutingService = MEServices.create("com.sap.me.production", "SfcRoutingService",site); + PlaceInQueueAtStepRequest request=new PlaceInQueueAtStepRequest(); + request.setSfcRef(sfcRef); + request.setPlacementRouterRef(routerRef); + request.setPlacementOperationRef(operationRef); + request.setOperationSelectionType(OperationSelectionType.CURRENT_OPERATION); + request.setPlacementSfcRouterRef(sfcRouterRef); + request.setQuantity(qty); + request.setPlacementStepId(stepId); + sfcRoutingService.placeInQueueAtStep(request); + } + + private void recordNc(String site, String shopOrder, String sfc, String operation, String stepId, String newSfc, String stepSequence, BigDecimal splitQty, String newSfcRef, String[] splitNcCode, String routerBo) throws Exception { + NCProductionServiceInterface ncProductionService = MEServices.create("com.sap.me.nonconformance", "NCProductionService",site); + + //记录不合格 + CreateNCRequest createNCRequest=new CreateNCRequest(); + createNCRequest.setQty(splitQty); + createNCRequest.setSfcRef(newSfcRef); + ProductionContext productionContext=new ProductionContext(); + StepIdentifier stepIdentifier=new StepIdentifier(); + stepIdentifier.setStepId(stepId); + stepIdentifier.setOperationId(operation); + productionContext.setStepIdentifier(stepIdentifier); + String resrceBo = commonService.getResrceByOperation(operation); + productionContext.setResourceRef(resrceBo); + createNCRequest.setProdCtx(productionContext); + createNCRequest.setNcCodeRef(HandleEnum.NC_CODE.getHandle(site,splitNcCode[0])); + ncProductionService.createNC(createNCRequest); + //不合格处置特殊工艺路线 + DispositionMultipleSfcsRequest dispositionSfcsRequest=new DispositionMultipleSfcsRequest(); + List sfcs=new ArrayList<>(); + sfcs.add(newSfcRef); + dispositionSfcsRequest.setSfcs(sfcs); + dispositionSfcsRequest.setBypassStepValidation(true); + DispositionSelection dispositionSelection=new DispositionSelection(); + Router maxRevisionRouter = routerService.getMaxRevisionRouter(site, StringUtil.trimHandle(routerBo)); + dispositionSelection.setRouterRef(maxRevisionRouter.getHandle()); + dispositionSfcsRequest.setDispositionSelection(dispositionSelection); + dispositionSfcsRequest.setProdCtx(new ProductionContext()); + ncProductionService.dispositionMultipleSfcs(dispositionSfcsRequest); + List routerOperationByRouterBo = routerStepService.findRouterOperationByRouterBo(site, maxRevisionRouter.getHandle()); + if (routerOperationByRouterBo.isEmpty()){ + throw new BaseException("处置工艺路线没有步骤"); + } + sfcDispatchCommonService.saveSplitSfcDispatch(site, CommonMethods.getUser(),"R", shopOrder, sfc, operation, stepId, newSfc, maxRevisionRouter.getHandle(), stepSequence); + } + } \ No newline at end of file diff --git a/production/src/main/resources/mapper/SfcCrossMapper.xml b/production/src/main/resources/mapper/SfcCrossMapper.xml index 656b6743..a74a0295 100644 --- a/production/src/main/resources/mapper/SfcCrossMapper.xml +++ b/production/src/main/resources/mapper/SfcCrossMapper.xml @@ -10,6 +10,10 @@ + + + + + + + UPDATE SFC_ROUTER set IN_USE=#{isUse},COMPLETED=#{completed} where handle=#{sfcRouterBo} +