Merge branch 'uat-temp-wj-2412280000-44630' into dev

dev-temp-nht-202502180000-customprint
王杰 5 months ago
commit 0552ad769d

@ -16,6 +16,7 @@ import cn.estsh.i3plus.pojo.mes.model.StationResultBean;
import cn.estsh.i3plus.pojo.mes.model.StepResult;
import cn.estsh.impp.framework.boot.util.SpringContextsUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
@ -24,7 +25,7 @@ import org.springframework.util.StringUtils;
import java.util.List;
/**
* @Description :
* @Description :
* @Author : wangjie
**/
@Slf4j
@ -68,11 +69,15 @@ public class MesManyCellTriggerJumpProcessStepService extends BaseStepService {
if (CollectionUtils.isEmpty(StationWebSocket.getStationWebSocketList(clientInfo))) continue;
}
reqBean.setClientInfo(clientInfo);
reqBean.setInterfaceType(MesPcnConstWords.SHIPPING);
reqBean.setBusiType(MesPcnEnumUtil.ACTOR_RECEIVE_STRATEGY.WS_CMD_DO_SCAN.getCode());
reqBean.setForceJumpProcess(true);
shippingDispatchService.sendScanQueueNextExec(reqBean);
StationRequestBean stationRequestBean = new StationRequestBean();
BeanUtils.copyProperties(reqBean, stationRequestBean);
stationRequestBean.setWorkCenterCode(workCellExtendCfg.getWorkCenterCodeBak());
stationRequestBean.setWorkCellCode(workCellExtendCfg.getWorkCellCodeBak());
stationRequestBean.setClientInfo(clientInfo);
stationRequestBean.setInterfaceType(MesPcnConstWords.SHIPPING);
stationRequestBean.setBusiType(MesPcnEnumUtil.ACTOR_RECEIVE_STRATEGY.WS_CMD_DO_SCAN.getCode());
stationRequestBean.setForceJumpProcess(true);
shippingDispatchService.sendScanQueueNextExec(stationRequestBean);
}

Loading…
Cancel
Save