| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 | using Aitex.Core.RT.Log;using Aitex.Core.UI.Dialog;using Aitex.Core.UI.MVVM;using Aitex.Core.Utilities;using Caliburn.Micro.Core;using PunkHPX8_Core;using PunkHPX8_MainPages.PMs;using PunkHPX8_Themes.UserControls;using MECF.Framework.Common.DataCenter;using MECF.Framework.Common.RecipeCenter;using MECF.Framework.Common.Utilities;using Prism.Mvvm;using System;using System.Collections.Generic;using System.Collections.ObjectModel;using System.ComponentModel;using System.Linq;using System.Reflection;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Documents;using System.Windows.Input;namespace PunkHPX8_MainPages.ViewModels{    public class ResRecipeViewModel: BindableBase    {        private const string ENGINEERING = "Engineering";        #region 内部变量        private Dictionary<string, RecipeNode> _recipeNodeDic = new Dictionary<string, RecipeNode>();        private ObservableCollection<RecipeNode> _recipeNodes;        private UiRecipeManager _uiRecipeManager = new UiRecipeManager();        private Dictionary<string, bool> _propertyValidResultDic = new Dictionary<string, bool>();        private ResRecipe _recipe;        private bool _editEnable;        private bool _createEnable;        private RecipeNode _currentNode;        private bool _enable = false;        private bool _isEdit = false;        /// <summary>        /// 化学液集合        /// </summary>        private List<string> _chemistryLst = new List<string>();        #endregion        #region 属性        /// <summary>        /// Recipe Nodes        /// </summary>        public ObservableCollection<RecipeNode> RecipeNodes        {            get { return _recipeNodes; }            set { SetProperty(ref _recipeNodes, value); }        }        /// <summary>        /// PropertyValidResultDic        /// </summary>        public Dictionary<string, bool> PropertyValidResultDic        {            get { return _propertyValidResultDic; }            set { SetProperty(ref _propertyValidResultDic, value); }        }        /// <summary>        /// 当前Recipe节点        /// </summary>        public RecipeNode CurrentNode        {            get { return _currentNode; }            set { SetProperty(ref _currentNode, value); }        }        public bool Enable        {            get { return _enable; }            set { SetProperty(ref _enable, value); }        }        public bool EditEnable        {            get { return _editEnable; }            set { SetProperty(ref _editEnable, value); }        }        public bool CreateEnable        {            get { return _createEnable; }            set { SetProperty(ref _createEnable, value); }        }        public ResRecipe Recipe        {            get { return _recipe; }            set { SetProperty(ref _recipe, value); }        }        /// <summary>        /// 化学液集合        /// </summary>        public List<string> ChemistryLst        {            get { return _chemistryLst; }            set { SetProperty(ref _chemistryLst, value); }        }        #endregion        #region 指令        public ICommand OperationCommand        {            get;            private set;        }        #endregion        [IgnorePropertyChange]        public ICommand CreateCommand { get; private set; }        [IgnorePropertyChange]        public ICommand EditCommand { get; private set; }        [IgnorePropertyChange]        public ICommand SaveRecipeCommand { get; private set; }        [IgnorePropertyChange]        public ICommand SaveAsRecipeCommand { get; private set; }        [IgnorePropertyChange]        public ICommand DIReplenEnableTrueCommand { get; private set; }        [IgnorePropertyChange]        public ICommand DIReplenEnableFalseCommand { get; private set; }        [IgnorePropertyChange]        public ICommand ANDIReplenEnableTrueCommand { get; private set; }        [IgnorePropertyChange]        public ICommand ANDIReplenEnableFalseCommand { get; private set; }        [IgnorePropertyChange]        public ICommand TimeBasedTrueCommand { get; private set; }        [IgnorePropertyChange]        public ICommand TimeBasedFalseCommand { get; private set; }        [IgnorePropertyChange]        public ICommand CurrentBasedTrueCommand { get; private set; }        [IgnorePropertyChange]        public ICommand CurrentBasedFalseCommand { get; private set; }        public ResRecipeViewModel()        {            OperationCommand = new DelegateCommand<object>(SelectionChangedAction);            CreateCommand = new DelegateCommand<object>(CreateAction);            EditCommand = new DelegateCommand<object>(EditAction);            SaveRecipeCommand = new DelegateCommand<object>(SaveAction);            SaveAsRecipeCommand = new DelegateCommand<object>(SaveAsAction);            DIReplenEnableTrueCommand = new DelegateCommand<object>(EnableTrueAction);            DIReplenEnableFalseCommand = new DelegateCommand<object>(EnableFalseAction);            ANDIReplenEnableTrueCommand = new DelegateCommand<object>(ANEnableTrueAction);            ANDIReplenEnableFalseCommand = new DelegateCommand<object>(ANEnableFalseAction);            TimeBasedTrueCommand = new DelegateCommand<object>(TimeBasedTrueAction);            TimeBasedFalseCommand = new DelegateCommand<object>(TimeBasedFalseAction);            CurrentBasedTrueCommand = new DelegateCommand<object>(CurrentBasedTrueAction);            CurrentBasedFalseCommand = new DelegateCommand<object>(CurrentBasedFalseAction);            InitializeProprtyValidResultDictionary();            string chemistryContent = QueryDataClient.Instance.Service.GetConfig($"System.ChemistryList").ToString();            if (!string.IsNullOrEmpty(chemistryContent))            {                ChemistryLst = chemistryContent.Split(',').ToList();            }        }        private void InitializeProprtyValidResultDictionary()        {            PropertyValidResultDic["DIReplenTimeRate"] = false;            PropertyValidResultDic["DIReplenCurrentRate"] = false;            PropertyValidResultDic["PHErrorLow"] = false;            PropertyValidResultDic["PHErrorHigh"] = false;            PropertyValidResultDic["CALevelErrorHigh"] = false;            PropertyValidResultDic["CALevelErrorLow"] = false;            PropertyValidResultDic["ReservoirCALevel"] = false;            PropertyValidResultDic["CAFlowSetPoint"] = false;            PropertyValidResultDic["CAFlowRateWarningLow"] = false;            PropertyValidResultDic["CAFlowRateErrorLow"] = false;            PropertyValidResultDic["TemperatureErrorHigh"] = false;            PropertyValidResultDic["TemperatureErrorLow"] = false;            PropertyValidResultDic["TemperatureSetPoint"] = false;            PropertyValidResultDic["TemperatureWarningHigh"] = false;            PropertyValidResultDic["TemperatureWarningLow"] = false;            PropertyValidResultDic["ANDIReplenCurrentRate"] = false;            PropertyValidResultDic["ANDIReplenTimeRate"] = false;            PropertyValidResultDic["ANFlowRateErrorLow"] = false;            PropertyValidResultDic["ANFlowRateWarningLow"] = false;            PropertyValidResultDic["ANFlowSetPoint"] = false;            PropertyValidResultDic["ANLevelErrorHigh"] = false;            PropertyValidResultDic["ANLevelErrorLow"] = false;            PropertyValidResultDic["ANLevelWarningLow"] = false;            PropertyValidResultDic["ReservoirANLevel"] = false;            PropertyValidResultDic["BurnInTime"] = false;            PropertyValidResultDic["BurnInCurrent"] = false;            PropertyValidResultDic["BurnInCycles"] = false;            PropertyValidResultDic["BurnInMinCurrentLimit"] = false;            PropertyValidResultDic["CMMCurrentSetPoint"] = false;            PropertyValidResultDic["CMMCurrentFaultPercent"] = false;            PropertyValidResultDic["CMMCurrentWarningPercent"] = false;            PropertyValidResultDic["CMMMinVoltage"] = false;        }        public void LoadRecipeData()        {            RecipeNodes = _uiRecipeManager.GetRecipesByType("res");            _recipeNodeDic.Clear();            InitializeDictionary(RecipeNodes);        }        private void InitializeDictionary(ObservableCollection<RecipeNode> nodes)        {            if (nodes != null)            {                foreach (var node in nodes)                {                    if (node.NodeType == RecipeNodeType.File)                    {                        _recipeNodeDic[node.Name] = node;                    }                    InitializeDictionary(node.Children);                }            }        }        private void SelectionChangedAction(object param)        {            if (_recipeNodeDic.ContainsKey(param.ToString()))            {                CurrentNode = _recipeNodeDic[param.ToString()];                if (CurrentNode.NodeType == RecipeNodeType.File)                {                    if (CurrentNode.RecipeLocation == ENGINEERING)                    {                        EditEnable = true;                        CreateEnable = true;                    }                    else                    {                        EditEnable = false;                        CreateEnable = false;                    }                }                Recipe = _uiRecipeManager.LoadRecipe<ResRecipe>(CurrentNode.RecipeFullFileName);                if (Recipe == null)                {                    MessageBox.Show("Invalid Recipe", "Load Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                    EditEnable = false;                    CreateEnable = false;                }                Enable = false;            }            else            {                if (param.ToString() == ENGINEERING)                {                    CreateEnable = true;                }                else                {                    CreateEnable = false;                }                CurrentNode = null;                Recipe = null;                EditEnable = false;                Enable = false;            }        }        private void CreateAction(object param)        {            RecipeNameDialog recipeNameDialog = new RecipeNameDialog();            if (recipeNameDialog.ShowDialog().Value)            {                if (!CheckNameExist(recipeNameDialog.RecipeName))                {                    Recipe = new ResRecipe();                    Recipe.CreateDate = DateTime.Now;                    Recipe.Ppid = recipeNameDialog.RecipeName;                    Recipe.Description = recipeNameDialog.RecipeDescription;                    Enable = true;                    _isEdit = false;                }            }        }        private void EditAction(object param)        {            Enable = true;            _isEdit = false;        }        private void SaveAction(object param)        {            if (CheckValid(_isEdit))            {                Recipe.SaveDate = DateTime.Now;                try                {                    _uiRecipeManager.SaveRecipe<ResRecipe>(ENGINEERING, Recipe.Ppid,"res", Recipe);                    LoadRecipeData();                    MessageBox.Show("Save Recipe Success", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Information);                    Enable = false;                }                catch (Exception ex)                {                    MessageBox.Show(ex.Message, "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                }            }        }        /// <summary>        /// 另存为        /// </summary>        /// <param name="param"></param>        private void SaveAsAction(object param)        {            if (Recipe == null)            {                MessageBox.Show("Select a Recipe first", "SaveAs Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                return;            }            ResRecipe recipe = new ResRecipe();            if (CheckValid(_isEdit))            {                RecipeNameDialog recipeNameDialog = new RecipeNameDialog();                if (recipeNameDialog.ShowDialog().Value)                {                    if (!CheckNameExist(recipeNameDialog.RecipeName))                    {                        recipe = new ResRecipe();                        //recipe.IdleTime = Recipe.IdleTime;                        //recipe.Charge = Recipe.Charge;                        //recipe.Cycles = Recipe.Cycles;                        //recipe.StartTime = Recipe.StartTime;                        //recipe.ChemistryVendor = Recipe.ChemistryVendor;                        //recipe.Metal = Recipe.Metal;                        //recipe.DIReplenEnable = Recipe.DIReplenEnable;                        //recipe.DIReplenTimeRate = Recipe.DIReplenTimeRate;                        //recipe.DIReplenCurrentRate = Recipe.DIReplenCurrentRate;                        //recipe.PHErrorLow = Recipe.PHErrorLow;                        //recipe.PHErrorHigh = Recipe.PHErrorHigh;                        //recipe.CALevelErrorHigh = Recipe.CALevelErrorHigh;                        //recipe.CALevelErrorLow = Recipe.CALevelErrorLow;                        //recipe.ReservoirCALevel = Recipe.ReservoirCALevel;                        //recipe.CAFlowSetPoint = Recipe.CAFlowSetPoint;                        //recipe.CAFlowRateWarningLow = Recipe.CAFlowRateWarningLow;                        //recipe.CAFlowRateErrorLow = Recipe.CAFlowRateErrorLow;                        //recipe.IdleFlowEnable = Recipe.IdleFlowEnable;                        //recipe.TemperatureErrorHigh = Recipe.TemperatureErrorHigh;                        //recipe.TemperatureErrorLow = Recipe.TemperatureErrorLow;                        //recipe.TemperatureSetPoint = Recipe.TemperatureSetPoint;                        //recipe.TemperatureWarningHigh = Recipe.TemperatureWarningHigh;                        //recipe.TemperatureWarningLow = Recipe.TemperatureWarningLow;                        //recipe.ANDIReplenEnable = Recipe.ANDIReplenEnable;                        //recipe.ANDIReplenCurrentRate = Recipe.ANDIReplenCurrentRate;                        //recipe.ANDIReplenTimeRate = Recipe.ANDIReplenTimeRate;                        //recipe.ANFlowRateErrorLow = Recipe.ANFlowRateErrorLow;                        //recipe.ANFlowRateWarningLow = Recipe.ANFlowRateWarningLow;                        //recipe.ANFlowSetPoint = Recipe.ANFlowSetPoint;                        //recipe.ANLevelErrorHigh = Recipe.ANLevelErrorHigh;                        //recipe.ANLevelErrorLow = Recipe.ANLevelErrorLow;                        //recipe.ANLevelWarningLow = Recipe.ANLevelWarningLow;                        //recipe.ReservoirANLevel = Recipe.ReservoirANLevel;                        //recipe.CrossDoseCurrentRate = Recipe.CrossDoseCurrentRate;                        //recipe.CrossDoseTimeRate = Recipe.CrossDoseTimeRate;                        //recipe.CurrentBased = Recipe.CurrentBased;                        //recipe.TimeBased = Recipe.TimeBased;                        //recipe.BurnInEnable = Recipe.BurnInEnable;                        //recipe.BurnInTime = Recipe.BurnInTime;                        //recipe.BurnInCurrent = Recipe.BurnInCurrent;                        //recipe.BurnInCycles = Recipe.BurnInCycles;                        //recipe.BurnInCurrentLimitEnable = Recipe.BurnInCurrentLimitEnable;                        //recipe.BurnInMinCurrentLimit = Recipe.BurnInMinCurrentLimit;                        //recipe.CMMEnable = Recipe.CMMEnable;                        //recipe.CMMCurrentSetPoint = Recipe.CMMCurrentSetPoint;                        //recipe.CMMCurrentFaultPercent = Recipe.CMMCurrentFaultPercent;                        //recipe.CMMCurrentWarningPercent = Recipe.CMMCurrentWarningPercent;                        //recipe.CMMMinVoltage = Recipe.CMMMinVoltage;                        //recipe.BurnInStartTime = Recipe.BurnInStartTime; //值类型,不影响Recipe                        recipe = (ResRecipe)PropertyUtil.Clone(Recipe);                        recipe.CreateDate = DateTime.Now;                        recipe.Ppid = recipeNameDialog.RecipeName;                        recipe.Description = recipeNameDialog.RecipeDescription;                    }                    else if (recipeNameDialog.RecipeName != null)                    {                        MessageBox.Show("Name can not be Null", "Create Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                        return;                    }                    else                    {                        return;                    }                }                try                {                    _uiRecipeManager.SaveRecipe<ResRecipe>(ENGINEERING, recipe.Ppid, "res", recipe);                    LoadRecipeData();                    MessageBox.Show("Save As Recipe Success", "SaveAs Recipe", MessageBoxButton.OK, MessageBoxImage.Information);                    Enable = false;                }                catch (Exception ex)                {                    MessageBox.Show(ex.Message, "Save As Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                }            }        }        private void EnableTrueAction(object param)        {            Recipe.DIReplenEnable = true;        }        private void EnableFalseAction(object param)        {            Recipe.DIReplenEnable = false;        }        private void ANEnableTrueAction(object param)        {            Recipe.ANDIReplenEnable = true;        }        private void ANEnableFalseAction(object param)        {            Recipe.ANDIReplenEnable = false;        }        private bool CheckValid(bool editType)        {            foreach (string key in _propertyValidResultDic.Keys)            {                //在DIReplenEnable时跳过检验项                if(Recipe.ANDIReplenEnable == false)                {                    bool result = false;                    switch (key)                    {                         case "ANLevelErrorHigh":                            result = true; break;                        case "ANLevelErrorLow":                            result = true; break;                        case "ANLevelWarningLow":                            result = true; break;                        case "ReservoirANLevel":                            result = true; break;                        case "ANDIReplenTimeRate":                            result = true; break;                        case "ANDIReplenCurrentRate":                            result = true; break;                    }                    if (result)                    {                        continue;                    }                  }                //在ReplenEnable时跳过检验项                if (Recipe.DIReplenEnable == false)                {                    bool result = false;                    switch (key)                    {                        case "CALevelErrorHigh":                            result = true; break;                        case "CALevelErrorLow":                            result = true; break;                        case "ReservoirCALevel":                            result = true; break;                        case "DIReplenTimeRate":                            result = true; break;                        case "DIReplenCurrentRate":                            result = true; break;                    }                    if (result)                    {                        continue;                    }                }                bool valid = _propertyValidResultDic[key];                if (!valid)                {                    MessageBox.Show($"{key} data invalid", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                    return false;                }            }            return true;        }        private bool CheckNameExist(string name)        {            foreach (string item in _recipeNodeDic.Keys)            {                if (item == name)                {                    MessageBox.Show($"{name} is exsit", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);                    return true;                }            }            return false;        }        private void CurrentBasedTrueAction(object param)        {            //基于时间和基于电流只能二选一            Recipe.CurrentBased = true;            if (Recipe.TimeBased)            {                Recipe.TimeBased = false;            }        }        private void CurrentBasedFalseAction(object param)        {            Recipe.CurrentBased = false;        }        private void TimeBasedTrueAction(object param)        {            Recipe.TimeBased = true;            //基于时间和基于电流只能二选一            if (Recipe.CurrentBased)            {                Recipe.CurrentBased = false;            }        }        private void TimeBasedFalseAction(object param)        {            Recipe.TimeBased = false;        }    }}
 |