SigninDialog.xaml.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. using InitializerModel;
  2. using MesAdaptor;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Shapes;
  16. namespace AwInitilizer
  17. {
  18. /// <summary>
  19. /// Interaction logic for SigninDialog.xaml
  20. /// </summary>
  21. public partial class SigninDialog : Window
  22. {
  23. public string UserId { get; private set; } = "";
  24. public string WorkOrder { get; private set; } = "";
  25. public SigninDialog()
  26. {
  27. InitializeComponent();
  28. SetMes();
  29. var startResult = SajetConnect.SajetTransStart();
  30. }
  31. private async void OK_Pressed(object sender, RoutedEventArgs e)
  32. {
  33. if(string.IsNullOrEmpty(uxIdBox.Text))
  34. {
  35. uxErrmsg.Visibility = Visibility.Visible;
  36. return;
  37. }
  38. string id = uxIdBox.Text;
  39. string idBackup = id;
  40. if (CheckIsMesDisableAccount())
  41. {
  42. //SajetConnect.IsEmsEnabled = false;
  43. //SajetConnect.Instance = new SajectConnectTest();
  44. SajetConnect.SetMes("test");
  45. DialogResult = true;
  46. this.Close();
  47. return;
  48. }
  49. if (SajetConnect.SajetTransSignIn(ref id))
  50. {
  51. if (string.IsNullOrEmpty(id) || id.StartsWith("NG"))
  52. {
  53. uxErrmsg.Content = Resx.AppResources.SigninDialogEnterIDError;
  54. uxErrmsg.Visibility = Visibility.Visible;
  55. return;
  56. }
  57. UserId = idBackup;
  58. }
  59. else
  60. {
  61. if (id.StartsWith(idBackup))
  62. {
  63. //data not changed
  64. uxErrmsg.Content = Resx.AppResources.SigninDialogNoResponseError;// "ID Error";
  65. }
  66. else
  67. {
  68. uxErrmsg.Content = Resx.AppResources.SigninDialogEnterIDError;// "ID Error";
  69. }
  70. uxErrmsg.Visibility = Visibility.Visible;
  71. return;
  72. }
  73. if (!string.IsNullOrEmpty(uxWorkOrderBox.Text))
  74. {
  75. string workOrder = uxWorkOrderBox.Text;
  76. if (SajetConnect.SajetTransWoCheck(ref workOrder))
  77. {
  78. if (string.IsNullOrEmpty(workOrder) || workOrder.StartsWith("NG"))
  79. {
  80. uxErrmsg.Content = Resx.AppResources.SigninDialogEnterWOError;// "WorkOrder Error";
  81. uxErrmsg.Visibility = Visibility.Visible;
  82. return;
  83. }
  84. WorkOrder = workOrder;
  85. }
  86. else
  87. {
  88. uxErrmsg.Content = Resx.AppResources.SigninDialogEnterWOError;
  89. uxErrmsg.Visibility = Visibility.Visible;
  90. return;
  91. }
  92. }
  93. DialogResult = true;
  94. this.Close();
  95. return;
  96. }
  97. private bool CheckIsMesDisableAccount()
  98. {
  99. return uxIdBox.Text == "Admin" && uxWorkOrderBox.Text == "Admin21896826";
  100. }
  101. private void SetMes()
  102. {
  103. var mesSetting = AppSettingConfig.Instance.MES.ToLower();
  104. SajetConnect.SetMes(mesSetting, AppSettingConfig.Instance.MechineCode);
  105. //if (mesSetting == "php" || mesSetting == "shinewave")
  106. //{
  107. // SajetConnect.Instance = new SajetConnectShinewave();
  108. //}
  109. //else if (mesSetting == "phv" || mesSetting == "sajet")
  110. //{
  111. // SajetConnect.Instance = new SajectConnectSajet();
  112. //}
  113. //else if (mesSetting == "phv" || mesSetting == "sajet2")
  114. //{
  115. // SajetConnect.Instance = new SajectConnectSajet2(AppSettingConfig.MechineCode);
  116. //}
  117. }
  118. }
  119. }