package cn.stylefeng.guns.plcserver.server.OP170.impl;
|
|
|
import cn.stylefeng.guns.modular.bs.collectionParamConf.model.params.CollectionParamConfParam;
|
import cn.stylefeng.guns.modular.bs.collectionParamConf.model.result.CollectionParamConfResult;
|
import cn.stylefeng.guns.modular.bs.collectionParamConf.service.CollectionParamConfService;
|
import cn.stylefeng.guns.modular.cm.paramCollection.model.params.ParamCollectionParam;
|
import cn.stylefeng.guns.modular.cm.paramCollection.service.ParamCollectionService;
|
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.plcserver.opc.GlobalVariable;
|
import cn.stylefeng.guns.plcserver.opc.OPCComm;
|
import cn.stylefeng.guns.plcserver.opc.unit.OPCUnit;
|
|
import cn.stylefeng.guns.plcserver.server.OP170.OP170ServerInterface;
|
import cn.stylefeng.guns.plcserver.tool.DateTool;
|
import cn.stylefeng.guns.plcserver.tool.LogUtil;
|
import org.apache.log4j.Logger;
|
import org.openscada.opc.lib.da.Group;
|
import org.openscada.opc.lib.da.Item;
|
|
import java.util.Date;
|
import java.util.List;
|
|
|
public class OP170ServerInterfaceImpl implements OP170ServerInterface {
|
|
private static Logger logger;
|
LogUtil logUtil = new LogUtil();
|
static {
|
logger = Logger.getLogger(OP170ServerInterfaceImpl.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 = "OP";//产线号
|
private static String LOCATION_CODE = "OP170";//工位号
|
private static String GROUP_NAME = "OP170_P";//工位号
|
private static List list = null;
|
private static Group group = null;
|
@Override
|
public synchronized void monitor() {
|
String ecpStr = "";//异常记录标记
|
try{
|
if(GlobalVariable.OP170_F_HEART_BEAT) {
|
|
//PC读工单
|
String isPLCStart = OPCUnit.read(opc.getOP170_J_PLC_START());//PLC开始
|
if(isPLCStart.equals("true")){
|
String isFinish = OPCUnit.read(opc.getOP170_J_PC_WRITE_ORDER());//PC下发工单完成
|
if(isFinish.equals("false")){
|
handleOrder();
|
}
|
}
|
|
|
//PC完成
|
String isPLCFinish = OPCUnit.read(opc.getOP170_J_PLC_FINISH());//PLC完成
|
if(isPLCFinish.equals("true")){
|
String isFinish = OPCUnit.read(opc.getOP170_J_PC_FINISH());//PC操作完成
|
if(isFinish.equals("false")){
|
handleInfo();
|
handleFinsh();
|
}
|
}
|
|
}else{
|
logger.info("OP170工位与PLC断开,请检查PLC或网络是否异常!");
|
}
|
|
}catch (Exception e) {
|
ecpStr ="出现异常:" + logUtil.getTrace(e);
|
}finally {
|
if(!"".equals(ecpStr)){
|
logger.info(ecpStr+"\r\n");
|
}
|
}
|
}
|
|
//PC读工单
|
public void handleOrder() {
|
IN_TIME = DateTool.getLocalTimeForDate();
|
S_ORDER_CODE = OPCUnit.read(opc.getOP170_S_ORDER_CODE());//工单编号
|
S_PRODUCT_TYPE = OPCUnit.read(opc.getOP170_S_PRODUCT_CODE());//产品编号
|
S_PRODUCT_CODE = GlobalVariable.PRODUCT_CODE_MAP.get(S_PRODUCT_TYPE);
|
S_SFC_CODE = OPCUnit.read(opc.getOP170_S_SFC_CODE());//总成编码
|
OPCUnit.write(opc.getOP170_J_PC_WRITE_ORDER(), "true"); //PC读工单完成
|
logger.info("OP170工位,handleOrder PC处理完成!");
|
}
|
|
//PC读参数信息
|
public void handleInfo() throws Exception {
|
logger.info("OP170工位,handleInfo START!");
|
|
if(null == list /*|| !S_PRODUCT_CODE_OLD.equals(S_PRODUCT_CODE)*/){
|
if(group != null){
|
opc.getServer().removeGroup(group,true);
|
}
|
group = opc.getServer().addGroup(GROUP_NAME);
|
|
CollectionParamConfParam collectionParamConfParam = new CollectionParamConfParam();
|
//collectionParamConfParam.setProductCode(S_PRODUCT_CODE);
|
collectionParamConfParam.setLocationCode(LOCATION_CODE);
|
CollectionParamConfService collectionParamConfService = opc.collectionParamConfService;
|
list = collectionParamConfService.findListBySpec(collectionParamConfParam);
|
|
|
for(int i=0;i<list.size();i++){
|
CollectionParamConfResult result = (CollectionParamConfResult) list.get(i);
|
Item item = group.addItem(result.getGatherAddress());
|
result.setItem(item);
|
list.set(i,result);
|
}
|
//S_PRODUCT_CODE_OLD = S_PRODUCT_CODE;
|
}
|
|
if(null != list && list.size()>0) {
|
ParamCollectionService paramCollectionService = opc.paramCollectionService;
|
for (int i = 0; i < list.size(); i++) {
|
CollectionParamConfResult result = (CollectionParamConfResult) list.get(i);
|
Item item = result.getItem();
|
String value = OPCUnit.read(item);//读参数值
|
ParamCollectionParam paramCollectionParam = new ParamCollectionParam();
|
paramCollectionParam.setParamCode(result.getParamCode());
|
paramCollectionParam.setParamName(result.getParamName());
|
paramCollectionParam.setWorkOrderNo(S_ORDER_CODE);
|
paramCollectionParam.setSfcCode(S_SFC_CODE);
|
paramCollectionParam.setProductCode(S_PRODUCT_CODE);
|
paramCollectionParam.setProductionLine(result.getProductionLine());
|
paramCollectionParam.setLocationCode(result.getLocationCode());
|
paramCollectionParam.setParamValue(value);
|
paramCollectionParam.setParamLower(result.getParamLower());
|
paramCollectionParam.setParamUpper(result.getParamUpper());
|
paramCollectionParam.setParamStandard(result.getParamCentral());
|
paramCollectionParam.setCollectionTime(DateTool.getLocalTimeForDate());
|
paramCollectionParam.setUnit(result.getUnit());
|
paramCollectionService.add(paramCollectionParam);
|
}
|
}
|
|
logger.info("OP170工位,handleInfo END!");
|
}
|
|
//PC完成
|
public void handleFinsh() {
|
if("".equals(S_ORDER_CODE)){
|
IN_TIME = DateTool.getLocalTimeForDate();
|
S_ORDER_CODE = OPCUnit.read(opc.getOP170_S_ORDER_CODE());//工单编号
|
S_PRODUCT_TYPE = OPCUnit.read(opc.getOP170_S_PRODUCT_CODE());//产品编号
|
S_PRODUCT_CODE = GlobalVariable.PRODUCT_CODE_MAP.get(S_PRODUCT_TYPE);
|
S_SFC_CODE = OPCUnit.read(opc.getOP170_S_SFC_CODE());//总成编码
|
}
|
//处理过站信息
|
String S_PRODUCT_STATE_CODE = OPCUnit.read(opc.getOP170_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);
|
|
|
|
//更新工单完成数量
|
ProductionOrdeInfoParam orderParam = new ProductionOrdeInfoParam();
|
orderParam.setWorkOrderNo(S_ORDER_CODE);
|
ProductionOrdeInfoService productionOrdeInfoService = opc.productionOrdeInfoService;
|
List<ProductionOrdeInfoResult> list = productionOrdeInfoService.findListBySpec(orderParam);
|
if(list.size()>0) {
|
ProductionOrdeInfoResult result = list.get(0);
|
orderParam.setId(result.getId());
|
orderParam.setActualQty(result.getActualQty()+1);
|
productionOrdeInfoService.update(orderParam);
|
}
|
|
|
OPCUnit.write(opc.getOP170_J_PC_FINISH(), "true"); //PC完成
|
|
logger.info("OP170工位,handleFinsh PC处理完成!");
|
}
|
|
}
|