Management.cs 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. 
  2. using DefaultEdit.Communication;
  3. using DefaultEdit.DataBase;
  4. using DefaultEdit.Log4xml;
  5. using DefaultEdit.Model;
  6. using Newtonsoft.Json.Linq;
  7. using NextTreatMesDemo.Models;
  8. using NextTreatMesDemo.Utils;
  9. using ObservableCollections;
  10. using Prism.Modularity;
  11. using Prism.Mvvm;
  12. using ScottPlot;
  13. using SqlSugar;
  14. using System;
  15. using System.Collections.Concurrent;
  16. using System.Collections.Generic;
  17. using System.Collections.ObjectModel;
  18. using System.Diagnostics;
  19. using System.IO;
  20. using System.Linq;
  21. using System.Text;
  22. using System.Threading;
  23. using System.Threading.Tasks;
  24. using System.Windows;
  25. using System.Xml.Linq;
  26. namespace DefaultEdit.Core
  27. {
  28. public class Management : BindableBase
  29. {
  30. private CurentApplicationSettings _CurentApplicationSettings=new CurentApplicationSettings();
  31. private IServer _httpService = new MesServer();
  32. private S7PlcCommunicate s7PlcCommunicate;
  33. public event Action<string,bool> RuningToWorkEvent;
  34. public event Action ProduceDataToChangeEvent;
  35. private List<RfidInfo> _RfIDList=new List<RfidInfo>();
  36. public List<RfidInfo> RfIDList { get => _RfIDList; set => _RfIDList = value; }
  37. // private ObservableCollection<RfidInfo> _RuningData=new ObservableCollection<RfidInfo>();
  38. // public ObservableCollection<RfidInfo> RuningData { get => _RuningData; set => _RuningData = value; }
  39. private CurrConfig _currConfig = new CurrConfig();
  40. public CurrConfig CurrConfig { get => _currConfig; set { SetProperty(ref _currConfig, value); } }
  41. private tb_formulasdata _formulasdata = new tb_formulasdata();
  42. public tb_formulasdata Formulasdata { get => _formulasdata; set { SetProperty(ref _formulasdata, value); } }
  43. private DateTime _DateTimeNow;
  44. /// <summary>
  45. /// 当前时间
  46. /// </summary>
  47. public DateTime DateTimeNow
  48. {
  49. get { return _DateTimeNow; }
  50. set { SetProperty(ref _DateTimeNow, value); }
  51. }
  52. private ObservableCollection<string> _CurrStationRfid=new ObservableCollection<string>();
  53. public ObservableCollection<string> CurrStationRfid { get => _CurrStationRfid; set => _CurrStationRfid = value; }
  54. /// <summary>
  55. /// 用户Id(从MES接口内获取)
  56. /// </summary>
  57. private string _UserId = "";
  58. /// <summary>
  59. /// 用户名(从MES接口内获取)
  60. /// </summary>
  61. private string _UserName = "未登录";
  62. /// <summary>
  63. /// 用于记录后处理数据来打印小票
  64. /// </summary>
  65. public ObservableCollection<ProcessDataModel> processDataModels = new ObservableCollection<ProcessDataModel>();
  66. public double[] ProduceData = new double[]{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 };
  67. public IServer HttpService { get => _httpService; set { SetProperty(ref _httpService, value); } }
  68. public string UserId { get => _UserId; set { SetProperty(ref _UserId, value); } }
  69. public string UserName { get => _UserName; set { SetProperty(ref _UserName, value); } }
  70. public CurentApplicationSettings CurentApplicationSettings { get => _CurentApplicationSettings; set { SetProperty(ref _CurentApplicationSettings, value); } }
  71. public bool Ismeswork { get => ismeswork; set { SetProperty(ref ismeswork, value); } }
  72. private bool ismeswork = true;
  73. //运行线程
  74. private Thread WorkThread;
  75. private Stopwatch[] stopwatchs = new Stopwatch[3];
  76. public Management()
  77. {
  78. stopwatchs[ 0 ] = new Stopwatch();
  79. stopwatchs[ 1 ] = new Stopwatch();
  80. stopwatchs[ 2 ] = new Stopwatch();
  81. for ( int i = 0; i < 6; i++ )
  82. {
  83. CurrStationRfid.Add("");
  84. }
  85. RuningToWorkEvent += Management_RuningToWorkEvent; ;
  86. WorkThread = new Thread(DataBridging);
  87. WorkThread.Name = "Plc读取";
  88. WorkThread.IsBackground = true;
  89. WorkThread.Start();
  90. }
  91. public void ConnectPlc()
  92. {
  93. s7PlcCommunicate = new S7PlcCommunicate(CurentApplicationSettings.PlcIP);
  94. s7PlcCommunicate.OpenPlc();
  95. }
  96. private void Management_RuningToWorkEvent(string key, bool value)
  97. {
  98. switch ( key )
  99. {
  100. case "1工位离心开始":
  101. if ( value )
  102. {
  103. stopwatchs[ 0 ].Restart();
  104. if ( RfIDList.Count != 0 )
  105. {
  106. int index= RfIDList.FindIndex(x => x.StationId == 1);
  107. if ( index != -1 )
  108. {
  109. RfIDList[ index ].StationId = 2;
  110. CurrStationRfid[ 1 ] = RfIDList[ index ].Rfid;
  111. LogHelper.Info(RfIDList[ index ].Rfid + " 1工位离心开始");
  112. }
  113. else
  114. {
  115. LogHelper.Info(" 1工位离心开始");
  116. }
  117. index = RfIDList.FindIndex(x => x.StationId == 1);
  118. if ( index != -1 )
  119. {
  120. RfIDList[ index ].StationId = 2;
  121. CurrStationRfid[ 2 ] = RfIDList[ index ].Rfid;
  122. LogHelper.Info(RfIDList[ index ].Rfid + " 1工位离心开始");
  123. }
  124. else
  125. {
  126. LogHelper.Info(" 1工位离心开始");
  127. }
  128. }
  129. else
  130. {
  131. LogHelper.Info(" 1工位离心开始");
  132. }
  133. LogHelper.Debuginfo("1工位离心开始已置位");
  134. }
  135. else
  136. {
  137. LogHelper.Debuginfo("1工位离心开始已复位");
  138. }
  139. break;
  140. case "1工位离心完成":
  141. if ( value )
  142. {
  143. stopwatchs[ 0 ].Stop();
  144. if ( RfIDList.Count != 0 )
  145. {
  146. int index= RfIDList.FindIndex(x => x.StationId == 2);
  147. if ( index != -1 )
  148. {
  149. RfIDList[ index ].StationId = 3;
  150. LogHelper.Info(CurrStationRfid[ 1 ] + " 1工位离心完成");
  151. }
  152. else
  153. {
  154. LogHelper.Info(" 1工位离心完成");
  155. }
  156. index = RfIDList.FindIndex(x => x.StationId == 2);
  157. if ( index != -1 )
  158. {
  159. RfIDList[ index ].StationId = 3;
  160. LogHelper.Info(CurrStationRfid[ 2 ] + " 1工位离心完成");
  161. }
  162. else
  163. {
  164. LogHelper.Info(" 1工位离心完成");
  165. }
  166. CurrStationRfid[ 1 ] = "";
  167. CurrStationRfid[ 2 ] = "";
  168. }
  169. else
  170. {
  171. LogHelper.Info(" 1工位离心完成");
  172. }
  173. LogHelper.Debuginfo("1工位离心完成已置位");
  174. }
  175. else
  176. {
  177. LogHelper.Debuginfo("1工位离心完成已复位");
  178. }
  179. break;
  180. case "2工位离心开始":
  181. if ( value )
  182. {
  183. stopwatchs[ 1 ].Restart();
  184. if ( RfIDList.Count != 0 )
  185. {
  186. int index = RfIDList.FindIndex(x => x.StationId == 3);
  187. if ( index != -1 )
  188. {
  189. RfIDList[ index ].StationId = 4;
  190. CurrStationRfid[ 3 ] = RfIDList[ index ].Rfid;
  191. RfIDList[ index ].State = "离心中";
  192. LogHelper.Info(RfIDList[ index ].Rfid + " 2工位离心开始");
  193. }
  194. else
  195. {
  196. LogHelper.Info(" 2工位离心开始");
  197. }
  198. index = RfIDList.FindIndex(x => x.StationId == 1);
  199. if ( index != -1 )
  200. {
  201. RfIDList[ index ].StationId = 4;
  202. CurrStationRfid[ 4 ] = RfIDList[ index ].Rfid;
  203. RfIDList[ index ].State = "离心中";
  204. LogHelper.Info(RfIDList[ index ].Rfid + " 2工位离心开始");
  205. }
  206. else
  207. {
  208. LogHelper.Info(" 2工位离心开始");
  209. }
  210. }
  211. else
  212. {
  213. LogHelper.Info(" 2工位离心开始");
  214. }
  215. LogHelper.Debuginfo("2工位离心开始已置位");
  216. }
  217. else
  218. {
  219. LogHelper.Debuginfo("2工位离心开始已复位");
  220. }
  221. break;
  222. case "2工位离心完成":
  223. if ( value )
  224. {
  225. stopwatchs[ 1 ].Stop();
  226. if ( RfIDList.Count != 0 )
  227. {
  228. int index= RfIDList.FindIndex(x => x.StationId == 4);
  229. if ( index != -1 )
  230. {
  231. RfIDList[ index ].StationId = 5;
  232. RfIDList[ index ].State = "离心完成";
  233. LogHelper.Info(CurrStationRfid[ 3 ] + " 2工位离心完成");
  234. }
  235. else
  236. {
  237. LogHelper.Info(" 2工位离心完成");
  238. }
  239. index = RfIDList.FindIndex(x => x.StationId == 4);
  240. if ( index != -1 )
  241. {
  242. RfIDList[ index ].StationId = 5;
  243. RfIDList[ index ].State = "离心完成";
  244. LogHelper.Info(CurrStationRfid[ 4 ] + " 1工位离心完成");
  245. }
  246. else
  247. {
  248. LogHelper.Info(" 1工位离心完成");
  249. }
  250. CurrStationRfid[ 3 ] = "";
  251. CurrStationRfid[ 4 ] = "";
  252. }
  253. else
  254. {
  255. LogHelper.Info(" 2工位离心完成");
  256. }
  257. LogHelper.Debuginfo("2工位离心完成已置位");
  258. }
  259. else
  260. {
  261. LogHelper.Debuginfo("2工位离心完成已复位");
  262. }
  263. break;
  264. case "脱模开始":
  265. if ( value )
  266. {
  267. LogHelper.Info(CurrConfig.Rfid + " 脱模开始");
  268. PlateInPlace(CurrConfig.Rfid);
  269. LogHelper.Debuginfo("脱模开始已置位");
  270. }
  271. else
  272. {
  273. LogHelper.Debuginfo("脱模开始已复位");
  274. }
  275. break;
  276. case "脱模完成":
  277. if ( value )
  278. {
  279. LogHelper.Info(CurrConfig.Rfid + " 脱模完成");
  280. if ( processDataModels.Count != 0 )
  281. {
  282. PrintInfo(processDataModels[ 0 ], "手动");
  283. processDataModels.RemoveAt(0);
  284. }
  285. LogHelper.Debuginfo("脱模完成已置位");
  286. }
  287. else
  288. {
  289. LogHelper.Debuginfo("脱模完成已复位");
  290. }
  291. break;
  292. case "固化开始":
  293. if ( value )
  294. {
  295. stopwatchs[ 2 ].Restart();
  296. if ( RfIDList.Count != 0 )
  297. {
  298. int index= RfIDList.FindIndex(x => x.StationId ==5 );
  299. if ( index != -1 )
  300. {
  301. RfIDList[ index ].StationId = 6;
  302. CurrStationRfid[ 5 ] = RfIDList[ index ].Rfid;
  303. RfIDList[ index ].State = "固化中";
  304. LogHelper.Info(RfIDList[ index ].Rfid + " 固化开始");
  305. }
  306. else
  307. {
  308. LogHelper.Info(" 固化开始");
  309. }
  310. index = RfIDList.FindIndex(x => x.StationId == 5);
  311. if ( index != -1 )
  312. {
  313. RfIDList[ index ].StationId = 6;
  314. CurrStationRfid[ 6 ] = RfIDList[ index ].Rfid;
  315. RfIDList[ index ].State = "固化中";
  316. LogHelper.Info(RfIDList[ index ].Rfid + " 固化开始");
  317. }
  318. else
  319. {
  320. LogHelper.Info(" 固化开始");
  321. }
  322. }
  323. else
  324. {
  325. LogHelper.Info(" 固化开始");
  326. }
  327. LogHelper.Debuginfo("固化开始已置位");
  328. }
  329. else
  330. {
  331. LogHelper.Debuginfo("固化开始已复位");
  332. }
  333. break;
  334. case "固化完成":
  335. if ( value )
  336. {
  337. stopwatchs[ 2 ].Stop();
  338. if ( RfIDList.Count != 0 )
  339. {
  340. int index= RfIDList.FindIndex(x => x.StationId ==6 );
  341. if ( index != -1 )
  342. {
  343. RfIDList.RemoveAt(index);
  344. LogHelper.Info(RfIDList[ index ].Rfid + " 固化完成");
  345. }
  346. else
  347. {
  348. LogHelper.Info(" 固化完成");
  349. }
  350. index = RfIDList.FindIndex(x => x.StationId == 6);
  351. if ( index != -1 )
  352. {
  353. RfIDList.RemoveAt(index);
  354. LogHelper.Info(RfIDList[ index ].Rfid + " 固化完成");
  355. }
  356. else
  357. {
  358. LogHelper.Info(" 固化完成");
  359. }
  360. //CurrStationRfid[5] = RfIDList[index].Rfid;
  361. //CurrStationRfid[6] = RfIDList[index].Rfid;
  362. int hour= DateTime.Now.Hour;
  363. ProduceData[ hour ] = ProduceData[ hour ] + 2;
  364. for ( int i = hour + 1; i < ProduceData.Length; i++ )
  365. {
  366. ProduceData[ i ] = 0;
  367. }
  368. ProduceDataToChangeEvent?.Invoke();
  369. }
  370. else
  371. {
  372. LogHelper.Info(" 固化完成");
  373. }
  374. LogHelper.Debuginfo("固化完成已置位");
  375. }
  376. else
  377. {
  378. LogHelper.Debuginfo("固化完成已复位");
  379. }
  380. break;
  381. default:
  382. break;
  383. }
  384. }
  385. public void DataBridging()
  386. {
  387. ObservableDictionary<string,bool> BoolPairs=new ObservableDictionary<string, bool>();
  388. BoolPairs.Add("1工位离心开始", false);
  389. BoolPairs.Add("1工位离心完成", false);
  390. BoolPairs.Add("2工位离心开始", false);
  391. BoolPairs.Add("2工位离心完成", false);
  392. BoolPairs.Add("脱模开始", false);
  393. BoolPairs.Add("脱模完成", false);
  394. BoolPairs.Add("固化开始", false);
  395. BoolPairs.Add("固化完成", false);
  396. BoolPairs.CollectionChanged += BoolPairs_CollectionChanged;
  397. //BoolPairs["脱模开始"] =true ;
  398. //BoolPairs["脱模完成"] = true ;
  399. while ( true )
  400. {
  401. try
  402. {
  403. if ( s7PlcCommunicate != null && s7PlcCommunicate.IsConnected )
  404. {
  405. byte []buff= s7PlcCommunicate.ReadByte(25, 780, 84);
  406. int actuallength=buff[73];
  407. byte[] buffsT = new byte[ actuallength ];
  408. Array.Copy(buff, 74, buffsT, 0, actuallength);
  409. CurrConfig.Rfid = Encoding.ASCII.GetString(buffsT);
  410. BoolPairs[ "1工位离心开始" ] = s7PlcCommunicate.GetBitAt(buff, 0, 0);
  411. BoolPairs[ "1工位离心完成" ] = s7PlcCommunicate.GetBitAt(buff, 0, 1);
  412. BoolPairs[ "2工位离心开始" ] = s7PlcCommunicate.GetBitAt(buff, 1, 0);
  413. BoolPairs[ "2工位离心完成" ] = s7PlcCommunicate.GetBitAt(buff, 1, 1);
  414. BoolPairs[ "脱模开始" ] = s7PlcCommunicate.GetBitAt(buff, 2, 0);
  415. BoolPairs[ "脱模完成" ] = s7PlcCommunicate.GetBitAt(buff, 2, 1);
  416. BoolPairs[ "固化开始" ] = s7PlcCommunicate.GetBitAt(buff, 3, 0);
  417. BoolPairs[ "固化完成" ] = s7PlcCommunicate.GetBitAt(buff, 3, 1);
  418. //固化压力 792.0
  419. CurrConfig.Pressure1 = s7PlcCommunicate.GetRealAt(buff, 12);
  420. CurrConfig.PTime1 = s7PlcCommunicate.GetTimeSpanAt(buff, 16);
  421. CurrConfig.Speed = s7PlcCommunicate.GetShortAt(buff, 32);
  422. CurrConfig.Speed2 = s7PlcCommunicate.GetShortAt(buff, 34);
  423. CurrConfig.RealSpeed = s7PlcCommunicate.GetRealAt(buff, 36);
  424. CurrConfig.RealSpeed2 = s7PlcCommunicate.GetRealAt(buff, 40);
  425. CurrConfig.Time = s7PlcCommunicate.GetTimeSpanAt(buff, 44);
  426. CurrConfig.Time2 = s7PlcCommunicate.GetTimeSpanAt(buff, 48);
  427. //CurrConfig.Power1_1 = s7PlcCommunicate.GetShortAt(buff, 20);
  428. //CurrConfig.Power1_2 = s7PlcCommunicate.GetShortAt(buff, 22);
  429. //CurrConfig.Power1_3 = s7PlcCommunicate.GetShortAt(buff, 24);
  430. //CurrConfig.Power1_4 = s7PlcCommunicate.GetShortAt(buff, 26);
  431. CurrConfig.Realtime = ( float ) ( stopwatchs[ 0 ].ElapsedMilliseconds / 1000.0 );
  432. CurrConfig.Realtime2 = ( float ) ( stopwatchs[ 1 ].ElapsedMilliseconds / 1000.0 );
  433. CurrConfig.Realtime3 = ( float ) ( stopwatchs[ 2 ].ElapsedMilliseconds / 1000.0 );
  434. for ( int i = 0; i < stopwatchs.Length; i++ )
  435. {
  436. if ( stopwatchs[ i ].ElapsedMilliseconds / 1000.0 > 1000 )
  437. {
  438. stopwatchs[ i ].Stop();
  439. }
  440. }
  441. }
  442. List<tb_formulasdata> tb_Formulasdatas = SqlSugarHelper.Queryabletb_formulasdata();
  443. if ( tb_Formulasdatas.Count != 0 )
  444. Formulasdata = tb_Formulasdatas[ 0 ];
  445. }
  446. catch
  447. {
  448. }
  449. Thread.Sleep(50);
  450. }
  451. }
  452. private void BoolPairs_CollectionChanged(in NotifyCollectionChangedEventArgs<KeyValuePair<string, bool>> e)
  453. {
  454. if ( e.NewItem.Value != e.OldItem.Value )
  455. {
  456. RuningToWorkEvent?.Invoke(e.OldItem.Key, e.NewItem.Value);
  457. }
  458. }
  459. private void Serial_ConnectionChanged(SerialCommunication arg1, bool arg2)
  460. {
  461. if ( arg2 )
  462. LogHelper.Info(arg1.PortName + ":已连接");
  463. if ( !arg2 )
  464. LogHelper.Info(arg1.PortName + ":断开连接");
  465. }
  466. private void Serial_DataReceived(SerialCommunication arg1, string arg2)
  467. {
  468. LogHelper.Info("收到" + arg1.PortName + $"消息:{arg2}");
  469. }
  470. /// <summary>
  471. /// 网板读取获取数据并上传记录
  472. /// </summary>
  473. public async Task PlateInPlace(string value)
  474. {
  475. var IsOK = true;
  476. try
  477. {
  478. if ( !string.IsNullOrEmpty(value) )
  479. {
  480. try
  481. {
  482. if ( value.Length != 8 )
  483. {
  484. return;
  485. }
  486. else
  487. {
  488. var boardId = value;
  489. string boardguid = Guid.NewGuid().ToString();
  490. var modelsinfo = "";
  491. var materialtype = "";
  492. var printdeviceId = "";
  493. var brand = "";
  494. var printTagProduct = "";
  495. var iskid = false;
  496. var ishaiwai = false;
  497. var isLarge = "无";
  498. var count = 0;
  499. var tip = "";
  500. var isoutline = false;
  501. XnRestfulResult<List<Re_Items>> groupdata=new XnRestfulResult<List<Re_Items>>();
  502. if ( Ismeswork )
  503. {
  504. groupdata = _httpService.GetGroupItems(boardId, CurentApplicationSettings.DeviceId);
  505. if ( !groupdata.Success )
  506. {
  507. if ( groupdata.RawText.Contains("未点检") )
  508. {
  509. var s = MessageBox.Show("设备未点检,请点检后确认!", "提示", MessageBoxButton.OK);
  510. }
  511. LogHelper.MesInfo($"网板ID:{boardId}获取信息失败,Code:{( int ) groupdata.Code},原因:{groupdata.RawText}");
  512. isoutline = true;
  513. }
  514. else
  515. {
  516. if ( groupdata.Data.Count <= 0 )
  517. {
  518. LogHelper.MesInfo($"网板ID:{boardId}获取信息失败,Code:{( int ) groupdata.Code},原因:{groupdata.RawText}");
  519. isoutline = true;
  520. }
  521. }
  522. }
  523. else
  524. {
  525. isoutline = true;
  526. }
  527. if ( !isoutline )
  528. {
  529. ///上传后处理记录
  530. var result = UpdateRecord(boardId);
  531. if ( !string.IsNullOrEmpty(result) )
  532. {
  533. LogHelper.MesInfo($"上传记录失败,{result}!");
  534. var boxresult = MessageBox.Show($"{result}(是:放回;否:重试)", "提示", MessageBoxButton.YesNo);
  535. if ( boxresult == MessageBoxResult.Yes )
  536. {
  537. IsOK = false;
  538. return;
  539. }
  540. }
  541. ///读取网板内的牙模的信息(方便打印在小票上),如果读取失败就读取下一个牙模,读取成功就跳出循环
  542. for ( int i = 0; i < 10; i++ )
  543. {
  544. try
  545. {
  546. modelsinfo = "";
  547. count = groupdata.Data.Count;
  548. var Id = groupdata.Data[groupdata.Data.Count - i].itemId;
  549. var infos = _httpService.GetModels(Id, CurentApplicationSettings.DeviceId);
  550. if ( infos.Success )
  551. {
  552. modelsinfo = infos.Data.uvcuringReleaseBatch + " " + infos.Data.alignerSpec.material + "-" + infos.Data.alignerSpec.thickness;
  553. if ( infos.Data.order.is_expedited == "1" || infos.Data.remade || infos.Data.produceType == "R" )
  554. {
  555. modelsinfo = modelsinfo + "\r\n";
  556. if ( infos.Data.order.is_expedited == "1" )
  557. {
  558. modelsinfo = modelsinfo + " 加急";
  559. }
  560. if ( infos.Data.remade )
  561. {
  562. modelsinfo = modelsinfo + " 返工";
  563. }
  564. if ( infos.Data.produceType == "R" )
  565. {
  566. modelsinfo = modelsinfo + " 保持器";
  567. }
  568. }
  569. iskid = infos.Data.isKid;
  570. ishaiwai = infos.Data.order.country.Contains("中国") ? false : true;
  571. if ( infos.Data.processParameters != null )
  572. {
  573. var carrierf = infos.Data.processParameters.FirstOrDefault(x => x.key == "carrier");
  574. if ( carrierf != null )
  575. {
  576. isLarge = carrierf.value == "small" ? "小载具" : "大载具";
  577. }
  578. }
  579. var record = _httpService.GetProductionRecord(Id);
  580. if ( record.Success )
  581. {
  582. printdeviceId = record.Data.First().deviceId;
  583. if ( record.Data.First().description.FirstOrDefault(x => x.key == "printTaskId") != null )
  584. {
  585. var taskId = record.Data.First().description.FirstOrDefault(x => x.key == "printTaskId").value;
  586. var taskinfo = _httpService.GetPrintTask(taskId);
  587. if ( taskinfo.Success )
  588. {
  589. materialtype = taskinfo.Data.description.FirstOrDefault(x => x.key == "filmType") != null ? taskinfo.Data.description.FirstOrDefault(x => x.key == "filmType").value : "";
  590. printTagProduct = taskinfo.Data.description.FirstOrDefault(x => x.key == "printTagProduct") != null ? taskinfo.Data.description.FirstOrDefault(x => x.key == "printTagProduct").value : "";
  591. brand = taskinfo.Data.description.FirstOrDefault(x => x.key == "productOfProduce") != null ? taskinfo.Data.description.FirstOrDefault(x => x.key == "productOfProduce").value : "";
  592. break;
  593. }
  594. }
  595. }
  596. }
  597. }
  598. catch ( Exception e )
  599. {
  600. LogHelper.Error("读取网板内牙模信息异常:" + e.ToString());
  601. }
  602. }
  603. }
  604. else
  605. {
  606. LogHelper.MesInfo($"网板{value}获取数据异常,不上传记录");
  607. modelsinfo = "异常";
  608. materialtype = "异常";
  609. printTagProduct = "异常";
  610. printdeviceId = "异常";
  611. brand = "异常";
  612. }
  613. ///将生产信息记录下,用于在打印完成时打印小票
  614. App.Current.Dispatcher.Invoke(( System.Action ) delegate
  615. {
  616. //添加记录
  617. processDataModels.Add(new ProcessDataModel()
  618. {
  619. BoardId = boardId,
  620. ModelsInfo = modelsinfo,
  621. StartTime = DateTime.Now.ToString("HH:mm:ss"),
  622. State = ProcessState.入料中,
  623. BoardGuid = boardguid,
  624. stopwatch = new System.Diagnostics.Stopwatch(),
  625. MaterialType = materialtype,
  626. PrintTagProduct = printTagProduct,
  627. PrintDeviceId = printdeviceId,
  628. IsKid = iskid,
  629. Tip = tip,
  630. IsOverSea = ishaiwai,
  631. IsLarge = isLarge,
  632. Brand = brand,
  633. Count = count,
  634. });
  635. if ( processDataModels.Count > 10 )
  636. {
  637. processDataModels.RemoveAt(0);
  638. }
  639. RfidInfo rfidInfo= new RfidInfo() { Rfid = value, StationId = 1, ModelsInfo=modelsinfo, State="入料中", StartTime=DateTime.Now };
  640. if ( RfIDList.Find(x => x.Rfid == value) == null )
  641. {
  642. RfIDList.Add(rfidInfo);
  643. // RuningData.Add(rfidInfo);
  644. }
  645. });
  646. }
  647. }
  648. catch ( Exception e )
  649. {
  650. LogHelper.Error("网板读取获取数据异常,原因:" + e.ToString());
  651. }
  652. }
  653. else
  654. {
  655. LogHelper.Info("未读取到网板编号");
  656. //WriteInfo($"未读取到网板编号");
  657. }
  658. }
  659. catch
  660. {
  661. }
  662. finally
  663. {
  664. }
  665. }
  666. /// <summary>
  667. /// 上传生产记录
  668. /// </summary>
  669. /// <param name="RfidId">从扫码枪获取的网板Id</param>
  670. /// <returns></returns>
  671. public string UpdateRecord(string RfidId)
  672. {
  673. try
  674. {
  675. Rt_ProductionRecordDto rt_ProductionRecord = new Rt_ProductionRecordDto()
  676. {
  677. userId = UserId,///用户Id
  678. creationTime = DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss.fffzzz"),///生产时间
  679. deviceId = CurentApplicationSettings.DeviceId,///设备编号
  680. productionType = "UVcuringNextTreat",///生产工序,固定不变
  681. description = new List<DescriptionItem>()
  682. {
  683. ///从扫码枪获取的网板Id
  684. new DescriptionItem(){ key="containerId",value=RfidId},
  685. //后处理配方(根据设备不同参数也不同,具体需要上传什么参数要具体咨询下现场的工艺人员(程朋))
  686. new DescriptionItem(){ key="CentrifugalTime1",value=Formulasdata.第一次离心时间},
  687. new DescriptionItem(){ key="CentrifugalTime2",value=Formulasdata.第二次离心时间},
  688. new DescriptionItem(){ key="LightSolidifiedTime",value=Formulasdata.光固化时间},
  689. }
  690. };
  691. var recordData = _httpService.PostRecord(rt_ProductionRecord);
  692. if ( recordData.Success )
  693. {
  694. LogHelper.MesInfo($"网板ID:{RfidId}上传记录成功");
  695. return "";
  696. }
  697. else
  698. {
  699. LogHelper.MesInfo($"网板ID:{RfidId}上传记录失败,Code:{( int ) recordData.Code},原因:{recordData.RawText}");
  700. /////记录至数据库
  701. //Rt_AngelNetRecordDto recordDto = new Rt_AngelNetRecordDto()
  702. //{
  703. // DevcieId = DataPathcs.GetConnectionStringsConfig("DeviceID"),
  704. // EquipmentType = 4,
  705. // UserId = UserName,
  706. // descriptions = new List<Description>() {
  707. // new Description(){ Key="BoardId",KeyValue=RfidId },
  708. // new Description(){ Key="Code",KeyValue=recordData.Code.ToString() },
  709. // new Description(){ Key="RawText",KeyValue=recordData.RawText }
  710. // }
  711. //};
  712. //var recorddata = alignServer.InsertProductionRecord(recordDto);
  713. return $"{recordData.RawText}";
  714. }
  715. }
  716. catch ( Exception ex )
  717. {
  718. LogHelper.Error($"网板ID:{RfidId}上传记录异常,原因{ex.Message}");
  719. return ex.ToString();
  720. }
  721. }
  722. /// <summary>
  723. /// 小票打印
  724. /// </summary>
  725. /// <param name="printinfo"></param>
  726. /// <param name="Position"></param>
  727. public void PrintInfo(ProcessDataModel printinfo, string Position)
  728. {
  729. try
  730. {
  731. var pmTitle = new PrintModel
  732. {
  733. FontFamily = "宋体",
  734. FontSize = 15,
  735. IsBold = true,
  736. Text = new StringReader("\n" + "<<<<后处理收料信息>>>>") //首行需要空行,某些打印机首行不为空时会出现“首行乱码问题”
  737. };
  738. var count = 0;
  739. if ( printinfo.SolidifyStation != 0 )
  740. {
  741. count = printinfo.SolidifyStation % 2 == 1 ? 1 : 2;
  742. }
  743. var printContent = new StringBuilder();
  744. printContent.Append("<<<----------------------------->>>" + "\n");
  745. printContent.Append($"出料窗口:{CurentApplicationSettings.DeviceId}" + $",{Position}传送带,第{count}板" + "\n");
  746. printContent.Append($"网板编号:{printinfo.BoardId}" + "\n");
  747. printContent.Append("出票时间:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "\n");
  748. printContent.Append("<<<----------------------------->>>" + "\n");
  749. printContent.Append(" " + "\n");
  750. var batchs = new PrintModel
  751. {
  752. FontFamily = "宋体",
  753. FontSize = 12,
  754. IsBold = true,
  755. Text = new StringReader(printContent.ToString())
  756. };
  757. var sb = new StringBuilder();
  758. if ( !string.IsNullOrEmpty(printinfo.Tip) )
  759. {
  760. sb.Append($"记录上传异常:{printinfo.Tip}" + "\n");
  761. }
  762. sb.Append($"3D打印设备:{printinfo.PrintDeviceId}" + "\n");
  763. sb.Append($"批次:{printinfo.ModelsInfo}" + "\n");
  764. sb.Append($"膜片规格:{printinfo.MaterialType}" + "\n");
  765. sb.Append($"类型:{printinfo.PrintTagProduct}" + "\n");
  766. sb.Append($"品牌:{printinfo.Brand}" + "\n");
  767. sb.Append($"是否Kid:{( printinfo.IsKid == true ? "是" : "否" )}" + "\n");
  768. sb.Append($"是否海外:{( printinfo.IsOverSea == true ? "是" : "否" )}" + "\n");
  769. sb.Append($"大小载具:{printinfo.IsLarge}" + "\n");
  770. sb.Append($"数量:{printinfo.Count.ToString()}" + "\n");
  771. var pmContent2 = new PrintModel
  772. {
  773. FontFamily = "宋体",
  774. FontSize = 10,
  775. IsBold = false,
  776. Text = new StringReader(sb.ToString().Trim())
  777. };
  778. PrintModel[] pms = { pmTitle, batchs, pmContent2 };
  779. LogHelper.Info($"打印内容{printContent}" + "\n" + sb + "\n" + "<<<------------------------------->>>");
  780. TicketPrinterHelper.Print(pms, CurentApplicationSettings.PrinterName);
  781. }
  782. catch ( Exception ex )
  783. {
  784. LogHelper.Error("打印异常,原因:" + ex.ToString());
  785. }
  786. }
  787. }
  788. }