using Admin.Core.Common; using Admin.Core.IService; using Admin.Core.Model; using Aucma.Scada.UI.Common; using Aucma.Scada.UI.Page.AssemblyPlan; using Aucma.Scada.UI.Page.InventoryInfo; using Aucma.Scada.UI; using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; using LiveCharts; using LiveCharts.Wpf; using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Windows; namespace Aucma.Scada.UI.ViewModel.AssemblyPlan { public partial class AssemblyPlanViewModel : ObservableObject { private AssemblyPlanBusiness assemblyPlanBusiness = new AssemblyPlanBusiness();// AssemblyPlanBusiness.Instance; private IExecutePlanInfoServices _executePlanInfoServices; private AppConfig appConfig = new AppConfig();//AppConfig.Instance; //private OutStoreBusiness outStoreBusiness = OutStoreBusiness.Instance; public AssemblyPlanViewModel() { _executePlanInfoServices = App.ServiceProvider.GetService(); //assemblyPlanBusiness.RefreshExecutePlanInfoEvent += RefreshDataGrid; //outStoreBusiness.RefreshAssemblyPlanInitEvent += RefreshPlanInfoDataGrid; Init(); } #region 参数定义 /// /// 工位名称 /// private string stationName = string.Empty; public string StationName { get => stationName; set => SetProperty(ref stationName, value); } /// /// 订单编号 /// private string orderCode = string.Empty; public string OrderCode { get => orderCode; set => SetProperty(ref orderCode, value); } /// /// 计划编号 /// private string planCode = string.Empty; public string PlanCode { get => planCode; set => SetProperty(ref planCode, value); } /// /// 产品型号 /// private string productModel = string.Empty; public string ProductModel { get => productModel; set => SetProperty(ref productModel, value); } /// /// 开始时间 /// private string beginTime = string.Empty; public string BeginTime { get => beginTime; set => SetProperty(ref beginTime, value); } /// /// 计划列表DataGrid /// private ObservableCollection planInfoDataGrid; public ObservableCollection PlanInfoDataGrid { get => planInfoDataGrid; set => SetProperty(ref planInfoDataGrid, value); } /// /// 日产量柱状图 /// private SeriesCollection achievement = new SeriesCollection(); public SeriesCollection Achievement { get { return achievement; } set { achievement = value; } } /// /// 型号统计柱状图 /// private SeriesCollection modelStatistics = new SeriesCollection(); public SeriesCollection ModelStatistics { get { return modelStatistics; } set { modelStatistics = value; } } /// /// 日产量柱状图X轴日期 /// private List productionHourList; public List ProductionHourList { get { return productionHourList; } set { productionHourList = value; } } /// /// 型号统计柱状图x轴物料类型 /// private List materialNameList; public List MaterialNameList { get { return materialNameList; } set { materialNameList = value; } } /// /// 计划数量 /// private int planAmount = 0; public int PlanAmount { get => planAmount; set => SetProperty(ref planAmount, value); } /// /// 完成数量 /// public int complateAmout; public int ComplateAmout { get => complateAmout; set => SetProperty(ref complateAmout, value); } /// /// 差异值 /// public int diffAmount; public int DiffAmount { get => diffAmount; set => SetProperty(ref diffAmount, value); } /// /// 完成率 /// public string compleRoution; public string CompleRoution { get => compleRoution; set => SetProperty(ref compleRoution, value); } #endregion #region 事件定义 /// /// 上移事件 /// public RelayCommand MoveUpCommand { get; set; } /// /// 下移事件 /// public RelayCommand MoveDownCommand { get; set; } /// /// 删除计划 /// public RelayCommand DeletePlanCommand { get; set; } /// /// 下传事件 /// public RelayCommand NextPassCommand { get; set; } public RelayCommand PlanInfoEditCommand { get; set; } public RelayCommand MaterialStatisticsCommand { get; set; } #endregion /// /// 计划上移 /// /// public void MoveUp(object obj) { string info = obj as string; assemblyPlanBusiness.ExecutePlanInfo_MoveUp(planInfoDataGrid.ToList(), info); } /// /// 计划下移 /// /// public void MoveDown(object obj) { string info = obj as string; assemblyPlanBusiness.ExecutePlanInfo_MoveDown(planInfoDataGrid.ToList(), info); } /// /// 删除计划 /// /// public async void DeletePlan(object obj) { string info = obj as string; bool result =await assemblyPlanBusiness.ExecutePlanInfo_Delete(info); if (result) { OrderCode = string.Empty; PlanCode = string.Empty; ProductModel = string.Empty; BeginTime = string.Empty; MessageBox.Show("执行计划删除成功", "提示", MessageBoxButton.OK, MessageBoxImage.Information, MessageBoxResult.OK, MessageBoxOptions.DefaultDesktopOnly); } else { MessageBox.Show("执行计划删除失败", "提示", MessageBoxButton.OK, MessageBoxImage.Error, MessageBoxResult.OK, MessageBoxOptions.DefaultDesktopOnly); } } /// /// 下传计划 /// /// public async void NextPass(object obj) { string info = obj as string; if (info == planCode) { MessageBox.Show("该计划正在执行中,请勿重复下传", "提示", MessageBoxButton.OK, MessageBoxImage.Error, MessageBoxResult.OK, MessageBoxOptions.DefaultDesktopOnly); } else { var result =await assemblyPlanBusiness.ExecutePlanInfo_NextPass(info, planCode); if (result != null) { RefreshPlanExecute(result); MessageBox.Show("执行计划已下达", "提示", MessageBoxButton.OK, MessageBoxImage.Information, MessageBoxResult.OK, MessageBoxOptions.DefaultDesktopOnly); } else { MessageBox.Show("执行计划下达失败", "提示", MessageBoxButton.OK, MessageBoxImage.Error, MessageBoxResult.OK, MessageBoxOptions.DefaultDesktopOnly); } } } public void RefreshDataGrid(List executePlanInfos) { PlanInfoDataGrid = new ObservableCollection(); if (executePlanInfos != null) { executePlanInfos.ForEach( arg => { PlanInfoDataGrid.Add(arg); }); } RefreshStatisticsGauge(executePlanInfos); } /// /// 出库完成刷新计划列表 /// private void RefreshPlanInfoDataGrid() { RefreshExecutePlan(); App.Current.Dispatcher.Invoke((Action)(() => { OrderCode = string.Empty; PlanCode = string.Empty; ProductModel = string.Empty; })); } /// /// 柱状体加载 /// public void Init() { RefreshExecutePlan(); } /// /// 计划维护 /// private void PlanInfoEdit() { PlanInfoEditWindow planInfoEditWindow = new PlanInfoEditWindow(); planInfoEditWindow.ShowDialog(); } private void MaterialStatistics() { MaterialStatisticsWindow materialStatisticsWindow = new MaterialStatisticsWindow(); materialStatisticsWindow.ShowDialog(); } /// /// 刷新计划执行 /// /// private void RefreshPlanExecute(ExecutePlanInfo planInfo) { StationName = appConfig.stationName; OrderCode = planInfo.OrderCode; PlanCode = planInfo.ExecutePlanCode; ProductModel = planInfo.MaterialName; DateTime dateTime = (DateTime)planInfo.BeginTime; BeginTime = dateTime.ToString("yyyy-MM-dd HH:mm:ss"); } /// /// 加载正在执行的计划 /// private async void RefreshExecutePlan() { var planInfos =await assemblyPlanBusiness.GetEexecutePlanInfosByProductLineCode(); if (planInfos != null) { //加载正在执行的计划 planInfos = planInfos.Where(x => x.ExecuteStatus == 2).ToList(); if (planInfos.Count > 0) { ExecutePlanInfo planInfo = planInfos.OrderBy(x => x.ExecuteOrder).First(); RefreshPlanExecute(planInfo); } } } /// /// 刷新统计图表 /// /// private void RefreshStatisticsGauge(List planInfos) { if (planInfos != null) { if (planInfos.Count > 0) { PlanAmount = planInfos.Sum(x => x.PlanAmount).ObjToInt(); ComplateAmout = planInfos.Sum(x => x.CompleteAmount).ObjToInt(); DiffAmount = planAmount - complateAmout; double completionRate = (double)ComplateAmout / PlanAmount * 100; // 计算完成率 CompleRoution = completionRate.ToString("0.0"); } else { PlanAmount = 0; ComplateAmout = 0; DiffAmount = 0; CompleRoution = string.Empty; } } RefreshMaterialStats(); RefreshHourAmount(); } /// /// 刷新物料型号统计 /// private void RefreshMaterialStats() { App.Current.Dispatcher.Invoke((Action)(async () => { //获取物料型号统计 List materialStats =await assemblyPlanBusiness.GetMaterialStats(); if (materialStats != null) { ModelStatistics.Clear(); MaterialNameList = new List(); ChartValues materialAchievement = new ChartValues(); foreach (var item in materialStats) { MaterialNameList.Add(item.MATERIAL_NAME); materialAchievement.Add(Convert.ToDouble(item.PRODUCT_AMOUNT)); } var materialColumn = new ColumnSeries(); materialColumn.DataLabels = true; materialColumn.Title = "型号"; materialColumn.Values = materialAchievement; ModelStatistics.Add(materialColumn); } })); } /// /// 刷新小时产量统计 /// private void RefreshHourAmount() { App.Current.Dispatcher.Invoke((Action)(async () => { //获取小时产量 List hourAmount =await assemblyPlanBusiness.GetHourAmount(); if (hourAmount != null) { Achievement.Clear(); ProductionHourList = new List(); ChartValues hourAchievement = new ChartValues(); foreach (var item in hourAmount) { ProductionHourList.Add(item.PRODUCT_HOUR); hourAchievement.Add(Convert.ToDouble(item.PRODUCT_AMOUNT)); } var houeColumn = new ColumnSeries(); houeColumn.DataLabels = true; houeColumn.Title = "小时产量"; houeColumn.Values = hourAchievement; Achievement.Add(houeColumn); } })); } } }