using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using BPASmartClient.Helper; using BPASmartClient.JXJFoodSmallStation.Model; using Microsoft.Toolkit.Mvvm.ComponentModel; using Microsoft.Toolkit.Mvvm.Input; using BPASmartClient.CustomResource.Pages.Model; namespace BPASmartClient.JXJFoodSmallStation.ViewModel { public class ChangeDeviceNameViewModel : ObservableObject { public ChangeDeviceNameViewModel() { ActionManage.GetInstance.Register(new Action((o) => { if (o != null && o is string str) IpAddress = str; }), "ChangeDeviceNameViewOpen"); CancleCommand = new RelayCommand(() => { ActionManage.GetInstance.Send("ChangeDeviceNameViewClose"); }); ConfirmCommand = new RelayCommand(() => { if (string.IsNullOrEmpty(DeviceName)) { ErrorInfo = "设备名称不能为空"; return; } int index = Array.FindIndex(DeviceInquire.GetInstance.devices.ToArray(), p => p.IpAddress == IpAddress); if (index >= 0 && index < DeviceInquire.GetInstance.devices.Count) { if (DeviceInquire.GetInstance.devices.FirstOrDefault(p => p.DeviceName == DeviceName) != null) ErrorInfo = "设备名称已存在"; else { var res = Global.DeviceRawMaterials.FirstOrDefault(p => p.RawMaterialName == DeviceInquire.GetInstance.devices.ElementAt(index).DeviceName); if (res != null) { res.RawMaterialName = DeviceName; DeviceInquire.GetInstance.devices.ElementAt(index).DeviceName = DeviceName; DeviceInquire.GetInstance.GetDevice(IpAddress).SetDeviceName(DeviceName);//设置PLC名称 for (int i = 0; i < Json.Data.Recipes.Count; i++) { for (int m = 0; m < Json.Data.Recipes.ElementAt(i).RawMaterials.Count; m++) { Json.Data.Recipes.ElementAt(i).RawMaterials.ElementAt(m).RawMaterialName = DeviceName; } } ActionManage.GetInstance.Send("ChangeDeviceNameViewClose"); } } } }); } private static string IpAddress = string.Empty; public RelayCommand ConfirmCommand { get; set; } public RelayCommand CancleCommand { get; set; } public string ErrorInfo { get { return _mErrorInfo; } set { _mErrorInfo = value; OnPropertyChanged(); } } private string _mErrorInfo; public string DeviceName { get { return _mDeviceName; } set { _mDeviceName = value; OnPropertyChanged(); } } private string _mDeviceName; } }