169 lines
8.2 KiB
C#
169 lines
8.2 KiB
C#
using System;
|
||
using System.Windows.Forms;
|
||
using bizFacade;
|
||
//using SystemFramework;
|
||
using MesServerWork;
|
||
|
||
using MesWorkMqtt;
|
||
using System.Threading.Tasks;
|
||
using System.Data;
|
||
|
||
namespace MesServerFunctions
|
||
{
|
||
partial class FunctionMES
|
||
{
|
||
/// <summary>
|
||
///1.扫描配送单号,用于接收物料,扫描单号的时候,将接收的物料信息显示在“物料拉动”Tab区域
|
||
///2.扫描料箱标签/看板卡,用于追溯物料批次信息
|
||
///3.扫描零件条码,根据零件图号进行防错
|
||
///第一步,判断条码类型,根据条码类型,执行对应的存储过程
|
||
///第二步,条码类型(将扫描的条码保存到对应的表中)
|
||
///第三步,扫描完成之后给出允许工作信号
|
||
/// 处理页面扫描条码
|
||
/// </summary>
|
||
/// <param name="OpName"></param>
|
||
/// <param name="barcode"></param>
|
||
public void Barcode(object e)
|
||
{
|
||
|
||
{
|
||
try
|
||
{
|
||
DoWhatPlc.CustomeEvetnArgs msgEvent = (DoWhatPlc.CustomeEvetnArgs)e;
|
||
string OpName = Convert.ToString(msgEvent.OpName);
|
||
string barcode = Convert.ToString(msgEvent.TagValue);
|
||
SendMessageFun.SendInfomation("BarCodeData", barcode, OpName); // 将扫码值发送给前端
|
||
string AlarmStr = "";
|
||
bool isShowBarNGTipBox;
|
||
|
||
int EngineTypeID;//机型代码
|
||
int PartPallet_Code;//托盘编号
|
||
|
||
string EngineType;//机型
|
||
string EngineID;//工件编号
|
||
string OrderForm;
|
||
MIS_BASE.GetEngineTypeFromPLC(OpName, out EngineTypeID, out EngineType, out EngineID, out PartPallet_Code, out OrderForm);
|
||
|
||
int IsAllowWork;
|
||
bool IsSuccess = false;
|
||
bool EngineGetOver_PLC_NextWorkStep;
|
||
////传递机型是否到位
|
||
//MIS_BASE.Read_EngineGetOver_PLC(OpName, out EngineGetOver_PLC_NextWorkStep);
|
||
//if (!EngineGetOver_PLC_NextWorkStep)
|
||
//{
|
||
// SendMessageFun.AsyncSendMessage_Notice(OpName, "PLC未传递机型");
|
||
// isShowBarNGTipBox = BaseDataSystemMES.Check_BarCodeNGTemp(OpName, 1);
|
||
// if (isShowBarNGTipBox) SendMessageFun.SendInfomation("ShowTipBox", "多次扫描条码失败,请检查扫码位置是否正确!", OpName);
|
||
// return;
|
||
//}
|
||
////物料验证
|
||
//BaseDataSystemMES.PartMaterial_DM_Update(OpName, barcode, out IsSuccess);
|
||
//if (!IsSuccess)
|
||
//{
|
||
// SendMessageFun.AsyncSendMessage_Notice(OpName, "条码无效,请确认");
|
||
// isShowBarNGTipBox = BaseDataSystemMES.Check_BarCodeNGTemp(OpName, 1);
|
||
// if (isShowBarNGTipBox) SendMessageFun.SendInfomation("ShowTipBox", "多次扫描条码失败,请检查扫码位置是否正确!", OpName);
|
||
// return;
|
||
//}
|
||
//else
|
||
//{
|
||
// SendMessageFun.SendInfomation("MaterialList", "1", OpName);//通知界面更新零件信息
|
||
//}
|
||
|
||
//判断当前工件是否为售后机型 0.7(53)
|
||
|
||
// 判断是否存在异常导致不允许工作 输出msg到前端
|
||
DataTable OpNameIsWorkDt = BaseDataSystemMES.OpNameIsAllowWork(OpName);
|
||
if (Convert.ToInt32(OpNameIsWorkDt.Rows[0]["提示类型"]) == 3)
|
||
{
|
||
SendMessageFun.SendInfomation("ShowTipBox", OpNameIsWorkDt.Rows[0]["提示文本"].ToString(), OpName);
|
||
return;
|
||
}
|
||
|
||
if (barcode.Split('*').Length > 2)
|
||
{
|
||
|
||
int Aftermarket;
|
||
DataTable dt4 = BaseDataSystemMES.Get_EngineAftermarketType(EngineType);
|
||
Aftermarket = Convert.ToInt32(dt4.Rows[0]["是否售后机型"]);
|
||
if(Aftermarket == 1)
|
||
{
|
||
string message = "MES|ShowTipBox|" + OpName + "|该工件为售后机型,无需打印条码";
|
||
SendMessage.AsyncSendMessage(message);
|
||
return;
|
||
}
|
||
|
||
DataTable dt = BaseDataSystemMES.J07ET050_BarCode_Check(barcode, 2);
|
||
if (Convert.ToInt32(dt.Rows[0]["result"]) == 1)
|
||
{
|
||
MIS_BASE.WritePLC(69, OpName, true); // 匹配结果 写入 匹配完成 由PLC清
|
||
string aa = $"J07ET050~01~BQFT_BarCode_J07ET050|DataMartix^Code3^{dt.Rows[0]["铭牌码"]}|TEXT^TEXT3^{dt.Rows[0]["零件号"]}|TEXT^TEXT2^{dt.Rows[0]["福田零件号"]}|TEXT^TEXT4^{dt.Rows[0]["序列号"]}";
|
||
Task.Run(() => Mqtt.Publish("MesPrint", $"J07ET050~01~BQFT_BarCode_J07ET050|DataMartix^Code3^{dt.Rows[0]["铭牌码"]}|TEXT^TEXT3^{dt.Rows[0]["零件号"]}|TEXT^TEXT2^{dt.Rows[0]["福田零件号"]}|TEXT^TEXT4^{dt.Rows[0]["序列号"]}"));
|
||
//Task.Run(() => Mqtt.Publish("MesPrint", $"J07ET050~01~BQFT_BarCode_J07ET050|TEXT^TEXT3^{dt.Rows[0]["零件号"]}|TEXT^TEXT2^{dt.Rows[0]["福田零件号"]}|TEXT^TEXT4^{dt.Rows[0]["序列号"]}|QR_Code^Code0^{dt.Rows[0]["铭牌码"]}"));
|
||
|
||
}
|
||
SendMessageFun.AsyncSendMessage_Notice(OpName, dt.Rows[0]["msg"].ToString());
|
||
}
|
||
else if(barcode.Split(')').Length > 3)
|
||
{
|
||
DataTable dt = BaseDataSystemMES.J07ET050_BarCode_Check(barcode, 1);
|
||
SendMessageFun.AsyncSendMessage_Notice(OpName, dt.Rows[0]["msg"].ToString());
|
||
}
|
||
else
|
||
{
|
||
SendMessageFun.AsyncSendMessage_Notice(OpName, "请扫描正确的铭牌码或总成条码!");
|
||
}
|
||
|
||
|
||
|
||
|
||
//获取是否允许工作
|
||
//BaseDataSystedmMES.MesServer_Judge_IsCanWork(OpName, out IsAllowWork);
|
||
|
||
//此处逻辑有问题 需要考虑到批次扫描 提示PLC未传递机型的情况
|
||
//if (IsAllowWork == 1)
|
||
//{
|
||
// //BaseDataSystemMES.Material_Insert(OpName, 1);
|
||
|
||
// //更新订单完工数量及物料
|
||
// SendMessageFun.SendMessage("24", "11", OpName);
|
||
|
||
|
||
// //工作完成
|
||
// //MIS_BASE.Write_MaterialVerifyOver(OpName, true);
|
||
// //if (!BaseDataSystemMES.QualityVerifyStatusOutline(OpName, out AlarmStr))
|
||
// //{
|
||
//SendInfomation("LineoutAlert", AlarmStr, OpName);
|
||
// // return;
|
||
// //}
|
||
// //通知PLC允许工作,允许工作在保存完成时清空
|
||
|
||
// //将机型信息传递给刷写站工控机
|
||
|
||
|
||
// MIS_BASE.Write_FixAllow(OpName, true);
|
||
//}
|
||
//else
|
||
//{
|
||
// SendMessageFun.AsyncSendMessage_Notice(OpName, "请扫描物料!");
|
||
// isShowBarNGTipBox = BaseDataSystemMES.Check_BarCodeNGTemp(OpName, 1);
|
||
// if (isShowBarNGTipBox) SendMessageFun.SendInfomation("ShowTipBox", "多次扫描条码失败,请检查扫码位置是否正确!", OpName);
|
||
//}
|
||
|
||
|
||
}
|
||
catch (Exception err)
|
||
{
|
||
// 保存出错日志 1.申请上线 2.传递机型 3.允许保存 4.扫码
|
||
MisDataSaveDate.FuntionMesRead.Alarm_SaveFileLog4Error(4, e, "Fun1056", err);
|
||
////ApplicationLog.WriteLog(err, "Function02:Barcode");
|
||
}
|
||
|
||
}
|
||
|
||
}
|
||
|
||
|
||
}
|
||
}
|