97 lines
4.6 KiB
C#
97 lines
4.6 KiB
C#
using System;
|
||
|
||
//using SystemFramework;
|
||
using MesServerWork;
|
||
using MisDataFunDll;
|
||
using MisDataSaveDate;
|
||
|
||
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
|
||
{
|
||
//var msgEvent = (DeviceDriver_BasicData.CustomeEvetnArgs)e;
|
||
//string OpName = Convert.ToString(msgEvent.OpName);
|
||
//string barcode = Convert.ToString(msgEvent.TagValue);
|
||
//string AlarmStr = "";
|
||
|
||
//int IsAllowWork;
|
||
//bool IsSuccess = false;
|
||
//string msg = "";
|
||
//bool EngineGetOver_PLC_NextWorkStep;
|
||
////传递机型是否到位
|
||
//MIS_BASE.Read_EngineGetOver_PLC(OpName, out EngineGetOver_PLC_NextWorkStep);
|
||
//if (!EngineGetOver_PLC_NextWorkStep)
|
||
//{
|
||
// string msgErr = "【" + OpName + "】" + "无法扫码,PLC未传递机型";
|
||
// SendMessageFun.AsyncSendMessage_Notice_Error(OpName, msgErr, "条码扫描");
|
||
// MisDataFun.LogRecording_OP(OpName, "ERROR", "barcode", msgErr);
|
||
// return;
|
||
//}
|
||
|
||
//int EngineTypeID;//机型代码
|
||
//string EngineType;//机型
|
||
//string EngineID;//工件编号
|
||
//string OrderForm; // 工单号
|
||
//int PartPallet_Code;//托盘编号
|
||
// // 读取PLC中的信息
|
||
//MIS_BASE.GetEngineTypeFromPLC(OpName, out EngineTypeID, out EngineType, out EngineID, out PartPallet_Code, out OrderForm);
|
||
//MIS_BASE.GetEngineTypeFromPLC_MES(OpName, out int EngineTypeID_MES, out string EngineType_MES, out string EngineID_MES, out string OrderForm_MES);
|
||
|
||
//// 验证托盘码
|
||
//int ScanPalletCodeStatu = MisDataBaseFun.ScanPalletCode(OpName, barcode, EngineID);
|
||
//if (ScanPalletCodeStatu == 2) return;
|
||
//if (ScanPalletCodeStatu == 3) // 本次扫码完走传递机型
|
||
//{
|
||
// MisDataFun.OpName_MIS_MOBY_Insert(OpName, EngineTypeID, EngineType, EngineID, PartPallet_Code, OrderForm, 0, 0, "");
|
||
// EngineTypeGetOver_PLC_Work(OpName, EngineTypeID, EngineType, EngineID, PartPallet_Code, OrderForm);
|
||
// return;
|
||
//}
|
||
|
||
////物料验证 先本地校验,成功之后在向工厂MES校验
|
||
//MisDataFun.PartMaterial_DM_Check(OpName, barcode, EngineID_MES, out bool isOk, out bool MesCheck, out bool isAllBatchCheck, out bool ShowBox, out string DMmsg, out string MaterialsCode, out string batchCode, out int ID, out bool isBatch);
|
||
////获取是否允许工作
|
||
//MisDataFun.MesServer_Judge_IsCanWork(OpName, out IsAllowWork);
|
||
////此处逻辑有问题 需要考虑到批次扫描 提示PLC未传递机型的情况
|
||
//if (IsAllowWork == 1)
|
||
//{
|
||
// //更新订单完工数量及物料
|
||
// SendMessageFun.SendMessage("2", "11", OpName);
|
||
|
||
// //通知PLC允许工作,允许工作在保存完成时清空
|
||
// MIS_BASE.Write_FixAllow(OpName, true);
|
||
//}
|
||
//else
|
||
//{
|
||
// SendMessageFun.AsyncSendMessage_Notice(OpName, "请扫描物料!");
|
||
//}
|
||
|
||
}
|
||
catch (Exception err)
|
||
{
|
||
////ApplicationLog.WriteLog(err, "Function02:Barcode");
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
|
||
}
|
||
}
|