SrdRecipeViewModel.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. using Aitex.Core.RT.DataCenter;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.UI.Dialog;
  4. using Aitex.Core.UI.MVVM;
  5. using Aitex.Core.Utilities;
  6. using Caliburn.Micro.Core;
  7. using MECF.Framework.Common.DataCenter;
  8. using MECF.Framework.Common.RecipeCenter;
  9. using CyberX8_Core;
  10. using CyberX8_MainPages.PMs;
  11. using CyberX8_Themes.UserControls;
  12. using Prism.Mvvm;
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Collections.ObjectModel;
  16. using System.ComponentModel;
  17. using System.Linq;
  18. using System.Reflection;
  19. using System.Text;
  20. using System.Threading.Tasks;
  21. using System.Windows;
  22. using System.Windows.Input;
  23. namespace CyberX8_MainPages.ViewModels
  24. {
  25. public class SrdRecipeViewModel : BindableBase
  26. {
  27. #region 常量
  28. private const string ENGINEERING = "Engineering";
  29. private const string SRD = "srd";
  30. #endregion
  31. #region 内部变量
  32. /// <summary>
  33. /// Recipe节点字典
  34. /// </summary>
  35. private Dictionary<string, RecipeNode> _recipeNodeDic = new Dictionary<string, RecipeNode>();
  36. /// <summary>
  37. /// 属性检验结果字典
  38. /// </summary>
  39. private Dictionary<string, bool> _propertyValidResultDic = new Dictionary<string, bool>();
  40. /// <summary>
  41. /// Recipe节点集合
  42. /// </summary>
  43. private ObservableCollection<RecipeNode> _recipeNodes;
  44. /// <summary>
  45. /// uiRecipeManager
  46. /// </summary>
  47. private UiRecipeManager _uiRecipeManager = new UiRecipeManager();
  48. /// <summary>
  49. /// recipe
  50. /// </summary>
  51. private SrdRecipe _recipe;
  52. /// <summary>
  53. /// 编辑可用性
  54. /// </summary>
  55. private bool _editEnable;
  56. /// <summary>
  57. /// 创建可用性
  58. /// </summary>
  59. private bool _createEnable;
  60. /// <summary>
  61. /// 当前节点
  62. /// </summary>
  63. private RecipeNode _currentNode;
  64. /// <summary>
  65. /// 是否可用
  66. /// </summary>
  67. private bool _enable = false;
  68. /// <summary>
  69. /// 是否为编辑(true-Edit,false-add)
  70. /// </summary>
  71. private bool _isEdit = false;
  72. #endregion
  73. #region 属性
  74. public ObservableCollection<RecipeNode> RecipeNodes
  75. {
  76. get { return _recipeNodes; }
  77. set { SetProperty(ref _recipeNodes, value); }
  78. }
  79. /// <summary>
  80. /// Recipe
  81. /// </summary>
  82. public SrdRecipe Recipe
  83. {
  84. get { return _recipe; }
  85. set { SetProperty(ref _recipe, value); }
  86. }
  87. /// <summary>
  88. /// 创建可用性
  89. /// </summary>
  90. public bool CreateEnable
  91. {
  92. get { return _createEnable; }
  93. set { SetProperty(ref _createEnable, value);}
  94. }
  95. /// <summary>
  96. /// 编辑可用性
  97. /// </summary>
  98. public bool EditEnable
  99. {
  100. get { return _editEnable; }
  101. set { SetProperty(ref _editEnable, value);}
  102. }
  103. /// <summary>
  104. /// 当前节点
  105. /// </summary>
  106. public RecipeNode CurrentNode
  107. {
  108. get { return _currentNode; }
  109. set { SetProperty(ref _currentNode, value);}
  110. }
  111. /// <summary>
  112. /// 可用性
  113. /// </summary>
  114. public bool Enable
  115. {
  116. get { return _enable; }
  117. set { SetProperty(ref _enable, value); }
  118. }
  119. /// <summary>
  120. /// 属性数据检验结果
  121. /// </summary>
  122. public Dictionary<string, bool> PropertyValidResultDic
  123. {
  124. get { return _propertyValidResultDic; }
  125. set { SetProperty(ref _propertyValidResultDic, value); }
  126. }
  127. #endregion
  128. #region 指令
  129. [IgnorePropertyChange]
  130. public ICommand OperationCommand
  131. {
  132. get;
  133. private set;
  134. }
  135. [IgnorePropertyChange]
  136. public ICommand CreateCommand { get; private set; }
  137. [IgnorePropertyChange]
  138. public ICommand EditCommand { get; private set; }
  139. [IgnorePropertyChange]
  140. public ICommand SaveRecipeCommand { get; private set; }
  141. [IgnorePropertyChange]
  142. public ICommand SaveAsRecipeCommand { get; private set; }
  143. #endregion
  144. /// <summary>
  145. /// 构造函数
  146. /// </summary>
  147. public SrdRecipeViewModel()
  148. {
  149. OperationCommand = new DelegateCommand<object>(SelectionChangedAction);
  150. CreateCommand = new DelegateCommand<object>(CreateAction);
  151. EditCommand = new DelegateCommand<object>(EditAction);
  152. SaveRecipeCommand = new DelegateCommand<object>(SaveAction);
  153. InitializeProprtyValidResultDictionary();
  154. }
  155. /// <summary>
  156. /// 初始化属性数据检验结果字典
  157. /// </summary>
  158. private void InitializeProprtyValidResultDictionary()
  159. {
  160. //PropertyValidResultDic["FrontDivertTime"] = false;
  161. //PropertyValidResultDic["FrontPoolTime"] = false;
  162. //PropertyValidResultDic["MaxDivertPlusPoolPressure"] = false;
  163. //PropertyValidResultDic["DivertPlusPoolDelay"] = false;
  164. PropertyValidResultDic["RinseSpeed"] = false;
  165. PropertyValidResultDic["RinseTime"] = false;
  166. //PropertyValidResultDic["FrontRinseTime"] = false;
  167. //PropertyValidResultDic["BackRinseTime"] = false;
  168. //PropertyValidResultDic["MaxWashPressure"] = false;
  169. PropertyValidResultDic["FlowCheckDelay"] = false;
  170. PropertyValidResultDic["DrySpeed"] = false;
  171. PropertyValidResultDic["DryTime"] = false;
  172. //PropertyValidResultDic["PreN2DryTime"] = false;
  173. //PropertyValidResultDic["BackN2DryTime"] = false;
  174. //PropertyValidResultDic["PostN2DryTime"] = false;
  175. //PropertyValidResultDic["ExhaustFanDelay"] = false;
  176. PropertyValidResultDic["MinWaterPressure"] = false;
  177. PropertyValidResultDic["MaxWaterPressure"] = false;
  178. PropertyValidResultDic["MinSRDWaterFlow"] = false;
  179. PropertyValidResultDic["MaxSRDWaterFlow"] = false;
  180. }
  181. /// <summary>
  182. /// 加载数据
  183. /// </summary>
  184. public void LoadRecipeData()
  185. {
  186. RecipeNodes = _uiRecipeManager.GetRecipesByType(SRD);
  187. _recipeNodeDic.Clear();
  188. InitializeDictionary(RecipeNodes);
  189. }
  190. /// <summary>
  191. /// 初始化字典
  192. /// </summary>
  193. /// <param name="nodes"></param>
  194. private void InitializeDictionary(ObservableCollection<RecipeNode> nodes)
  195. {
  196. if (nodes != null)
  197. {
  198. foreach (var node in nodes)
  199. {
  200. if (node.NodeType == RecipeNodeType.File)
  201. {
  202. _recipeNodeDic[node.Name] = node;
  203. }
  204. InitializeDictionary(node.Children);
  205. }
  206. }
  207. }
  208. /// <summary>
  209. /// 操作
  210. /// </summary>
  211. /// <param name="param"></param>
  212. private void SelectionChangedAction(object param)
  213. {
  214. if(_recipeNodeDic.ContainsKey(param.ToString()))
  215. {
  216. CurrentNode = _recipeNodeDic[param.ToString()];
  217. if(CurrentNode.NodeType==RecipeNodeType.File)
  218. {
  219. if (CurrentNode.RecipeLocation == ENGINEERING)
  220. {
  221. EditEnable = true;
  222. CreateEnable = true;
  223. }
  224. else
  225. {
  226. EditEnable= false;
  227. CreateEnable = false;
  228. }
  229. }
  230. Recipe = _uiRecipeManager.LoadRecipe<SrdRecipe>(CurrentNode.RecipeFullFileName);
  231. if(Recipe==null)
  232. {
  233. MessageBox.Show("Invalid Recipe", "Load Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
  234. EditEnable = false;
  235. CreateEnable = false;
  236. }
  237. Enable = false;
  238. }
  239. else
  240. {
  241. if(param.ToString()==ENGINEERING)
  242. {
  243. CreateEnable= true;
  244. }
  245. else
  246. {
  247. CreateEnable = false;
  248. }
  249. CurrentNode = null;
  250. Recipe = null;
  251. EditEnable = false;
  252. Enable = false;
  253. }
  254. }
  255. #region Action
  256. /// <summary>
  257. /// 创建
  258. /// </summary>
  259. /// <param name="param"></param>
  260. private void CreateAction(object param)
  261. {
  262. RecipeNameDialog recipeNameDialog = new RecipeNameDialog();
  263. if (recipeNameDialog.ShowDialog().Value)
  264. {
  265. if (!CheckNameExist(recipeNameDialog.RecipeName))
  266. {
  267. Recipe = new SrdRecipe();
  268. Recipe.CreateDate = DateTime.Now;
  269. Recipe.Ppid = recipeNameDialog.RecipeName;
  270. Recipe.Description = recipeNameDialog.RecipeDescription;
  271. Enable = true;
  272. _isEdit = false;
  273. }
  274. }
  275. }
  276. /// <summary>
  277. /// 编辑
  278. /// </summary>
  279. /// <param name="param"></param>
  280. private void EditAction(object param)
  281. {
  282. Enable = true;
  283. _isEdit= false;
  284. }
  285. /// <summary>
  286. /// 保存
  287. /// </summary>
  288. /// <param name="param"></param>
  289. private void SaveAction(object param)
  290. {
  291. if (CheckValid(_isEdit))
  292. {
  293. Recipe.SaveDate = DateTime.Now;
  294. try
  295. {
  296. _uiRecipeManager.SaveRecipe<SrdRecipe>(ENGINEERING, Recipe.Ppid,SRD, Recipe);
  297. LoadRecipeData();
  298. MessageBox.Show("Save Recipe Success", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Information);
  299. Enable = false;
  300. }
  301. catch (Exception ex)
  302. {
  303. MessageBox.Show(ex.Message, "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
  304. }
  305. }
  306. }
  307. /// <summary>
  308. /// 检验合法性
  309. /// </summary>
  310. /// <param name="editType"></param>
  311. /// <returns></returns>
  312. private bool CheckValid(bool editType)
  313. {
  314. foreach(string key in _propertyValidResultDic.Keys)
  315. {
  316. bool valid = _propertyValidResultDic[key];
  317. if(!valid)
  318. {
  319. MessageBox.Show($"{key} data invalid", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
  320. return false;
  321. }
  322. }
  323. return true;
  324. }
  325. /// <summary>
  326. /// 检验名称是否已经存在
  327. /// </summary>
  328. /// <param name="name"></param>
  329. /// <returns></returns>
  330. private bool CheckNameExist(string name)
  331. {
  332. foreach (string item in _recipeNodeDic.Keys)
  333. {
  334. if (item == name)
  335. {
  336. MessageBox.Show($"{name} is exsit", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
  337. return true;
  338. }
  339. }
  340. return false;
  341. }
  342. #endregion
  343. }
  344. }