package cn.stylefeng.guns.plcserver.server.COP010.impl;
|
|
|
import cn.stylefeng.guns.modular.bs.locationInfo.model.params.LocationInfoParam;
|
import cn.stylefeng.guns.modular.bs.locationInfo.model.result.LocationInfoResult;
|
import cn.stylefeng.guns.modular.bs.locationInfo.service.LocationInfoService;
|
import cn.stylefeng.guns.modular.cm.passingStationCollection.model.params.PassingStationCollectionParam;
|
import cn.stylefeng.guns.modular.cm.passingStationCollection.service.PassingStationCollectionService;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.params.ProductionOrdeInfoParam;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.result.ProductionOrdeInfoResult;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.service.ProductionOrdeInfoService;
|
import cn.stylefeng.guns.modular.sc.repairManageInfo.model.params.RepairManageInfoParam;
|
import cn.stylefeng.guns.modular.sc.repairManageInfo.model.result.RepairManageInfoResult;
|
import cn.stylefeng.guns.modular.sc.repairManageInfo.service.RepairManageInfoService;
|
import cn.stylefeng.guns.modular.sc.serialNumbersConf.model.params.SerialNumbersConfParam;
|
import cn.stylefeng.guns.modular.sc.serialNumbersConf.model.result.SerialNumbersConfResult;
|
import cn.stylefeng.guns.modular.sc.serialNumbersConf.service.SerialNumbersConfService;
|
import cn.stylefeng.guns.plcserver.opc.GlobalVariable;
|
import cn.stylefeng.guns.plcserver.opc.OPCComm;
|
import cn.stylefeng.guns.plcserver.opc.unit.OPCUnit;
|
import cn.stylefeng.guns.plcserver.opc.unit.qrCode;
|
import cn.stylefeng.guns.plcserver.server.COP010.COP010ServerInterface;
|
import cn.stylefeng.guns.plcserver.tool.DateTool;
|
import cn.stylefeng.guns.plcserver.tool.LogUtil;
|
import org.apache.commons.lang3.StringUtils;
|
import org.apache.log4j.Logger;
|
import org.openscada.opc.lib.da.Group;
|
|
import java.util.Date;
|
import java.util.List;
|
import java.util.Random;
|
|
|
public class COP010ServerInterfaceImpl implements COP010ServerInterface {
|
|
private static Logger logger;
|
LogUtil logUtil = new LogUtil();
|
static {
|
logger = Logger.getLogger(COP010ServerInterfaceImpl.class);
|
}
|
|
private OPCComm opc = OPCComm.getInstance();
|
private static Date IN_TIME = null;
|
private static String S_ORDER_CODE = "";//工单编号
|
private static String S_PRODUCT_CODE = "";//产品编号
|
private static String S_PRODUCT_TYPE= "";//产品类型
|
private static String S_PRODUCT_CODE_OLD = "";//产品编号
|
private static String S_SFC_CODE = "";//总成编码
|
private static String S_RIGHT_CODE = "";//右壳体编码
|
private static String PRODUCTION_LINE = "COP";//产线号
|
private static String LOCATION_CODE = "COP010";//工位号
|
private static String GROUP_NAME = "COP010_P";//工位号
|
private static List list = null;
|
private static Group group = null;
|
|
|
|
|
@Override
|
public void monitor() {
|
String ecpStr = "";//异常记录标记
|
try{
|
|
if(GlobalVariable.COP010_F_HEART_BEAT) {
|
|
//PC读工单
|
String isPLCStart = OPCUnit.read(opc.getCOP010_J_PLC_START());//PLC开始
|
if(isPLCStart.equals("true")){
|
String isFinish = OPCUnit.read(opc.getCOP010_J_PC_WRITE_ORDER());//PC下发工单完成
|
if(isFinish.equals("false")){
|
String isRepair = OPCUnit.read(opc.getCOP010_P_REPAIR());//是否返修
|
if(isRepair.equals("true")){
|
handleRepair();
|
}else{
|
handleOrder();
|
}
|
}
|
}
|
|
|
//PC完成
|
String isPLCFinish = OPCUnit.read(opc.getCOP010_J_PLC_FINISH());//PLC完成
|
if(isPLCFinish.equals("true")){
|
String isFinish = OPCUnit.read(opc.getCOP010_J_PC_FINISH());//PC操作完成
|
if(isFinish.equals("false")){
|
handleFinsh();
|
}
|
}
|
|
|
}else{
|
logger.info("COP010工位与PLC断开,请检查PLC或网络是否异常!");
|
}
|
|
}catch (Exception e) {
|
ecpStr ="出现异常:" + logUtil.getTrace(e);
|
}finally {
|
if(!"".equals(ecpStr)){
|
logger.info(ecpStr+"\r\n");
|
}
|
}
|
}
|
|
public void handleRepair() {
|
RepairManageInfoParam repairManageInfoParam = new RepairManageInfoParam();
|
repairManageInfoParam.setLocationCode(LOCATION_CODE);
|
repairManageInfoParam.setManageType("2");
|
repairManageInfoParam.setUpPlc("0");
|
RepairManageInfoService repairManageInfoService = opc.repairManageInfoService;
|
List<RepairManageInfoResult> list = repairManageInfoService.findListBySpec(repairManageInfoParam);
|
if(list.size()>0) {
|
RepairManageInfoResult result = list.get(0);
|
|
//自动生成唯一码
|
Random random = new Random(System.currentTimeMillis());
|
S_SFC_CODE = "COP" + random.nextLong();
|
|
|
S_ORDER_CODE = result.getWorkOrderNo();
|
S_PRODUCT_CODE = result.getProductCode();
|
S_PRODUCT_TYPE = GlobalVariable.PRODUCT_TYPE_MAP.get(S_PRODUCT_CODE);
|
String repairLocation = result.getPoorLocationCode();//
|
|
//根据工位编码查询工位表中配置的返修工位号
|
LocationInfoParam param = new LocationInfoParam();
|
param.setLocationCode(repairLocation);
|
LocationInfoService locationInfoService = opc.locationInfoService;
|
List<LocationInfoResult> results = locationInfoService.findListBySpec(param);
|
if(results.size()>0) {
|
LocationInfoResult r = results.get(0);
|
String repairLocationNo = r.getSpareField2();
|
if(null != repairLocationNo && "" != repairLocationNo){
|
OPCUnit.write(opc.getCOP010_S_ORDER_CODE(),S_ORDER_CODE); //工单编号
|
OPCUnit.write(opc.getCOP010_S_PRODUCT_CODE(), S_PRODUCT_TYPE); //产品编号
|
OPCUnit.write(opc.getCOP010_S_SFC_CODE(), S_SFC_CODE); //总成编码
|
OPCUnit.write(opc.getCOP010_P_REPAIR_LOCATION(), repairLocationNo); //返修工位号
|
OPCUnit.write(opc.getCOP010_J_PC_WRITE_ORDER(), "true"); //PC下发工单完成
|
|
//更新为已经返修上线
|
Long id = result.getId();
|
repairManageInfoParam.setId(id);
|
repairManageInfoParam.setUpPlc("1");
|
repairManageInfoService.update(repairManageInfoParam);
|
|
}else{
|
logger.info("COP010工位,handleRepair 请查询"+repairLocation+"工位是否配置返修工位号!");
|
}
|
}else{
|
logger.info("COP010工位,handleRepair 无法查询到"+repairLocation+"工位!");
|
}
|
}
|
}
|
|
//PC下发工单
|
public void handleOrder() {
|
|
IN_TIME = DateTool.getLocalTimeForDate();
|
ProductionOrdeInfoParam param = new ProductionOrdeInfoParam();
|
param.setProductionLine("");//产线
|
param.setOrderStatus("3");//工单状态
|
|
ProductionOrdeInfoService productionOrdeInfoService = opc.productionOrdeInfoService;
|
List<ProductionOrdeInfoResult> list = productionOrdeInfoService.findListBySpec(param);
|
|
if(list.size()>0) {
|
ProductionOrdeInfoResult result = list.get(0);
|
|
S_ORDER_CODE = result.getWorkOrderNo();
|
S_PRODUCT_CODE = result.getMaterialCode();
|
S_PRODUCT_TYPE = GlobalVariable.PRODUCT_TYPE_MAP.get(S_PRODUCT_CODE);
|
|
//自动生成唯一码
|
Random random = new Random(System.currentTimeMillis());
|
S_SFC_CODE = "COP"+ random.nextLong();
|
|
|
OPCUnit.write(opc.getCOP010_S_ORDER_CODE(),S_ORDER_CODE); //工单编号
|
OPCUnit.write(opc.getCOP010_S_PRODUCT_CODE(), S_PRODUCT_TYPE); //产品类型
|
OPCUnit.write(opc.getCOP010_S_SFC_CODE(), S_SFC_CODE); //总成编码
|
// OPCUnit.write(opc.getCOP010_S_RIGHT_CODE(), S_RIGHT_CODE); //右壳体编码
|
OPCUnit.write(opc.getCOP010_S_NUMBER(), result.getPlanQty().toString()); //计划数量
|
|
OPCUnit.write(opc.getCOP010_J_PC_WRITE_ORDER(), "true"); //PC下发工单完成
|
logger.info("COP010工位,handleOrder PC处理完成!2");
|
}else{
|
logger.info("COP010工位没有可执行的工单,请联系工单管理员下发该产线的工单!");
|
}
|
}
|
|
|
//PC完成
|
public void handleFinsh() {
|
if("".equals(S_ORDER_CODE)){
|
IN_TIME = DateTool.getLocalTimeForDate();
|
S_ORDER_CODE = OPCUnit.read(opc.getCOP010_S_ORDER_CODE());//工单编号
|
S_PRODUCT_TYPE = OPCUnit.read(opc.getCOP010_S_PRODUCT_CODE());//产品编号
|
S_PRODUCT_CODE = GlobalVariable.PRODUCT_CODE_MAP.get(S_PRODUCT_TYPE);
|
S_SFC_CODE = OPCUnit.read(opc.getCOP010_S_SFC_CODE());//总成编码
|
}
|
//处理过站信息
|
String S_PRODUCT_STATE_CODE = OPCUnit.read(opc.getCOP010_S_PRODUCT_STATE_CODE());
|
PassingStationCollectionParam param = new PassingStationCollectionParam();
|
param.setWorkOrderNo(S_ORDER_CODE);
|
param.setProductCode(S_PRODUCT_CODE);
|
param.setSfcCode(S_SFC_CODE);
|
param.setProductionLine(PRODUCTION_LINE);
|
param.setLocationCode(LOCATION_CODE);
|
param.setInboundTime(IN_TIME);
|
param.setOutboundTime(DateTool.getLocalTimeForDate());
|
param.setOutRsSign(S_PRODUCT_STATE_CODE);//出站是否合格
|
PassingStationCollectionService passingStationCollectionService = opc.passingStationCollectionService;
|
passingStationCollectionService.add(param);
|
|
//写完成
|
OPCUnit.write(opc.getCOP010_J_PC_FINISH(), "true"); //PC完成
|
|
logger.info("COP010工位,handleFinsh PC处理完成!");
|
}
|
|
|
}
|