KBWindowViewModel.cs 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033
  1. using LiveChartsCore.SkiaSharpView.Extensions;
  2. using LiveChartsCore;
  3. using LogoForceTestApp.Modules.MainModule.Models;
  4. using Prism.Events;
  5. using Prism.Mvvm;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Timers;
  10. using LiveChartsCore.SkiaSharpView.Painting;
  11. using SkiaSharp;
  12. using LiveChartsCore.Measure;
  13. using Repository;
  14. using Repository.Entiies;
  15. using LiveChartsCore.SkiaSharpView;
  16. using System.Collections.ObjectModel;
  17. using LiveChartsCore.SkiaSharpView.VisualElements;
  18. using LiveChartsCore.Defaults;
  19. using FontFamily = System.Windows.Media.FontFamily;
  20. using AutoMapper;
  21. using System.Windows;
  22. using ZXing.Maxicode;
  23. using System.Numerics;
  24. using System.Windows.Documents;
  25. using LiveChartsCore.ConditionalDraw;
  26. using LiveChartsCore.Themes;
  27. using System.Threading.Tasks;
  28. using System.Data.SqlTypes;
  29. using System.Threading;
  30. using Timer = System.Timers.Timer;
  31. namespace LogoForceTestApp.Modules.MainModule.ViewModels
  32. {
  33. public class KBWindowViewModel : BindableBase
  34. {
  35. #region
  36. IRepository repository;
  37. private readonly IEventAggregator _eventAggregator;
  38. public ObservableCollection<HouseDto> MyHouse { get; set; }
  39. private readonly IMapper _mapper;
  40. //private readonly List<House> _myHouse;
  41. private string timeNow = DateTime.Now.ToString();
  42. public string TimeNow
  43. {
  44. get => timeNow;
  45. set { SetProperty(ref timeNow, value); }
  46. }
  47. private System.Timers.Timer _timer;
  48. public IEnumerable<ISeries> Series { get; set; }
  49. int[] outwork = new int[3];
  50. public string TotalPer { get; set; }
  51. public string ActualPer { get; set; }
  52. public string FallIllPer { get; set; }
  53. public string AbsenPer { get; set; }
  54. #region 产量
  55. public string BillNo { get; set; }
  56. public double AuxQty { get; set; }
  57. public double Finished { get; set; }
  58. private double _finishRate;
  59. public double FinishRate
  60. {
  61. get { return (Finished / Convert.ToDouble(AuxQty)) * 100; }
  62. set { SetProperty(ref _finishRate, value); }
  63. }
  64. #endregion
  65. #region 灯
  66. public string ImgLight1 { get; set; }//1号机
  67. public string ImgLight2 { get; set; }
  68. public string ImgLight3 { get; set; }
  69. public string ImgLight4 { get; set; }
  70. public string ImgLight5 { get; set; }
  71. public string ImgLight6 { get; set; }
  72. public string ImgLight7 { get; set; }
  73. public string ImgLight8 { get; set; }
  74. public string ImgLight9 { get; set; }
  75. public string ImgLight10 { get; set; }
  76. public string ImgLight11 { get; set; }
  77. public string ImgLight12 { get; set; }
  78. public string ImgLight13 { get; set; }
  79. public string ImgLight14 { get; set; }
  80. public string ImgLight15 { get; set; }//螺丝机
  81. public string ImgLight16 { get; set; }
  82. public string ImgLight17 { get; set; }
  83. public string ImgLight18 { get; set; }
  84. public string ImgLight19 { get; set; }
  85. public string ImgLight20 { get; set; }
  86. public string ImgLight21 { get; set; }//提升机
  87. public string ImgLight22 { get; set; }//检测机
  88. public string ImgLight23 { get; set; }//返修机
  89. #endregion
  90. public double TotalNum { get; set; }
  91. public double PassNum { get; set; }
  92. public string FirstName { get; set; }
  93. public string SecondName { get; set; }
  94. public string ThirdName { get; set; }
  95. #endregion
  96. public KBWindowViewModel(IRepository repository, IEventAggregator eventAggregator, IMapper mapper)
  97. {
  98. this.repository = repository;
  99. this._eventAggregator = eventAggregator;
  100. Series = new List<ISeries>();
  101. #region timer
  102. _timer = new Timer();
  103. _timer.Interval = 1000;
  104. _timer.Elapsed += _timer_Elapsed;
  105. _timer.Start();
  106. #endregion
  107. #region chart显示文字
  108. string name = "微软雅黑";
  109. SKTypeface skTypeface = SKTypeface.FromFamilyName(name);
  110. if (skTypeface.FamilyName != name)
  111. {
  112. // 字体加载失败了
  113. skTypeface.Dispose();
  114. }
  115. FontFamily fontFamily = new(name);
  116. foreach (string familyNamesValue in fontFamily.FamilyNames.Values)
  117. {
  118. skTypeface = SKTypeface.FromFamilyName(familyNamesValue);
  119. if (skTypeface.FamilyName == familyNamesValue)
  120. break;
  121. else
  122. {
  123. skTypeface.Dispose();
  124. }
  125. }
  126. LiveChartsSkiaSharp.DefaultSKTypeface = skTypeface;
  127. #endregion
  128. _eventAggregator.GetEvent<AlarmEvent>().Subscribe(GetAlarmMessage);//接收另一个viewmodel的信息
  129. MyHouse = new ObservableCollection<HouseDto>();
  130. _mapper = mapper;
  131. _eventAggregator.GetEvent<OperatorNameEvent>().Subscribe(ShowPeope);
  132. _eventAggregator.GetEvent<QuestEvent>().Subscribe(ShowOrder);
  133. Task.Factory.StartNew(Main, TaskCreationOptions.LongRunning);
  134. }
  135. private void Main()
  136. {
  137. while (true)
  138. {
  139. try
  140. {
  141. ShowHouse();
  142. ShowQuality();
  143. ShowOutWork();
  144. AlarmOK();
  145. double d = Convert.ToDouble(((PassNum / TotalNum) * 100).ToString("0.00"));
  146. PassRate(d);
  147. ShowNowProcess();
  148. ShowProcess();
  149. }
  150. catch (ObjectDisposedException ex)
  151. {
  152. }
  153. finally
  154. {
  155. Thread.Sleep(5000);
  156. }
  157. }
  158. }
  159. private void _timer_Elapsed(object sender, ElapsedEventArgs e)
  160. {
  161. TimeNow = DateTime.Now.ToString();
  162. }
  163. #region 合格率
  164. public void PassRate(double passRate)
  165. {
  166. Series = GaugeGenerator.BuildSolidGauge(
  167. new GaugeItem(passRate, series =>
  168. {
  169. series.Fill = new SolidColorPaint(SKColors.YellowGreen);
  170. series.DataLabelsSize = 23;
  171. series.DataLabelsPaint = new SolidColorPaint(SKColors.LightPink);
  172. series.DataLabelsPosition = PolarLabelsPosition.ChartCenter;
  173. series.InnerRadius = 40;
  174. }),
  175. new GaugeItem(GaugeItem.Background, series =>
  176. {
  177. series.InnerRadius = 40;
  178. series.Fill = new SolidColorPaint(new SKColor(100, 181, 246, 90));
  179. }));
  180. }
  181. #endregion
  182. #region 出勤率
  183. public void ShowOutWork()
  184. {
  185. try
  186. {
  187. var list = repository.GetFirstDefault<OutofWork>(c => c.DateOutWork == DateTime.Today);
  188. if (list != null)
  189. {
  190. outwork[0] = list.Actual;
  191. outwork[1] = list.FallIll;
  192. outwork[2] = list.Absenteeism;
  193. int total = outwork[2] + outwork[1] + outwork[0];
  194. OutWork(outwork[2], outwork[1], outwork[0], total);
  195. string a = ((double)outwork[0] / (double)total).ToString("P");
  196. string b = ((double)outwork[1] / (double)total).ToString("P");
  197. string c = ((double)outwork[2] / (double)total).ToString("P");
  198. TotalPer = $"应到人数:{total}";
  199. ActualPer = $"实到人数:{outwork[0]}【{a}】";
  200. FallIllPer = $"请假人数:{outwork[1]}【{b}】";
  201. AbsenPer = $"旷工人数:{outwork[2]}【{c}】";
  202. }
  203. }
  204. catch (Exception ex)
  205. {
  206. }
  207. }
  208. public IEnumerable<ISeries> Series12 { get; set; }
  209. public double GaugeTotal12 { get; set; }
  210. public double InitialRotation12 { get; set; }
  211. public double MaxAngle12 { get; set; }
  212. /// <summary>
  213. /// "旷工人数","请假人数" ,"实到人数","应到人数"
  214. /// </summary>
  215. /// <param name="a"></param>
  216. /// <param name="b"></param>
  217. /// <param name="c"></param>
  218. /// <param name="d"></param>
  219. public void OutWork(int a, int b, int c, int d)
  220. {
  221. GaugeTotal12 = d;//最大数
  222. InitialRotation12 = 90;
  223. MaxAngle12 = 270;
  224. void SetStyle12(string name, PieSeries<ObservableValue> series)
  225. {
  226. series.Name = name;
  227. series.DataLabelsPosition = PolarLabelsPosition.Start;
  228. series.DataLabelsFormatter =
  229. point => $"{point.Context.Series.Name} {point.Coordinate.PrimaryValue}";
  230. series.DataLabelsSize = 16;
  231. series.InnerRadius = 20;
  232. series.RelativeInnerRadius = 4;
  233. series.RelativeOuterRadius = 4;
  234. series.DataLabelsPaint = new SolidColorPaint(new SKColor(150, 150, 150));
  235. }
  236. Series12 = GaugeGenerator.BuildSolidGauge(
  237. new GaugeItem(a, series => SetStyle12("旷工人数", series)),
  238. new GaugeItem(b, series => SetStyle12("请假人数", series)),
  239. new GaugeItem(c, series => SetStyle12("实到人数", series)),
  240. new GaugeItem(d, series => SetStyle12("应到人数", series)),
  241. new GaugeItem(GaugeItem.Background, series =>
  242. {
  243. series.InnerRadius = 20;
  244. series.RelativeInnerRadius = 10;
  245. series.RelativeOuterRadius = 10;
  246. }));
  247. }
  248. //public IEnumerable<ISeries> SeriesOutWork { get; set; }
  249. //private static int _index = 0;
  250. //private static string[] _names = new[] { "实到", "请假", "旷工" };
  251. //public void OutWork(int[] val)
  252. //{
  253. // SeriesOutWork = val.AsPieSeries((value, series) =>
  254. // {
  255. // series.Name = _names[_index++ % _names.Length];
  256. // series.DataLabelsPosition = LiveChartsCore.Measure.PolarLabelsPosition.Outer; // mark
  257. // series.DataLabelsSize = 10;
  258. // series.DataLabelsPaint = new SolidColorPaint(new SKColor(180, 180, 180));
  259. // //series.DataLabelsFormatter =
  260. // // point =>
  261. // // $"This slide takes {point.Coordinate.PrimaryValue} " +
  262. // // $"out of {point.StackedValue!.Total} parts";
  263. // //series.ToolTipLabelFormatter = point => $"{point.StackedValue!.Share:P2}";
  264. // series.ToolTipLabelFormatter =
  265. // point =>
  266. // {
  267. // var pv = point.Coordinate.PrimaryValue;
  268. // var sv = point.StackedValue!;
  269. // var a = $"{pv}/{sv.Total}{Environment.NewLine}{sv.Share:P2}";
  270. // return a;
  271. // };
  272. // series.DataLabelsFormatter =
  273. // point =>
  274. // {
  275. // var pv = point.Coordinate.PrimaryValue;
  276. // var sv = point.StackedValue!;
  277. // var a = $"{series.Name}{Environment.NewLine}{sv.Share:P2}";
  278. // return a;
  279. // };
  280. // });
  281. //}
  282. #endregion
  283. #region 质量
  284. int[] qua1 = new int[10]; int[] qua2 = new int[10]; int[] qua3 = new int[10];
  285. public void ShowQuality()
  286. {
  287. try
  288. {
  289. //string str = DateTime.Now.ToString("yyyy/MM/dd");
  290. DateTime dt = DateTime.Today;
  291. var list = repository.GetFirstDefault<Quality>(c => c.DateQuality == dt);
  292. if (list != null)
  293. {
  294. qua1[0] = list.Q1; qua1[1] = list.Q2; qua1[2] = list.Q3; qua1[3] = list.Q4; qua1[4] = list.Q5;
  295. qua1[5] = list.Q6; qua1[6] = list.Q7; qua1[7] = list.Q8; qua1[8] = list.Q9; qua1[9] = list.Q10;
  296. qua2[0] = list.Q11; qua2[1] = list.Q12; qua2[2] = list.Q13; qua2[3] = list.Q14; qua2[4] = list.Q15;
  297. qua2[5] = list.Q16; qua2[6] = list.Q17; qua2[7] = list.Q18; qua2[8] = list.Q19; qua2[9] = list.Q20;
  298. qua3[0] = list.Q21; qua3[1] = list.Q22; qua3[2] = list.Q23; qua3[3] = list.Q24; qua3[4] = list.Q25;
  299. qua3[5] = list.Q26; qua3[6] = list.Q27; qua3[7] = list.Q28; qua3[8] = list.Q29; qua3[9] = list.Q30;
  300. SerQuality1(qua1);
  301. SerQuality2(qua2);
  302. SerQuality3(qua3);
  303. }
  304. }
  305. catch (Exception)
  306. {
  307. }
  308. }
  309. #region 生产问题
  310. public void SerQuality1(int[] val)
  311. {
  312. SeriesQuality1[0].Values = val;
  313. }
  314. public ISeries[] SeriesQuality1 { get; set; } = new ISeries[]
  315. {
  316. new ColumnSeries<int>
  317. {
  318. Name = "数量",
  319. //Values = new[] {23, 27, 22, 29, 24 ,21,11,45,32,19},
  320. Stroke = null,
  321. DataLabelsPaint = new SolidColorPaint(new SKColor(180, 180, 180)),
  322. DataLabelsPosition = DataLabelsPosition.Top,
  323. Padding = 3,//每个条之间的距离
  324. //Fill = new LinearGradientPaint(
  325. // new [] { new SKColor(255, 140, 148), new SKColor(220, 237, 194) },
  326. // new SKPoint(0.5f, 0),
  327. // new SKPoint(0.5f, 1))
  328. Fill = new LinearGradientPaint(new[]{new SKColor(255, 140, 148), new SKColor(220, 237, 194) })
  329. }
  330. };
  331. public Axis[] XAxes1 { get; set; } =
  332. {
  333. new Axis
  334. {
  335. Labels = new string[] { "螺丝未上紧","3D人脸无效" ,"螺丝漏打" ,"显示屏幕漏光" ,"胶体未打好",
  336. "对讲喇叭无声","执手过于松紧" ,"螺丝打变形" ,"理线错乱" ,"弹簧未装好" },
  337. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  338. LabelsRotation = 90,
  339. TextSize = 12,
  340. ForceStepToMin = true,
  341. MinStep = 1
  342. }
  343. };
  344. public Axis[] YAxes1 { get; set; } =
  345. {
  346. new Axis
  347. {
  348. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  349. MinLimit=0,
  350. //最小步长
  351. //ForceStepToMin = true,
  352. //MinStep = 5
  353. }
  354. };
  355. #endregion
  356. #region 工艺问题
  357. public void SerQuality2(int[] val)
  358. {
  359. SeriesQuality2[0].Values = val;
  360. }
  361. public ISeries[] SeriesQuality2 { get; set; } = new ISeries[]
  362. {
  363. new ColumnSeries<int>
  364. {
  365. Name = "数量",
  366. //Values = new[] {23, 27, 22, 29, 24 ,21,11,45,32,19},
  367. Stroke = null,
  368. DataLabelsPaint = new SolidColorPaint(new SKColor(180, 180, 180)),
  369. DataLabelsPosition = DataLabelsPosition.Top,
  370. Padding = 3,//每个条之间的距离
  371. //Fill = new LinearGradientPaint(
  372. // new [] { new SKColor(255, 140, 148), new SKColor(220, 237, 194) },
  373. // new SKPoint(0.5f, 0),
  374. // new SKPoint(0.5f, 1))
  375. Fill = new LinearGradientPaint(new[]{new SKColor(255, 140, 148), new SKColor(220, 237, 194) })
  376. }
  377. };
  378. public Axis[] XAxes2 { get; set; } =
  379. {
  380. new Axis
  381. {
  382. Labels = new string[] {"对讲无声","执手问题" ,"壳体脚位不平衡" ,"前板锁芯两孔位不一致" ,"后板显示屏水印",
  383. "电池异常耗电","喷漆过厚导致组装困难" ,"设计线路太长" ,"执手靠垫片改善" ,"锁芯顶杆没固定位置"},
  384. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  385. LabelsRotation = 90,
  386. TextSize = 12,
  387. ForceStepToMin = true,
  388. MinStep = 1
  389. }
  390. };
  391. public Axis[] YAxes2 { get; set; } =
  392. {
  393. new Axis
  394. {
  395. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  396. MinLimit=0,
  397. //最小步长
  398. //ForceStepToMin = true,
  399. //MinStep = 5
  400. }
  401. };
  402. #endregion
  403. #region 物料问题
  404. public void SerQuality3(int[] val)
  405. {
  406. SeriesQuality3[0].Values = val;
  407. }
  408. public ISeries[] SeriesQuality3 { get; set; } = new ISeries[]
  409. {
  410. new ColumnSeries<int>
  411. {
  412. Name = "数量",
  413. //Values = new[] {23, 27, 22, 29, 24 ,21,11,45,32,19},
  414. Stroke = null,
  415. DataLabelsPaint = new SolidColorPaint(new SKColor(180, 180, 180)),
  416. DataLabelsPosition = DataLabelsPosition.Top,
  417. Padding = 3,//每个条之间的距离
  418. //Fill = new LinearGradientPaint(
  419. // new [] { new SKColor(255, 140, 148), new SKColor(220, 237, 194) },
  420. // new SKPoint(0.5f, 0),
  421. // new SKPoint(0.5f, 1))
  422. Fill = new LinearGradientPaint(new[]{new SKColor(255, 140, 148), new SKColor(220, 237, 194) })
  423. }
  424. };
  425. public Axis[] XAxes3 { get; set; } =
  426. {
  427. new Axis
  428. {
  429. Labels = new string[] {"面板变形","电机异常" ,"屏幕异常" ,"物料毛刺" ,"大屏上支架变形",
  430. "壳料划痕","显示屏水印" , "壳体脚位不平横" ,"装饰圈气泡脱皮" ,"电池异常"},
  431. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  432. LabelsRotation = 90,
  433. TextSize = 12,
  434. ForceStepToMin = true,
  435. MinStep = 1
  436. }
  437. };
  438. public Axis[] YAxes3 { get; set; } =
  439. {
  440. new Axis
  441. {
  442. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  443. MinLimit=0,
  444. //最小步长
  445. //ForceStepToMin = true,
  446. //MinStep = 5
  447. }
  448. };
  449. #endregion
  450. #endregion
  451. #region 人员管理
  452. //int nums;
  453. //private void ShowPeope(string opername)
  454. //{
  455. // var value = repository.GetAllQuery<Information>(c => c.OperatorCode == opername && c.CreateTime == DateTime.Today);
  456. // if (value.Count != 0)
  457. // {
  458. // nums = value.Count();
  459. // PerManagement(opername, nums);
  460. // }
  461. //}
  462. int[] nums = new int[30];
  463. private void ShowPeope(string[] opername)
  464. {
  465. PerManage = new List<Person>();
  466. PerManage1 = new List<Person>();
  467. for (int i = 0; i < opername.Length; i++)
  468. {
  469. if (opername[i] == null || string.IsNullOrEmpty(opername[i]))
  470. {
  471. continue;
  472. }
  473. var value = repository.GetAllQuery<Information>(c => c.OperatorCode == opername[i] && c.CreateTime == DateTime.Today);
  474. if (value.Count != 0)
  475. {
  476. nums[i] = value.Count();
  477. PerManagement(opername[i], nums[i]);
  478. }
  479. }
  480. }
  481. public List<Person> PerManage { get; set; }
  482. private List<Person> PerManage1 { get; set; }
  483. public void PerManagement(string ename, int yield)
  484. {
  485. //PerManage = new List<Person>();//放在外面就累加,放这里就不累加一直刷
  486. PerManage1.Add(new Person { Id = new Guid(), EmployeeName = ename, Yield = yield });
  487. var m = PerManage1.OrderByDescending(x => x.Yield).ToList();//降序
  488. PerManage = m;
  489. if (m.Count >= 3)
  490. {
  491. FirstName = PerManage[0].EmployeeName;
  492. SecondName = PerManage[1].EmployeeName;
  493. ThirdName = PerManage[2].EmployeeName;
  494. }
  495. }
  496. #endregion
  497. #region 仓库
  498. public void ShowHouse()
  499. {
  500. try
  501. {
  502. //var list = repository.GetAllQuery<House>(c => c.DateH == str);//查一个集合
  503. var list = repository.GetFirstDefault<House>(c => c.DateH == DateTime.Today);
  504. if (list != null)
  505. {
  506. var dto = _mapper.Map<HouseDto>(list);
  507. Application.Current.Dispatcher.Invoke(new Action(() =>
  508. {
  509. MyHouse.Clear();
  510. MyHouse.Add(dto);
  511. SerHouse(double.Parse(list.LackH), double.Parse(list.UsedH), double.Parse(list.TotalH));
  512. }));
  513. }
  514. }
  515. catch (Exception ex)
  516. {
  517. }
  518. }
  519. public IEnumerable<ISeries> Series13 { get; set; }
  520. public double GaugeTotal13 { get; set; }
  521. public double InitialRotation13 { get; set; }
  522. public double MaxAngle13 { get; set; }
  523. /// <summary>
  524. /// "缺料订单数","已领料订单数" ,"当日订单数"
  525. /// </summary>
  526. /// <param name="a">小</param>
  527. /// <param name="b">中</param>
  528. /// <param name="c">最大</param>
  529. public void SerHouse(double a, double b, double c)
  530. {
  531. GaugeTotal13 = c;//最大数
  532. InitialRotation13 = 90;
  533. MaxAngle13 = 270;
  534. void SetStyle13(string name, PieSeries<ObservableValue> series)
  535. {
  536. series.Name = name;
  537. series.DataLabelsPosition = PolarLabelsPosition.Start;
  538. series.DataLabelsFormatter =
  539. point => $"{point.Context.Series.Name} {point.Coordinate.PrimaryValue}";
  540. series.DataLabelsSize = 16;
  541. series.InnerRadius = 20;
  542. series.RelativeInnerRadius = 4;
  543. series.RelativeOuterRadius = 4;
  544. series.DataLabelsPaint = new SolidColorPaint(new SKColor(150, 150, 150));
  545. }
  546. Series13 = GaugeGenerator.BuildSolidGauge(
  547. new GaugeItem(a, series => SetStyle13("缺料订单数", series)),
  548. new GaugeItem(b, series => SetStyle13("已领料订单数", series)),
  549. new GaugeItem(c, series => SetStyle13("当日订单数", series)),
  550. new GaugeItem(GaugeItem.Background, series =>
  551. {
  552. series.InnerRadius = 20;
  553. series.RelativeInnerRadius = 10;
  554. series.RelativeOuterRadius = 10;
  555. }));
  556. }
  557. #endregion
  558. #region 设备状态
  559. public void AlarmOK()
  560. {
  561. ImgLight1 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  562. ImgLight2 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  563. ImgLight3 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  564. ImgLight4 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  565. ImgLight5 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  566. ImgLight6 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  567. ImgLight7 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  568. ImgLight8 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  569. ImgLight9 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  570. ImgLight10 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  571. ImgLight11 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  572. ImgLight12 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  573. ImgLight13 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  574. ImgLight14 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  575. ImgLight21 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  576. ImgLight22 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  577. ImgLight23 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  578. }
  579. private void GetAlarmMessage(Dictionary<string, string> dictionary)//dictionary 就是接收到的信息
  580. {
  581. var keys = new List<string>(dictionary.Keys);
  582. for (int i = 0; i < keys.Count; i++)
  583. {
  584. var key = keys[i];
  585. var value = dictionary[key];
  586. #region 号机
  587. //1号机
  588. if ((key == "1101" && value == "报警"))
  589. {
  590. ImgLight1 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  591. }
  592. if ((key == "1141.15" && value == "缺料"))
  593. {
  594. ImgLight1 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  595. }
  596. //2号机
  597. if ((key == "1102" && value == "报警"))
  598. {
  599. ImgLight2 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  600. }
  601. if ((key == "1142.15" && value == "缺料"))
  602. {
  603. ImgLight2 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  604. }
  605. //3号机
  606. if ((key == "1103" && value == "报警"))
  607. {
  608. ImgLight3 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  609. }
  610. if ((key == "1143.15" && value == "缺料"))
  611. {
  612. ImgLight3 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  613. }
  614. //4号机
  615. if ((key == "1104" && value == "报警"))
  616. {
  617. ImgLight4 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  618. }
  619. if ((key == "1144.15" && value == "缺料"))
  620. {
  621. ImgLight4 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  622. }
  623. //5号机
  624. if ((key == "1105" && value == "报警"))
  625. {
  626. ImgLight5 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  627. }
  628. if ((key == "1145.15" && value == "缺料"))
  629. {
  630. ImgLight5 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  631. }
  632. //6号机
  633. if ((key == "1106" && value == "报警"))
  634. {
  635. ImgLight6 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  636. }
  637. if ((key == "1146.15" && value == "缺料"))
  638. {
  639. ImgLight6 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  640. }
  641. //7号机
  642. if ((key == "1110" && value == "报警"))
  643. {
  644. ImgLight7 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  645. }
  646. if ((key == "1150.15" && value == "缺料"))
  647. {
  648. ImgLight7 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  649. }
  650. //8号机
  651. if ((key == "1111" && value == "报警"))
  652. {
  653. ImgLight8 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  654. }
  655. if ((key == "1151.15" && value == "缺料"))
  656. {
  657. ImgLight8 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  658. }
  659. //9号机
  660. if ((key == "1112" && value == "报警"))
  661. {
  662. ImgLight9 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  663. }
  664. if ((key == "1152.15" && value == "缺料"))
  665. {
  666. ImgLight9 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  667. }
  668. //10号机
  669. if ((key == "1113" && value == "报警"))
  670. {
  671. ImgLight10 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  672. }
  673. if ((key == "1153.15" && value == "缺料"))
  674. {
  675. ImgLight10 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  676. }
  677. //11号机
  678. if ((key == "1117" && value == "报警"))
  679. {
  680. ImgLight11 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  681. }
  682. if ((key == "1157.15" && value == "缺料"))
  683. {
  684. ImgLight11 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  685. }
  686. //12号机
  687. if ((key == "1118" && value == "报警"))
  688. {
  689. ImgLight12 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  690. }
  691. if ((key == "1158.15" && value == "缺料"))
  692. {
  693. ImgLight12 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  694. }
  695. //13号机
  696. if ((key == "1119" && value == "报警"))
  697. {
  698. ImgLight13 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  699. }
  700. if ((key == "1159.15" && value == "缺料"))
  701. {
  702. ImgLight13 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  703. }
  704. //14号机
  705. if ((key == "1120" && value == "报警"))
  706. {
  707. ImgLight14 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  708. }
  709. if ((key == "1160.15" && value == "缺料"))
  710. {
  711. ImgLight14 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  712. }
  713. #endregion
  714. #region 螺丝机
  715. //螺丝机1
  716. if ((key == "1107" && value == "报警"))
  717. {
  718. ImgLight15 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  719. }
  720. if ((key == "1107" && value == "正常"))
  721. {
  722. ImgLight15 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  723. }
  724. //螺丝机2
  725. if ((key == "1108" && value == "报警"))
  726. {
  727. ImgLight16 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  728. }
  729. if ((key == "1108" && value == "正常"))
  730. {
  731. ImgLight16 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  732. }
  733. //螺丝机3
  734. if ((key == "1115" && value == "报警"))
  735. {
  736. ImgLight17 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  737. }
  738. if ((key == "1115" && value == "正常"))
  739. {
  740. ImgLight17 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  741. }
  742. //螺丝机4
  743. if ((key == "1116" && value == "报警"))
  744. {
  745. ImgLight18 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  746. }
  747. if ((key == "1116" && value == "正常"))
  748. {
  749. ImgLight18 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  750. }
  751. //螺丝机5
  752. if ((key == "1121" && value == "报警"))
  753. {
  754. ImgLight19 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  755. }
  756. if ((key == "1121" && value == "正常"))
  757. {
  758. ImgLight19 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  759. }
  760. //螺丝机6
  761. if ((key == "1122" && value == "报警"))
  762. {
  763. ImgLight20 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  764. }
  765. if ((key == "1122" && value == "正常"))
  766. {
  767. ImgLight20 = System.Windows.Forms.Application.StartupPath + @"\image\绿灯.png";
  768. }
  769. #endregion
  770. //提升机
  771. if ((key == "1100" && value == "报警") || (key == "1124" && value == "报警") || (key == "D1125" && value == "报警"))
  772. {
  773. ImgLight21 = System.Windows.Forms.Application.StartupPath + @"\image\红灯.png";
  774. }
  775. //检测
  776. if ((key == "1166.0" && value == "缺料") || (key == "1166.1" && value == "缺料") || (key == "D1166.2" && value == "缺料") || (key == "D1166.3" && value == "缺料"))
  777. {
  778. ImgLight22 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  779. }
  780. //返修
  781. if ((key == "1166.4" && value == "缺料") || (key == "1166.5" && value == "缺料") || (key == "D1166.6" && value == "缺料"))
  782. {
  783. ImgLight23 = System.Windows.Forms.Application.StartupPath + @"\image\黄灯.png";
  784. }
  785. }
  786. }
  787. #endregion
  788. #region 生产进度
  789. double changeDay; double okrate;
  790. List<string> xlabel = new List<string>();
  791. List<double> listval1 = new List<double>();
  792. List<double> listval2 = new List<double>();
  793. public void ShowProcess()
  794. {
  795. try
  796. {
  797. listval1.Clear();
  798. listval2.Clear();
  799. xlabel.Clear();
  800. for (int i = 1; i < 20; i++)
  801. {
  802. changeDay = -i;
  803. var list = repository.GetFirstDefault<AllNumber>(c => c.DateA == DateTime.Today.AddDays(changeDay));
  804. if (list != null)
  805. {
  806. if (list.RealityA!=0)
  807. {
  808. listval1.Add(list.RealityA);
  809. okrate = Math.Round((list.OkA / list.RealityA) * 100, 2);
  810. listval2.Add(okrate);
  811. xlabel.Add(list.DateA.ToString("MM-dd"));
  812. if (listval1.Count >= 7)
  813. {
  814. break;
  815. }
  816. }
  817. }
  818. }
  819. SerLine(listval1, listval2, xlabel);
  820. }
  821. catch (Exception)
  822. {
  823. }
  824. }
  825. public void SerLine(List<double> val1, List<double> val2, List<string> list)
  826. {
  827. SeriesLine[0].Values = val1;
  828. SeriesLine[1].Values = val2;
  829. XAxesLine[0].Labels = list;
  830. }
  831. public ISeries[] SeriesLine { get; set; } =
  832. {
  833. new LineSeries<double>
  834. {
  835. Name = "产量",
  836. //Values = new []{ 4, 2, 8, 5, 3 },
  837. GeometrySize = 12,
  838. Stroke = new LinearGradientPaint(new[]{ new SKColor(100, 135, 15), new SKColor(255, 212, 96)}) { StrokeThickness = 5 },
  839. GeometryStroke = new LinearGradientPaint(new[]{ new SKColor(100, 135, 15), new SKColor(255, 212, 96)}) { StrokeThickness = 5 },
  840. Fill = null,
  841. ScalesYAt = 0
  842. //Fill = new SolidColorPaint(new SKColor(255, 212, 96, 90))
  843. },
  844. new LineSeries<double>
  845. {
  846. Name = "合格率(%)",
  847. GeometrySize = 12,
  848. Stroke = new LinearGradientPaint(new[]{ new SKColor(100, 62, 99), new SKColor(255, 137, 219) }) { StrokeThickness = 5 },
  849. GeometryStroke = new LinearGradientPaint(new[]{ new SKColor(100, 62, 99), new SKColor(255, 137, 219)}) { StrokeThickness = 5 },
  850. Fill = null,
  851. ScalesYAt = 1
  852. }
  853. };
  854. public LabelVisual PcTitle { get; set; } =
  855. new LabelVisual
  856. {
  857. Text = "近一周产量趋势",
  858. TextSize = 16,
  859. Padding = new LiveChartsCore.Drawing.Padding(15),
  860. Paint = new SolidColorPaint(new SKColor(47, 152, 255))
  861. };
  862. public DrawMarginFrame DrawMarginFrame => new()
  863. {
  864. Stroke = new SolidColorPaint(new SKColor(45, 64, 89), 2)
  865. };
  866. public Axis[] XAxesLine { get; set; } =
  867. {
  868. new Axis
  869. {
  870. //Labels = new string[] { "1","2" ,"3" ,"4" ,"5","6","7"},
  871. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  872. LabelsRotation = 0,
  873. ForceStepToMin = true,
  874. MinLimit=0,
  875. MinStep = 1
  876. }
  877. };
  878. public Axis[] YAxesLine { get; set; } =
  879. {
  880. new Axis
  881. {
  882. Name = "产量",
  883. NameTextSize = 14,
  884. NamePaint = new SolidColorPaint(new SKColor(153, 194, 40)),
  885. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  886. MinLimit=0,
  887. //最小步长
  888. //ForceStepToMin = true,
  889. //MinStep = 5
  890. },
  891. new Axis
  892. {
  893. Name = "合格率(%)",
  894. NameTextSize = 14,
  895. NamePaint = new SolidColorPaint(new SKColor(255, 137, 219)),
  896. LabelsPaint = new SolidColorPaint(new SKColor(100, 100, 100)),
  897. MinLimit=0,
  898. MaxLimit=150,
  899. Position = LiveChartsCore.Measure.AxisPosition.End
  900. }
  901. };
  902. #endregion
  903. #region 当前订单情况
  904. public void ShowOrder(string str)
  905. {
  906. var customRepo = new CustomRepository();
  907. try
  908. {
  909. //DateTime max = DateTime.Today.AddDays(1);
  910. //DateTime min = DateTime.Today.AddDays(-1);
  911. DateTime d = DateTime.Today;
  912. var list = customRepo.GetFirstDefault<ICMO>(c => c.FBillNo == str);
  913. if (list != null)
  914. {
  915. BillNo = str;
  916. AuxQty = (double)list.FAuxQty;
  917. }
  918. }
  919. catch (Exception ex)
  920. {
  921. }
  922. try
  923. {
  924. var ps = repository.GetFirstDefault<ProStatus>(c => c.DateS == DateTime.Today&&c.OrdNoS==str);
  925. if (ps != null)
  926. {
  927. Finished = ps.RealityS;
  928. }
  929. }
  930. catch (Exception)
  931. {
  932. }
  933. }
  934. #endregion
  935. #region 实时产量
  936. public void ShowNowProcess()
  937. {
  938. try
  939. {
  940. var allnumbers = repository.GetFirstDefault<AllNumber>(c => c.DateA == DateTime.Today);
  941. if (allnumbers != null)
  942. {
  943. TotalNum = allnumbers.RealityA;
  944. PassNum = allnumbers.OkA;
  945. }
  946. }
  947. catch (Exception)
  948. {
  949. }
  950. }
  951. #endregion
  952. }
  953. }