|
|
|
@ -3,7 +3,9 @@ package com.foreverwin.mesnac.dispatch.service.impl;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.foreverwin.mesnac.common.constant.Constants;
|
|
|
|
|
import com.foreverwin.mesnac.common.enums.HandleEnum;
|
|
|
|
|
import com.foreverwin.mesnac.common.ftp.CappFtpClient;
|
|
|
|
|
import com.foreverwin.mesnac.common.util.ExceptionUtil;
|
|
|
|
|
import com.foreverwin.mesnac.common.util.GetDrawingVersionUtil;
|
|
|
|
|
import com.foreverwin.mesnac.common.util.StringUtil;
|
|
|
|
|
import com.foreverwin.mesnac.dispatch.dto.RouterDTO;
|
|
|
|
|
import com.foreverwin.mesnac.dispatch.mapper.ShopOrderReleaseMapper;
|
|
|
|
@ -23,11 +25,13 @@ import com.sap.me.demand.ReleaseShopOrderResponse;
|
|
|
|
|
import com.sap.me.demand.ReleasedSfc;
|
|
|
|
|
import com.sap.me.demand.ShopOrderServiceInterface;
|
|
|
|
|
import com.sap.me.nonconformance.NCProductionServiceInterface;
|
|
|
|
|
import org.apache.commons.net.ftp.FTPClient;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import org.springframework.transaction.interceptor.TransactionAspectSupport;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import java.util.*;
|
|
|
|
@ -72,7 +76,8 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
private BomComponentService bomComponentService;
|
|
|
|
|
@Autowired
|
|
|
|
|
private BomService bomService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private CappFtpClient cappFtpClient;
|
|
|
|
|
@Override
|
|
|
|
|
public List<RouterDTO> selectShopOrderRouter(String routerBo) {
|
|
|
|
|
return shopOrderReleaseMapper.selectShopOrderRouter(routerBo);
|
|
|
|
@ -130,7 +135,7 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public Boolean shopOrderRelease(String site, String user,StringBuffer message,ShopOrderRelease shopOrderRelease) {
|
|
|
|
|
public Boolean shopOrderRelease(String site, String user,StringBuffer message,ShopOrderRelease shopOrderRelease) throws IOException {
|
|
|
|
|
//工单标准服务
|
|
|
|
|
ShopOrderServiceInterface shopOrderServiceInterface = null;
|
|
|
|
|
try {
|
|
|
|
@ -200,7 +205,6 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
//组装派工数据
|
|
|
|
|
for (int i = 0 ; i < sfcList.size(); i++) {
|
|
|
|
|
ReleasedSfc releasedSfc = sfcList.get(i);
|
|
|
|
|
|
|
|
|
|
Sfc sfcModel = new Sfc();
|
|
|
|
|
sfcModel.setSfc(releasedSfc.getSfc());
|
|
|
|
|
sfcModel.setQty(releasedSfc.getQuantity().doubleValue());
|
|
|
|
@ -213,7 +217,7 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**派工--按工序**/
|
|
|
|
|
@Override
|
|
|
|
|
public void sfcDispatch(String site, String user, ShopOrder shopOrderModel, Sfc sfcModel, List<RouterDTO> routerList) {
|
|
|
|
|
public void sfcDispatch(String site, String user, ShopOrder shopOrderModel, Sfc sfcModel, List<RouterDTO> routerList) throws IOException {
|
|
|
|
|
LocalDateTime nowDate = LocalDateTime.now();
|
|
|
|
|
|
|
|
|
|
String router = routerList.get(0).getRouter();
|
|
|
|
@ -233,11 +237,13 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String sfc = sfcModel.getSfc();
|
|
|
|
|
String itemBo=sfcModel.getItemBo();
|
|
|
|
|
String shopOrder = shopOrderModel.getShopOrder();
|
|
|
|
|
String stepId = "";
|
|
|
|
|
String nextStepBo = "";
|
|
|
|
|
String operation = "";
|
|
|
|
|
String routerStepBo = entryRouterStepBo;
|
|
|
|
|
|
|
|
|
|
//首工序计划开始时间为工单计划开始时间
|
|
|
|
|
//LocalDateTime plannedStartDate = shopOrderModel.getPlannedStartDate();
|
|
|
|
|
//LocalDateTime plannedCompleteDate = shopOrderModel.getPlannedStartDate();
|
|
|
|
@ -250,87 +256,101 @@ public class ShopOrderReleaseServiceImpl implements ShopOrderReleaseService {
|
|
|
|
|
List<SfcDispatch> sfcDispatchList = new ArrayList<>();
|
|
|
|
|
//--------------------------------------------------------------------------------------------------------------
|
|
|
|
|
//循环步骤标识记录派工数据
|
|
|
|
|
for (int m = 0 ; m < map.size(); m++) {
|
|
|
|
|
RouterDTO routerDTO = map.get(routerStepBo);
|
|
|
|
|
if (routerDTO == null) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
operation = routerDTO.getOperation();
|
|
|
|
|
if (StringUtil.isBlank(operation)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stepId = routerDTO.getStepId();
|
|
|
|
|
nextStepBo = routerDTO.getNextStepBo();
|
|
|
|
|
if (StringUtils.isBlank(nextStepBo) && m != map.size() -1) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
String isFirstOperation = (m == 0) ? Constants.BOOL_TRUE : Constants.BOOL_FALSE;
|
|
|
|
|
|
|
|
|
|
Double prodHours = new Double(this.prodHoursCl(operation, routerDTO.getProdHours()));
|
|
|
|
|
//计算完成时间
|
|
|
|
|
//plannedCompleteDate = plannedStartDate.plusMinutes(prodHours.longValue());
|
|
|
|
|
//登录Capp的FTP文件服务器
|
|
|
|
|
FTPClient connect = null;
|
|
|
|
|
try {
|
|
|
|
|
connect = cappFtpClient.login();
|
|
|
|
|
for (int m = 0 ; m < map.size(); m++) {
|
|
|
|
|
RouterDTO routerDTO = map.get(routerStepBo);
|
|
|
|
|
if (routerDTO == null) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
operation = routerDTO.getOperation();
|
|
|
|
|
if (StringUtil.isBlank(operation)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//查询工序所属车间
|
|
|
|
|
String workCenter = null;
|
|
|
|
|
if (operation.contains("_")) {
|
|
|
|
|
workCenter = operation.split("_")[0];
|
|
|
|
|
} else {
|
|
|
|
|
workCenter = operation;
|
|
|
|
|
}
|
|
|
|
|
String workCenterBo = HandleEnum.WORK_CENTER.getHandle(site, workCenter);
|
|
|
|
|
WorkCenter workCenterModel = workCenterService.getById(workCenterBo);
|
|
|
|
|
if (workCenterModel == null) {
|
|
|
|
|
throw BusinessException.build("生产车间【" +workCenter+ "】不存在");
|
|
|
|
|
}
|
|
|
|
|
stepId = routerDTO.getStepId();
|
|
|
|
|
nextStepBo = routerDTO.getNextStepBo();
|
|
|
|
|
if (StringUtils.isBlank(nextStepBo) && m != map.size() -1) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
String isFirstOperation = (m == 0) ? Constants.BOOL_TRUE : Constants.BOOL_FALSE;
|
|
|
|
|
|
|
|
|
|
Double prodHours = new Double(this.prodHoursCl(operation, routerDTO.getProdHours()));
|
|
|
|
|
//计算完成时间
|
|
|
|
|
//plannedCompleteDate = plannedStartDate.plusMinutes(prodHours.longValue());
|
|
|
|
|
|
|
|
|
|
//查询工序所属车间
|
|
|
|
|
String workCenter = null;
|
|
|
|
|
if (operation.contains("_")) {
|
|
|
|
|
workCenter = operation.split("_")[0];
|
|
|
|
|
} else {
|
|
|
|
|
workCenter = operation;
|
|
|
|
|
}
|
|
|
|
|
String workCenterBo = HandleEnum.WORK_CENTER.getHandle(site, workCenter);
|
|
|
|
|
WorkCenter workCenterModel = workCenterService.getById(workCenterBo);
|
|
|
|
|
if (workCenterModel == null) {
|
|
|
|
|
throw BusinessException.build("生产车间【" +workCenter+ "】不存在");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//派工数据
|
|
|
|
|
String dispatchNo = sfc + "-" + stepId;
|
|
|
|
|
SfcDispatch sfcDispatchModel = new SfcDispatch();
|
|
|
|
|
sfcDispatchModel.setHandle(HandleEnum.SFC_DISPATCH.getHandle(site, dispatchNo));
|
|
|
|
|
sfcDispatchModel.setSite(site);
|
|
|
|
|
sfcDispatchModel.setShopOrder(shopOrder);
|
|
|
|
|
sfcDispatchModel.setSfc(sfc);
|
|
|
|
|
sfcDispatchModel.setDispatchSeq((m + 1)+"");
|
|
|
|
|
sfcDispatchModel.setDispatchNo(dispatchNo);
|
|
|
|
|
sfcDispatchModel.setDispatchStatus(Constants.STATUS_NEW);
|
|
|
|
|
sfcDispatchModel.setDrawingsNo("");
|
|
|
|
|
sfcDispatchModel.setDrawingsRevision("");
|
|
|
|
|
sfcDispatchModel.setIsLock(Constants.STATUS_N);
|
|
|
|
|
sfcDispatchModel.setRouterBo(routerBo);
|
|
|
|
|
sfcDispatchModel.setStepId(stepId);
|
|
|
|
|
sfcDispatchModel.setOperation(operation);
|
|
|
|
|
sfcDispatchModel.setResourceType(routerDTO.getResourceType());
|
|
|
|
|
sfcDispatchModel.setWorkCenter(workCenter);
|
|
|
|
|
sfcDispatchModel.setDispatchQty(sfcModel.getQty());
|
|
|
|
|
sfcDispatchModel.setProdHours(prodHours);
|
|
|
|
|
sfcDispatchModel.setTurnOperation("false");
|
|
|
|
|
//sfcDispatchModel.setPlannedStartDate(plannedStartDate);
|
|
|
|
|
//sfcDispatchModel.setPlannedCompleteDate(plannedCompleteDate);
|
|
|
|
|
sfcDispatchModel.setSoReleasedDate(nowDate);
|
|
|
|
|
sfcDispatchModel.setIsDispatch(Constants.BOOL_FALSE);
|
|
|
|
|
sfcDispatchModel.setIsImport(Constants.BOOL_FALSE);
|
|
|
|
|
sfcDispatchModel.setIsFirstOperation(isFirstOperation);
|
|
|
|
|
sfcDispatchModel.setPrepositionStepId(prepositionStepId);
|
|
|
|
|
sfcDispatchModel.setPrepositionOperation(prepositionOperation);
|
|
|
|
|
sfcDispatchModel.setCreateUser(user);
|
|
|
|
|
sfcDispatchModel.setCreatedDateTime(nowDate);
|
|
|
|
|
sfcDispatchModel.setModifyUser(user);
|
|
|
|
|
sfcDispatchModel.setModifiedDateTime(nowDate);
|
|
|
|
|
sfcDispatchModel.setOther1("false");
|
|
|
|
|
sfcDispatchList.add(sfcDispatchModel);
|
|
|
|
|
//派工数据
|
|
|
|
|
String dispatchNo = sfc + "-" + stepId;
|
|
|
|
|
SfcDispatch sfcDispatchModel = new SfcDispatch();
|
|
|
|
|
sfcDispatchModel.setHandle(HandleEnum.SFC_DISPATCH.getHandle(site, dispatchNo));
|
|
|
|
|
sfcDispatchModel.setSite(site);
|
|
|
|
|
sfcDispatchModel.setShopOrder(shopOrder);
|
|
|
|
|
sfcDispatchModel.setSfc(sfc);
|
|
|
|
|
sfcDispatchModel.setDispatchSeq((m + 1)+"");
|
|
|
|
|
sfcDispatchModel.setDispatchNo(dispatchNo);
|
|
|
|
|
sfcDispatchModel.setDispatchStatus(Constants.STATUS_NEW);
|
|
|
|
|
sfcDispatchModel.setDrawingsNo("");
|
|
|
|
|
sfcDispatchModel.setDrawingsRevision(GetDrawingVersionUtil.GetDrawingVerson(itemBo, connect));
|
|
|
|
|
// sfcDispatchModel.setDrawingsRevision("");
|
|
|
|
|
sfcDispatchModel.setIsLock(Constants.STATUS_N);
|
|
|
|
|
sfcDispatchModel.setRouterBo(routerBo);
|
|
|
|
|
sfcDispatchModel.setStepId(stepId);
|
|
|
|
|
sfcDispatchModel.setOperation(operation);
|
|
|
|
|
sfcDispatchModel.setResourceType(routerDTO.getResourceType());
|
|
|
|
|
sfcDispatchModel.setWorkCenter(workCenter);
|
|
|
|
|
sfcDispatchModel.setDispatchQty(sfcModel.getQty());
|
|
|
|
|
sfcDispatchModel.setProdHours(prodHours);
|
|
|
|
|
sfcDispatchModel.setTurnOperation("false");
|
|
|
|
|
//sfcDispatchModel.setPlannedStartDate(plannedStartDate);
|
|
|
|
|
//sfcDispatchModel.setPlannedCompleteDate(plannedCompleteDate);
|
|
|
|
|
sfcDispatchModel.setSoReleasedDate(nowDate);
|
|
|
|
|
sfcDispatchModel.setIsDispatch(Constants.BOOL_FALSE);
|
|
|
|
|
sfcDispatchModel.setIsImport(Constants.BOOL_FALSE);
|
|
|
|
|
sfcDispatchModel.setIsFirstOperation(isFirstOperation);
|
|
|
|
|
sfcDispatchModel.setPrepositionStepId(prepositionStepId);
|
|
|
|
|
sfcDispatchModel.setPrepositionOperation(prepositionOperation);
|
|
|
|
|
sfcDispatchModel.setCreateUser(user);
|
|
|
|
|
sfcDispatchModel.setCreatedDateTime(nowDate);
|
|
|
|
|
sfcDispatchModel.setModifyUser(user);
|
|
|
|
|
sfcDispatchModel.setModifiedDateTime(nowDate);
|
|
|
|
|
sfcDispatchModel.setOther1("false");
|
|
|
|
|
sfcDispatchList.add(sfcDispatchModel);
|
|
|
|
|
|
|
|
|
|
//计划开始时间累加
|
|
|
|
|
//plannedStartDate = plannedCompleteDate;
|
|
|
|
|
//计划开始时间累加
|
|
|
|
|
//plannedStartDate = plannedCompleteDate;
|
|
|
|
|
|
|
|
|
|
//赋值下一步骤
|
|
|
|
|
routerStepBo = routerDTO.getNextStepBo();
|
|
|
|
|
//赋值下一步骤
|
|
|
|
|
routerStepBo = routerDTO.getNextStepBo();
|
|
|
|
|
|
|
|
|
|
//前置工序&步骤赋值
|
|
|
|
|
prepositionStepId = stepId;
|
|
|
|
|
prepositionOperation = operation;
|
|
|
|
|
//前置工序&步骤赋值
|
|
|
|
|
prepositionStepId = stepId;
|
|
|
|
|
prepositionOperation = operation;
|
|
|
|
|
}
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
ExceptionUtil.throwException(e);
|
|
|
|
|
}
|
|
|
|
|
finally {
|
|
|
|
|
if (connect!=null&&connect.isConnected()){
|
|
|
|
|
connect.logout();
|
|
|
|
|
connect.disconnect();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//批量插入工位&人员派工数据
|
|
|
|
|
sfcDispatchService.saveBatch(sfcDispatchList);
|
|
|
|
|
}
|
|
|
|
|