You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.FJC.TRACING.DataAnalyzers
|
|
{
|
|
/// <summary>
|
|
/// 模具信息解析类
|
|
/// </summary>
|
|
public class MouldAnalyzer:DAInterface.IDataAnalyzer
|
|
{
|
|
public void Analyze(DAInterface.DAObject data)
|
|
{
|
|
DAL.Basic.MachineInfoModelDAL dal = new DAL.Basic.MachineInfoModelDAL();
|
|
var mould=dal.GetByCode(data.DAValue.ToString());
|
|
if (mould == null)
|
|
{
|
|
throw new Exception("无法查到与此条码相关的模具信息!");
|
|
}
|
|
data.ObjectPID = mould.PID;
|
|
data.ObjectCacheList.Add(mould);
|
|
data.AnalyzedValue = mould.MODELCODE;
|
|
data.MaterialCode = mould.MATERIAL_CODE;
|
|
DAL.MD.MaterialDAL mdal = new DAL.MD.MaterialDAL();
|
|
var material = mdal.Get(data.MaterialCode);
|
|
data.MaterialName = material == null ? "" : material.MATERIAL_SHORT;
|
|
}
|
|
}
|
|
}
|
|
|