|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532 |
- using BPASmartClient.CustomResource.Pages.Model;
- using BPASmartClient.Helper;
- using BPASmartClient.JXJFoodBigStation.Model.HK_PLC;
- using BPASmartClient.JXJFoodBigStation.Model.Siemens;
- using BPASmartClient.Modbus;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Configuration;
- using System.Linq;
- using System.Text;
- using System.Threading;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodBigStation.Model
- {
- public class ProcessControl
- {
- private volatile static ProcessControl _Instance;
- public static ProcessControl GetInstance => _Instance ?? (_Instance = new ProcessControl());
- private ProcessControl() { }
- public SiemensDeviceStatus SiemensDevice = new SiemensDeviceStatus();
- public HKDeviceStatus HKDevice = new HKDeviceStatus();
- DL_Finish_DB FinishData = new DL_Finish_DB();
- /// <summary>
- /// 西门子配方数据
- /// </summary>
- public ObservableCollection<RecipeData> SiemensRecipes = new ObservableCollection<RecipeData>();
- /// <summary>
- /// 本地配方数据
- /// </summary>
- public ObservableCollection<RecipeData> LocalRecipes = new ObservableCollection<RecipeData>();
- /// <summary>
- /// 配方等待执行
- /// </summary>
- public ObservableCollection<RecipeData> RecipeWaitExecute = new ObservableCollection<RecipeData>();
- /// <summary>
- /// 配方正在执行
- /// </summary>
- public ObservableCollection<RecipeData> RecipeExecuting = new ObservableCollection<RecipeData>();
- /// <summary>
- /// 配方执行完成
- /// </summary>
- public ObservableCollection<RecipeData> RecipeExecuteComple = new ObservableCollection<RecipeData>();
- /// <summary>
- /// 原料的名称和料仓的位置对应
- /// </summary>
- public Dictionary<string, short> RawMaterialsNamePos = new Dictionary<string, short>();
- public ObservableCollection<RawMaterial> RawMaterialsInfo = new ObservableCollection<RawMaterial>();
- /// <summary>
- /// 西门子配方队列
- /// </summary>
- public ConcurrentQueue<string> SiemensRecipeQueue1 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> SiemensRecipeQueue2 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> SiemensRecipeQueue3 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> SiemensRecipeQueue4 = new ConcurrentQueue<string>();
- /// <summary>
- /// 本地配方队列
- /// </summary>
- public ConcurrentQueue<string> LocalRecipeQueue1 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> LocalRecipeQueue2 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> LocalRecipeQueue3 = new ConcurrentQueue<string>();
- public ConcurrentQueue<string> LocalRecipeQueue4 = new ConcurrentQueue<string>();
- public void Init()
- {
- testRawMaterialNameData();//自定义料仓名称
- ActionManage.GetInstance.CancelRegister("SiemensSendRecipe");
- ActionManage.GetInstance.Register(new Action<object>((res) =>
- {
- ObservableCollection<RawMaterial> RawMaterials = new ObservableCollection<RawMaterial>();
- if (SiemensDevice.IsConnected)
- {
- if (res != null && res is DL_Start_DB recipe)
- {
- RawMaterials.Clear();
- for (int i = 0; i < GVL_BigStation.Max_DosingSotckBinNum; i++)
- {
- if (RawMaterialsNamePos.ContainsKey(recipe.Material[i].Material_Name))
- {
- RawMaterials.Add(new RawMaterial()
- {
- RawMaterialName = recipe.Material[i].Material_Name,
- RawMaterialBarrelNum = recipe.Material[i].Material_BarrelNum,
- RawMaterialWeight = recipe.Material[i].Material_Weight,
- RawMaterialLocation = (int)RawMaterialsNamePos[recipe.Material[i].Material_Name]
- });
- }
- else
- {
- MessageNotify.GetInstance.ShowAlarmLog($"本地原料名称和西门子下发的原料名称无法对应,原料位置:{i}");
- }
- }
- App.Current.Dispatcher.Invoke(() =>
- {
- Json<RemoteRecipe>.Data.Recipes.Add(new RecipeData()
- {
- RecipeName = recipe.RecipeName,
- RecipeCode = recipe.RecipeCode,
- RawMaterial = RawMaterials,
- TrayCode = recipe.Job_No,
- });
- });
- }
- }
- }), "SiemensSendRecipe", true);
- string HK_PLC_IP = ConfigurationManager.AppSettings["HKPlc_IP"];
- string Siemens_PLC_IP = ConfigurationManager.AppSettings["Siemens_IP"];
- try
- {
- HKDevice.HK_PLC_S7.Connect(S7.Net.CpuType.S71500, HK_PLC_IP);
- SiemensDevice.Siemens_PLC_S7.Connect(S7.Net.CpuType.S71500, Siemens_PLC_IP);
- if (HKDevice.IsConnected)
- {
- HKDevice.Init();
- MessageNotify.GetInstance.ShowRunLog("海科plc连接成功");
- }
- if (SiemensDevice.IsConnected)
- {
- SiemensDevice.Init();
- MessageNotify.GetInstance.ShowRunLog("西门子plc连接成功");
- }
- }
- catch (Exception ex)
- {
-
- }
- ThreadManage.GetInstance().StartLong(new Action(() =>
- {
- if (!HKDevice.IsConnected)
- {
- HKDevice.HK_PLC_S7.Connect(S7.Net.CpuType.S71500, HK_PLC_IP);
- MessageNotify.GetInstance.ShowRunLog("海科plc重新连接成功");
- }
- if (!SiemensDevice.IsConnected)
- {
- SiemensDevice.Siemens_PLC_S7.Connect(S7.Net.CpuType.S71500, Siemens_PLC_IP);
- MessageNotify.GetInstance.ShowRunLog("西门子plc重新连接");
- }
- GVL_BigStation.HeartBeatToPlc = !GVL_BigStation.HeartBeatToPlc;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.0", GVL_BigStation.HeartBeatToPlc);
- GVL_BigStation.HeartBeatFromPlc = HKDevice.PlcRead.HeartBeat;//读取plc心跳
- if (HKDevice.IsConnected)
- {
- if (GVL_BigStation.AGVPutTray.GetBitValue(1))
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.7", true);
- }
- else
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.7", false);
- }
- if (GVL_BigStation.AGVPutTray.GetBitValue(2))
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.0", true);
- }
- else
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.0", false);
- }
- if (GVL_BigStation.AGVPutTray.GetBitValue(3))
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.1", true);
- }
- else
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.1", false);
- }
- if (GVL_BigStation.AGVPutTray.GetBitValue(4))
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.2", true);
- }
- else
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.2", false);
- }
- if (GVL_BigStation.AGVPutTray.GetBitValue(5))
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", true);
- }
- else
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", false);
- }
- GVL_BigStation.TraySensor = GVL_BigStation.TraySensor.SetBitValue(1, HKDevice.PlcRead.Tray1Sensor);
- GVL_BigStation.TraySensor = GVL_BigStation.TraySensor.SetBitValue(2, HKDevice.PlcRead.Tray2Sensor);
- GVL_BigStation.TraySensor = GVL_BigStation.TraySensor.SetBitValue(3, HKDevice.PlcRead.Tray3Sensor);
- GVL_BigStation.TraySensor = GVL_BigStation.TraySensor.SetBitValue(4, HKDevice.PlcRead.Tray4Sensor);
- GVL_BigStation.TraySensor = GVL_BigStation.TraySensor.SetBitValue(5, HKDevice.PlcRead.Tray5Sensor);
- GVL_BigStation.TrayCylinder = GVL_BigStation.TrayCylinder.SetBitValue(1, !HKDevice.PlcRead.Tray1Cylinder);
- GVL_BigStation.TrayCylinder = GVL_BigStation.TrayCylinder.SetBitValue(2, !HKDevice.PlcRead.Tray2Cylinder);
- GVL_BigStation.TrayCylinder = GVL_BigStation.TrayCylinder.SetBitValue(3, !HKDevice.PlcRead.Tray3Cylinder);
- GVL_BigStation.TrayCylinder = GVL_BigStation.TrayCylinder.SetBitValue(4, !HKDevice.PlcRead.Tray4Cylinder);
- GVL_BigStation.TrayCylinder = GVL_BigStation.TrayCylinder.SetBitValue(5, !HKDevice.PlcRead.Tray5Cylinder);
- if (HKDevice.PlcRead.IsAllowIssueRecipe1 || HKDevice.PlcRead.IsAllowIssueRecipe2 || HKDevice.PlcRead.IsAllowIssueRecipe3 || HKDevice.PlcRead.IsAllowIssueRecipe4)
- {
- GVL_BigStation.Order_Request = true;
- }
- }
- if (SiemensDevice.IsConnected)
- {
- GVL_BigStation.AGVPutTray = SiemensDevice.DL_Status.AGV_Put_Done;
- GVL_BigStation.AGVGetTray = SiemensDevice.DL_Status.AGV_Get_Done;
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBW30", GVL_BigStation.TraySensor);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBW32", GVL_BigStation.TrayCylinder);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBW34", (ushort)13);
- }
- Thread.Sleep(10);
- }),"设备连接",true);
- LocalRecipeQueue1.Clear();
- LocalRecipeQueue2.Clear();
- LocalRecipeQueue3.Clear();
- LocalRecipeQueue4.Clear();
- SiemensRecipeQueue1.Clear();
- SiemensRecipeQueue2.Clear();
- SiemensRecipeQueue3.Clear();
- SiemensRecipeQueue4.Clear();
- ThreadManage.GetInstance().StartLong(new Action(() =>
- {
- if (GVL_BigStation.IsUseLocalRecipe)
- {
- LocalRecipeRecevice();
- LocalRecipeDosing();
- }
- else
- {
- ReceviceData();
- RecipeInfoToHKPLC();
- }
- Thread.Sleep(10);
- }), "西门子配方执行流程", true);
- }
- private void LocalRecipeRecevice()
- {
- if (LocalRecipes.Count > 0)
- {
- foreach (var data in LocalRecipes)
- {
- if (LocalRecipeQueue1.Count == 0 && !LocalRecipeQueue2.Contains(data.RecipeCode) && !LocalRecipeQueue3.Contains(data.RecipeCode) && !LocalRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(LocalRecipeQueue1.Contains(data.RecipeCode)))
- {
- LocalRecipeQueue1.Enqueue(data.RecipeCode);
- }
- }
- else if (LocalRecipeQueue2.Count == 0 && !LocalRecipeQueue1.Contains(data.RecipeCode) && !LocalRecipeQueue3.Contains(data.RecipeCode) && !LocalRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(LocalRecipeQueue2.Contains(data.RecipeCode)))
- {
- LocalRecipeQueue2.Enqueue(data.RecipeCode);
- }
- }
- else if (LocalRecipeQueue3.Count == 0 && !LocalRecipeQueue1.Contains(data.RecipeCode) && !LocalRecipeQueue2.Contains(data.RecipeCode) && !LocalRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(LocalRecipeQueue3.Contains(data.RecipeCode)))
- {
- LocalRecipeQueue3.Enqueue(data.RecipeCode);
- }
- }
- else if (LocalRecipeQueue4.Count == 0 && !LocalRecipeQueue1.Contains(data.RecipeCode) && !LocalRecipeQueue2.Contains(data.RecipeCode) && !LocalRecipeQueue3.Contains(data.RecipeCode))
- {
- if (!(LocalRecipeQueue4.Contains(data.RecipeCode)))
- {
- LocalRecipeQueue4.Enqueue(data.RecipeCode);
- }
- }
- }
- }
- else
- {
- LocalRecipeQueue1.Clear();
- LocalRecipeQueue2.Clear();
- LocalRecipeQueue3.Clear();
- LocalRecipeQueue4.Clear();
- GVL_BigStation.Recipe1DosingStatus = 0;
- GVL_BigStation.Recipe2DosingStatus = 0;
- GVL_BigStation.Recipe3DosingStatus = 0;
- GVL_BigStation.Recipe4DosingStatus = 0;
- }
- }
- private void LocalRecipeDosing()
- {
- if (LocalRecipeQueue1.Count > 0)
- {
- int index = Array.FindIndex(LocalRecipes.ToArray(), p => p.RecipeCode == LocalRecipeQueue1.ElementAt(0));
- if (index >= 0 && index < LocalRecipes.Count)
- {
- string code = LocalRecipes.ElementAt(index).RecipeCode;
- int trayCode = LocalRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe1 && GVL_BigStation.Recipe1DosingStatus == 0 && Inplace)//配方1是否允许下发配发
- {
- HKDevice.StockBinPar(LocalRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.3", true);
- GVL_BigStation.Recipe1DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方编号:{code},托盘编号:{trayCode},下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe1 && GVL_BigStation.Recipe1DosingStatus == 1)
- {
- GVL_BigStation.Recipe1DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.3", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方编号:{code},托盘编号:{trayCode},PLC接收配方完成");
- }
- if (GVL_BigStation.Recipe1DosingStatus == 2 && HKDevice.PlcRead.Recipe1DosingFinish)
- {
- GVL_BigStation.Recipe1DosingStatus = 3;
- switch (trayCode)
- {
- case 1:
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.7", false);
- break;
- case 2:
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.0", false);
- break;
- case 3:
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.1", false);
- break;
- case 4:
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.2", false);
- break;
- case 5:
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", false);
- break;
- default:
- break;
- }
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in LocalRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- LocalRecipeQueue1.TryDequeue(out code);
- RecipeExecuteComple.Add(LocalRecipes.ElementAt(index));//将配方添加到完成列表
- //App.Current.Dispatcher.Invoke(() => {
- // Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- //});
- LocalRecipes.RemoveAt(index);
- GVL_BigStation.Recipe1DosingStatus = 0;
- }
- }
- }
- if (LocalRecipeQueue2.Count > 0)
- {
- int index = Array.FindIndex(LocalRecipes.ToArray(), p => p.RecipeCode == LocalRecipeQueue2.ElementAt(0));
- if (index >= 0 && index < LocalRecipes.Count)
- {
- string code = LocalRecipes.ElementAt(index).RecipeCode;
- int trayCode = LocalRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe2 && GVL_BigStation.Recipe2DosingStatus == 0 &&Inplace)//配方2是否允许下发配发
- {
- HKDevice.StockBinPar(LocalRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.4", true);
- GVL_BigStation.Recipe2DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe2 && GVL_BigStation.Recipe2DosingStatus == 1)
- {
- GVL_BigStation.Recipe2DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.4", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (GVL_BigStation.Recipe2DosingStatus == 2 && HKDevice.PlcRead.Recipe2DosingFinish)
- {
- GVL_BigStation.Recipe2DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in LocalRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- LocalRecipeQueue2.TryDequeue(out code);
- RecipeExecuteComple.Add(LocalRecipes.ElementAt(index));//将该配方添加到下
- //App.Current.Dispatcher.Invoke(() => {
- // Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- //});
- LocalRecipes.RemoveAt(index);
- GVL_BigStation.Recipe2DosingStatus = 0;
- }
- }
- }
- if (LocalRecipeQueue3.Count > 0)
- {
- int index = Array.FindIndex(LocalRecipes.ToArray(), p => p.RecipeCode == LocalRecipeQueue3.ElementAt(0));
- if (index >= 0 && index < LocalRecipes.Count)
- {
- string code = LocalRecipes.ElementAt(index).RecipeCode;
- int trayCode = LocalRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.7", GVL_BigStation.AGVPutTray.GetBitValue(1));
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.0", GVL_BigStation.AGVPutTray.GetBitValue(2));
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.1", GVL_BigStation.AGVPutTray.GetBitValue(3));
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.2", GVL_BigStation.AGVPutTray.GetBitValue(4));
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", GVL_BigStation.AGVPutTray.GetBitValue(5));
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe3 && GVL_BigStation.Recipe3DosingStatus == 0 && Inplace)//配方3是否允许下发配发
- {
- HKDevice.StockBinPar(LocalRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.5", true);
- GVL_BigStation.Recipe3DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe3 && GVL_BigStation.Recipe3DosingStatus == 1)
- {
- GVL_BigStation.Recipe3DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.5", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (HKDevice.PlcRead.Recipe3DosingFinish && GVL_BigStation.Recipe3DosingStatus == 2)
- {
- GVL_BigStation.Recipe3DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in LocalRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- HKDevice.HK_PLC_S7.Write<bool>("DB98.DBX1.1", false);
- LocalRecipeQueue3.TryDequeue(out code);
- RecipeExecuteComple.Add(LocalRecipes.ElementAt(index));//将该配方添加到下
- //App.Current.Dispatcher.Invoke(() => {
- // Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- //});
- LocalRecipes.RemoveAt(index);
- GVL_BigStation.Recipe3DosingStatus = 0;
- }
- }
- }
- if (LocalRecipeQueue4.Count > 0)
- {
- int index = Array.FindIndex(LocalRecipes.ToArray(), p => p.RecipeCode == LocalRecipeQueue4.ElementAt(0));
- if (index >= 0 && index < LocalRecipes.Count)
- {
- string code = LocalRecipes.ElementAt(index).RecipeCode;
- int trayCode = LocalRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.7", GVL_BigStation.AGVPutTray.GetBitValue(1));
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.0", GVL_BigStation.AGVPutTray.GetBitValue(2));
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.1", GVL_BigStation.AGVPutTray.GetBitValue(3));
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.2", GVL_BigStation.AGVPutTray.GetBitValue(4));
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", GVL_BigStation.AGVPutTray.GetBitValue(5));
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe4 && GVL_BigStation.Recipe4DosingStatus == 0 && Inplace)//配方4是否允许下发配发
- {
- HKDevice.StockBinPar(LocalRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.6", true);
- GVL_BigStation.Recipe4DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe4 && GVL_BigStation.Recipe4DosingStatus == 1)
- {
- GVL_BigStation.Recipe4DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.6", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (GVL_BigStation.Recipe4DosingStatus == 2 && HKDevice.PlcRead.Recipe4DosingFinish)
- {
- GVL_BigStation.Recipe4DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in LocalRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- HKDevice.HK_PLC_S7.Write<bool>("DB98.DBX1.3", false);
- LocalRecipeQueue4.TryDequeue(out code);
- RecipeExecuteComple.Add(LocalRecipes.ElementAt(index));//将该配方添加到下
- //App.Current.Dispatcher.Invoke(() => {
- // Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- //});
- LocalRecipes.RemoveAt(index);
- GVL_BigStation.Recipe4DosingStatus = 0;
- }
- }
- }
- }
- private void ReceviceData()
- {
- SiemensRecipes = Json<RemoteRecipe>.Data.Recipes;
- if (SiemensRecipes.Count > 0)
- {
- foreach (var data in SiemensRecipes)
- {
- if (SiemensRecipeQueue1.Count == 0 && !SiemensRecipeQueue2.Contains(data.RecipeCode) && !SiemensRecipeQueue3.Contains(data.RecipeCode) && !SiemensRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(SiemensRecipeQueue1.Contains(data.RecipeCode)))
- {
- if (SiemensDevice.DL_Status is DL_Status_DB status)
- {
- if (GVL_BigStation.SiemensSendRecipeStatus == 3)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 4;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, data.RecipeCode, 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBX28.0", true);
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 4)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 5;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, "", 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBX28.0", false);
- }
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 5)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK == false)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 6;
- SiemensRecipeQueue1.Enqueue(data.RecipeCode);
- }
- }
- }
- }
- }
- else if (SiemensRecipeQueue2.Count == 0 && !SiemensRecipeQueue1.Contains(data.RecipeCode) && !SiemensRecipeQueue3.Contains(data.RecipeCode) && !SiemensRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(SiemensRecipeQueue2.Contains(data.RecipeCode)))
- {
- if (SiemensDevice.DL_Status is DL_Status_DB status)
- {
- if (GVL_BigStation.SiemensSendRecipeStatus == 3)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 4;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, data.RecipeCode, 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBX28.0", true);
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 4)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 5;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, "", 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB3231.DBX28.0", false);
- }
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 5)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK == false)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 6;
- SiemensRecipeQueue2.Enqueue(data.RecipeCode);
- }
- }
- }
- }
- }
- else if (SiemensRecipeQueue3.Count == 0 && !SiemensRecipeQueue1.Contains(data.RecipeCode) && !SiemensRecipeQueue2.Contains(data.RecipeCode) && !SiemensRecipeQueue4.Contains(data.RecipeCode))
- {
- if (!(SiemensRecipeQueue3.Contains(data.RecipeCode)))
- {
- if (SiemensDevice.DL_Status is DL_Status_DB status)
- {
- if (GVL_BigStation.SiemensSendRecipeStatus == 3)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 4;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, data.RecipeCode, 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBX28.0", true);
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 4)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 5;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, "", 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB3231.DBX28.0", false);
- }
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 5)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK == false)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 6;
- SiemensRecipeQueue3.Enqueue(data.RecipeCode);
- }
- }
- }
- }
- }
- else if (SiemensRecipeQueue4.Count == 0 && !SiemensRecipeQueue1.Contains(data.RecipeCode) && !SiemensRecipeQueue2.Contains(data.RecipeCode) && !SiemensRecipeQueue3.Contains(data.RecipeCode))
- {
- if (!(SiemensRecipeQueue4.Contains(data.RecipeCode)))
- {
- if (SiemensDevice.DL_Status is DL_Status_DB status)
- {
- if (GVL_BigStation.SiemensSendRecipeStatus == 3)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 4;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, data.RecipeCode, 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB2331.DBX28.0", true);
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 4)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 5;
- SiemensDevice.Siemens_PLC_S7.WriteString(2331, "", 10);
- SiemensDevice.Siemens_PLC_S7.Write("DB3231.DBX28.0", false);
- }
- }
- if (GVL_BigStation.SiemensSendRecipeStatus == 5)
- {
- if (SiemensDevice.DL_Status.Dosing_Start_ACK == false)
- {
- GVL_BigStation.SiemensSendRecipeStatus = 6;
- SiemensRecipeQueue4.Enqueue(data.RecipeCode);
- }
- }
- }
- }
- }
- }
- }
- else
- {
- SiemensRecipeQueue1.Clear();
- SiemensRecipeQueue2.Clear();
- SiemensRecipeQueue3.Clear();
- SiemensRecipeQueue4.Clear();
- GVL_BigStation.Recipe1DosingStatus = 0;
- GVL_BigStation.Recipe2DosingStatus = 0;
- GVL_BigStation.Recipe3DosingStatus = 0;
- GVL_BigStation.Recipe4DosingStatus = 0;
- }
- }
- private void RecipeInfoToHKPLC()
- {
- if (SiemensRecipeQueue1.Count > 0)
- {
- int index = Array.FindIndex(SiemensRecipes.ToArray(), p => p.RecipeCode == SiemensRecipeQueue1.ElementAt(0));
- if (index >= 0 && index < SiemensRecipes.Count)
- {
- string code = SiemensRecipes.ElementAt(index).RecipeCode;
- int trayCode = SiemensRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe1 && GVL_BigStation.Recipe1DosingStatus == 0 && Inplace)//配方1是否允许下发配发
- {
- GVL_BigStation.DosingTime = DateTime.Now;
- HKDevice.StockBinPar(SiemensRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.3", true);
- GVL_BigStation.Recipe1DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方编号:{code},托盘编号:{trayCode},下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe1 && GVL_BigStation.Recipe1DosingStatus == 1)
- {
- GVL_BigStation.Recipe1DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.3", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方编号:{code},托盘编号:{trayCode},PLC接收配方完成");
- }
- if (GVL_BigStation.Recipe1DosingStatus == 2 && HKDevice.PlcRead.Recipe1DosingFinish)
- {
- GVL_BigStation.Recipe1DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in SiemensRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- if (SiemensDevice.IsConnected)
- {
- FinishData.Order_No = SiemensRecipes.ElementAt(index).RecipeCode;
- FinishData.Product_Code = SiemensRecipes.ElementAt(index).RecipeName;
- FinishData.job_No = (short)SiemensRecipes.ElementAt(index).TrayCode;
- for (int i = 0; i < FinishData.Material.Length; i++)
- {
- FinishData.Material[i] = new UDT1();
- }
- for (int i = 0; i < SiemensRecipes.ElementAt(index).RawMaterial.Count; i++)
- {
- FinishData.Material[i].Material_Name = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialName;
- FinishData.Material[i].Material_BarrelNum = (short)SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialBarrelNum;
- FinishData.Material[i].Material_Laying_Off_Weight = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).Laying_Off_Weight;
- }
- FinishData.Ask_For_Finish = true;
- GVL_BigStation.SiemensSendRecipeStatus = 7;
- double a = DateTime.Now.Subtract(GVL_BigStation.DosingTime).TotalSeconds;
- FinishData.ProcessTime = Convert.ToInt16(a);
- SiemensDevice.Siemens_PLC_S7.WriteClass<DL_Finish_DB>(FinishData, 2361);
- }
- SiemensRecipeQueue1.TryDequeue(out code);
- RecipeExecuteComple.Add(SiemensRecipes.ElementAt(index));//将配方添加到完成列表
- if (!GVL_BigStation.IsUseLocalRecipe)
- {
- App.Current.Dispatcher.Invoke(() =>
- {
- Json<RemoteRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- });
- }
- else
- {
- App.Current.Dispatcher.Invoke(() =>
- {
- Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- });
- }
- GVL_BigStation.Recipe1DosingStatus = 0;
- }
- }
- }
- if (SiemensRecipeQueue2.Count > 0)
- {
- int index = Array.FindIndex(SiemensRecipes.ToArray(), p => p.RecipeCode == SiemensRecipeQueue2.ElementAt(0));
- if (index >= 0 && index < SiemensRecipes.Count)
- {
- string code = SiemensRecipes.ElementAt(index).RecipeCode;
- int trayCode = SiemensRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe2 && GVL_BigStation.Recipe2DosingStatus == 0 && Inplace)//配方2是否允许下发配发
- {
- HKDevice.StockBinPar(SiemensRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.4", true);
- GVL_BigStation.Recipe2DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe2 && GVL_BigStation.Recipe2DosingStatus == 1)
- {
- GVL_BigStation.Recipe2DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.4", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (GVL_BigStation.Recipe2DosingStatus == 2 && HKDevice.PlcRead.Recipe2DosingFinish)
- {
- GVL_BigStation.Recipe2DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in SiemensRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- FinishData.Order_No = SiemensRecipes.ElementAt(index).RecipeCode;
- FinishData.Product_Code = SiemensRecipes.ElementAt(index).RecipeName;
- for (int i = 0; i < FinishData.Material.Length; i++)
- {
- FinishData.Material[i] = new UDT1();
- }
- for (int i = 0; i < SiemensRecipes.ElementAt(index).RawMaterial.Count; i++)
- {
- FinishData.Material[i].Material_Name = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialName;
- FinishData.Material[i].Material_BarrelNum = (short)SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialBarrelNum;
- FinishData.Material[i].Material_Laying_Off_Weight = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).Laying_Off_Weight;
- }
- if (SiemensDevice.IsConnected)
- {
- SiemensDevice.Siemens_PLC_S7.WriteClass<DL_Finish_DB>(FinishData, 2361);
- MessageNotify.GetInstance.ShowRunLog($"配方配料完成,将信号反馈给西门子");
- }
- SiemensRecipeQueue2.TryDequeue(out code);
- RecipeExecuteComple.Add(SiemensRecipes.ElementAt(index));
- if (!GVL_BigStation.IsUseLocalRecipe)
- {
- Json<RemoteRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- else
- {
- Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- GVL_BigStation.Recipe2DosingStatus = 0;
- }
- }
- }
- }
- if (SiemensRecipeQueue3.Count > 0)
- {
- int index = Array.FindIndex(SiemensRecipes.ToArray(), p => p.RecipeCode == SiemensRecipeQueue3.ElementAt(0));
- if (index >= 0 && index < SiemensRecipes.Count)
- {
- string code = SiemensRecipes.ElementAt(index).RecipeCode;
- int trayCode = SiemensRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe3 && GVL_BigStation.Recipe3DosingStatus == 0 && Inplace)//配方3是否允许下发配发
- {
- HKDevice.StockBinPar(SiemensRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.5", true);
- GVL_BigStation.Recipe3DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe3 && GVL_BigStation.Recipe3DosingStatus == 1)
- {
- GVL_BigStation.Recipe3DosingStatus = 2;
-
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.5", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (HKDevice.PlcRead.Recipe3DosingFinish && GVL_BigStation.Recipe3DosingStatus == 2)
- {
- GVL_BigStation.Recipe3DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- if (HKDevice.PlcRead.Recipe3TrayCode > 0)
- {
- foreach (var item in SiemensRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- FinishData.Order_No = SiemensRecipes.ElementAt(index).RecipeCode;
- FinishData.Product_Code = SiemensRecipes.ElementAt(index).RecipeName;
- for (int i = 0; i < FinishData.Material.Length; i++)
- {
- FinishData.Material[i] = new UDT1();
- }
- for (int i = 0; i < SiemensRecipes.ElementAt(index).RawMaterial.Count; i++)
- {
- FinishData.Material[i].Material_Name = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialName;
- FinishData.Material[i].Material_BarrelNum = (short)SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialBarrelNum;
- FinishData.Material[i].Material_Laying_Off_Weight = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).Laying_Off_Weight;
- }
- }
- if (SiemensDevice.IsConnected)
- {
- SiemensDevice.Siemens_PLC_S7.WriteClass<DL_Finish_DB>(FinishData, 2361);
- }
- HKDevice.HK_PLC_S7.Write<bool>("DB98.DBX1.1", false);
- SiemensRecipeQueue3.TryDequeue(out code);
- RecipeExecuteComple.Add(SiemensRecipes.ElementAt(index));//将该配方添加到下
- if (!GVL_BigStation.IsUseLocalRecipe)
- {
- Json<RemoteRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- else
- {
- Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- GVL_BigStation.Recipe3DosingStatus = 0;
- }
- }
- }
- if (SiemensRecipeQueue4.Count > 0)
- {
- int index = Array.FindIndex(SiemensRecipes.ToArray(), p => p.RecipeCode == SiemensRecipeQueue4.ElementAt(0));
- if (index >= 0 && index < SiemensRecipes.Count)
- {
- string code = SiemensRecipes.ElementAt(index).RecipeCode;
- int trayCode = SiemensRecipes.ElementAt(index).TrayCode;
- bool Inplace = false;
- switch (trayCode)
- {
- case 1:
- Inplace = HKDevice.PlcRead.Tray1InPlace;
- break;
- case 2:
- Inplace = HKDevice.PlcRead.Tray2InPlace;
- break;
- case 3:
- Inplace = HKDevice.PlcRead.Tray3InPlace;
- break;
- case 4:
- Inplace = HKDevice.PlcRead.Tray4InPlace;
- break;
- case 5:
- Inplace = HKDevice.PlcRead.Tray5InPlace;
- HKDevice.HK_PLC_S7.Write("DB99.DBX1.3", GVL_BigStation.AGVPutTray.GetBitValue(5));
- break;
- default:
- break;
- }
- if (HKDevice.PlcRead.IsAllowIssueRecipe4 && GVL_BigStation.Recipe4DosingStatus == 0 && Inplace)//配方4是否允许下发配发
- {
- HKDevice.StockBinPar(SiemensRecipes.ElementAt(index));
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.6", true);
- GVL_BigStation.Recipe4DosingStatus = 1;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}下发完成");
- }
- if (HKDevice.PlcRead.ReceiveFinishRecipe4 && GVL_BigStation.Recipe4DosingStatus == 1)
- {
- GVL_BigStation.Recipe4DosingStatus = 2;
- HKDevice.HK_PLC_S7.Write("DB99.DBX0.6", false);
- StockBinParReset();
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配方配料");
- }
- if (GVL_BigStation.Recipe4DosingStatus == 2 && HKDevice.PlcRead.Recipe4DosingFinish)
- {
- GVL_BigStation.Recipe4DosingStatus = 3;
- MessageNotify.GetInstance.ShowRunLog($"配方状态:{code}配料完成");
- foreach (var item in SiemensRecipes.ElementAt(index).RawMaterial)
- {
- if (item.RawMaterialLocation == 1)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin1ActualWeight;
- }
- else if (item.RawMaterialLocation == 2)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin2ActualWeight;
- }
- else if (item.RawMaterialLocation == 3)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin3ActualWeight;
- }
- else if (item.RawMaterialLocation == 4)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin4ActualWeight;
- }
- else if (item.RawMaterialLocation == 5)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin5ActualWeight;
- }
- else if (item.RawMaterialLocation == 6)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin6ActualWeight;
- }
- else if (item.RawMaterialLocation == 7)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin7ActualWeight;
- }
- else if (item.RawMaterialLocation == 8)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin8ActualWeight;
- }
- else if (item.RawMaterialLocation == 9)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin9ActualWeight;
- }
- else if (item.RawMaterialLocation == 10)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin10ActualWeight;
- }
- else if (item.RawMaterialLocation == 11)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin11ActualWeight;
- }
- else if (item.RawMaterialLocation == 12)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin12ActualWeight;
- }
- else if (item.RawMaterialLocation == 13)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin13ActualWeight;
- }
- else if (item.RawMaterialLocation == 14)
- {
- item.Laying_Off_Weight = HKDevice.PlcRead.StockBin14ActualWeight;
- }
- }
- FinishData.Order_No = SiemensRecipes.ElementAt(index).RecipeCode;
- FinishData.Product_Code = SiemensRecipes.ElementAt(index).RecipeName;
- for (int i = 0; i < FinishData.Material.Length; i++)
- {
- FinishData.Material[i] = new UDT1();
- }
- for (int i = 0; i < SiemensRecipes.ElementAt(index).RawMaterial.Count; i++)
- {
- FinishData.Material[i].Material_Name = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialName;
- FinishData.Material[i].Material_BarrelNum = (short)SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).RawMaterialBarrelNum;
- FinishData.Material[i].Material_Laying_Off_Weight = SiemensRecipes.ElementAt(index).RawMaterial.ElementAt(i).Laying_Off_Weight;
- }
- if (SiemensDevice.IsConnected)
- {
- SiemensDevice.Siemens_PLC_S7.WriteClass<DL_Finish_DB>(FinishData, 2361);
- }
- HKDevice.HK_PLC_S7.Write<bool>("DB98.DBX1.3", false);
- SiemensRecipeQueue4.TryDequeue(out code);
- RecipeExecuteComple.Add(SiemensRecipes.ElementAt(index));//将该配方添加到下
- if (!GVL_BigStation.IsUseLocalRecipe)
- {
- Json<RemoteRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- else
- {
- Json<LocalRecipe>.Data.Recipes.RemoveAt(index);//制作完成,移除当前配方
- }
- GVL_BigStation.Recipe4DosingStatus = 0;
- }
- }
- }
- }
- /// <summary>
- /// 下发plc的配方数据复位
- /// </summary>
- private void StockBinParReset()
- {
- HKDevice.HK_PLC_S7.Write("DB99.DBW2.0", 0);//
- HKDevice.HK_PLC_S7.Write("DB99.DBW4.0", 0);
- for (int i = 0; i < 56; i++)
- {
- string address2 = "DB99.DBD" + (6 + 4 * i);
- HKDevice.HK_PLC_S7.Write(address2, 0);
- }
- }
- private void testRawMaterialNameData()
- {
- RawMaterialsNamePos.Clear();
- RawMaterialsInfo.Clear();
- if (GVL_BigStation.IsUseLocalName)
- {
-
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0007", RawMaterialLocation = 1 });//香菇丁
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0015", RawMaterialLocation = 2 });//竹笋丁
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0005", RawMaterialLocation = 3 });//卤牛肉丁
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0014", RawMaterialLocation = 4 });//野山椒粒
-
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0031", RawMaterialLocation = 1 });//备料大蒜
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0040", RawMaterialLocation = 2 });//花椒酱
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0018", RawMaterialLocation = 4 });//榨菜丁
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0033", RawMaterialLocation = 5 });//炸豌豆
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0008", RawMaterialLocation = 8 });//高水分糍粑海椒
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0010", RawMaterialLocation = 9 });//辣豆瓣
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0030", RawMaterialLocation = 11 });//备用生姜
- RawMaterialsInfo.Add(new RawMaterial() { RawMaterialName = "0012", RawMaterialLocation = 12 });//豆豉细粒
- foreach (var material in RawMaterialsInfo)
- {
- RawMaterialsNamePos.Add(material.RawMaterialName,(short)material.RawMaterialLocation);
- }
- }
- else
- {
- if ((!string.IsNullOrEmpty(HKDevice.StockBinName.RawMaterialName1)) && !RawMaterialsNamePos.ContainsKey(HKDevice.StockBinName.RawMaterialName1)) RawMaterialsNamePos.Add(HKDevice.StockBinName.RawMaterialName1, 1);
- }
- }
- }
- }
|