change-新线老线成品下线、条码绑定按照班组统计数据

main
liuwf 11 months ago
parent 7e3915290a
commit 987a5cf8a1

@ -2566,6 +2566,16 @@
MES/SN绑定数据:1,区分集存库及条码绑定位置数据
</summary>
</member>
<member name="P:Admin.Core.Model.CodeBindingRecord.LoginTeam">
<summary>
MES/SN绑定数据:1,区分集存库及条码绑定位置数据
</summary>
</member>
<member name="P:Admin.Core.Model.CodeBindingRecord.ProductLineCode">
<summary>
MES/SN绑定数据:1,区分集存库及条码绑定位置数据
</summary>
</member>
<member name="T:Admin.Core.Model.CurrentTeamTime">
<summary>
存储当班班组

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Common
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Common\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Common\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.EventBus
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.EventBus\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.EventBus\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Extensions
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Extensions\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Extensions\

@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Admin.Core.FrameWork
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.FrameWork\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.FrameWork\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.IRepository
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.IRepository\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.IRepository\

@ -11,11 +11,12 @@ namespace Admin.Core.IService
/// </summary>
public interface ICodeBindingRecordServices : IBaseServices<CodeBindingRecord>
{
/// <summary>
/// 查询图表信息,扫描产品类型统计
/// 根据产线、班组查询图表信息,扫描产品类型统计
/// 传入参数productLine产线,teamName班组名称
/// </summary>
public Task<List<CodeBindCharts>> QueryCharts();
public List<CodeBindingRecord> QueryCharts(string productLine, string teamName);
/// <summary>
/// 查询第一条数据

@ -14,10 +14,14 @@ namespace Admin.Core.IService
public interface IOffLineInfoServices : IBaseServices<OffLineInfo>
{
/// <summary>
/// 图表统计,按白夜班时间
/// 图表统计,根据登录班组
/// -- 如果是白班,查询当天白班数据
/// -- 如果是夜班并且当前时间大于12:00统计当天12:00以后的夜班数据
/// -- 否则为第二天凌晨统计前一天12:00以后的夜班数据
/// 传入参数productLine产线,teamName班组名称
/// </summary>
public Task<List<ChartsByTime>> QueryCharts(DateTime startTime, DateTime endTime);
public List<OffLineInfo> getTeamOffData(string productLine, string teamName);
public List<dynamic> QueryCharts1(string stationCode);
}
}

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.IService
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.IService\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.IService\

@ -61,6 +61,16 @@ namespace Admin.Core.Model
/// </summary>
[SugarColumn(ColumnName = "POSITION2")]
public int Position2 { get; set; }
/// <summary>
/// MES/SN绑定数据:1,区分集存库及条码绑定位置数据
/// </summary>
[SugarColumn(ColumnName = "LOGIN_TEAM")]
public string LoginTeam { get; set; }
/// <summary>
/// MES/SN绑定数据:1,区分集存库及条码绑定位置数据
/// </summary>
[SugarColumn(ColumnName = "PRODUCT_LINE_CODE")]
public string ProductLineCode { get; set; }
}
}

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Model
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Model\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Model\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.RealTimeService
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.RealTimeService\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.RealTimeService\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Repository
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Repository\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Repository\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Serilog.Es
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Serilog.Es\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Serilog.Es\

@ -29,17 +29,18 @@ namespace Admin.Core.Service
_codeBindingRecordRepository = codeBindingRecordRepository;
}
/// <summary>
/// 查询图表信息,扫描产品类型统计
/// 根据产线、班组查询图表信息,扫描产品类型统计
/// 传入参数productLine产线,teamName班组名称
/// </summary>
public async Task<List<CodeBindCharts>> QueryCharts()
public List<CodeBindingRecord> QueryCharts(string productLine, string teamName)
{
try
{
List<CodeBindCharts> list = null;
List<CodeBindingRecord> list = null;
var _db = this.BaseDal.Db;
list = await _db.CopyNew().Ado.SqlQueryAsync<CodeBindCharts>("SELECT BOX_NAME as BoxName, COUNT(*) as Amount FROM CODE_BINDING WHERE PRODUCT_CODE IS NOT NULL and POSITION2=1 AND TRUNC(RECORD_TIME2) = TRUNC(SYSDATE) GROUP BY BOX_NAME");
list = _db.CopyNew().Ado.SqlQuery<CodeBindingRecord>($"SELECT * FROM DATA_CODE_BINDING_VIEW WHERE LOGIN_TEAM='{teamName}' and PRODUCT_LINE_CODE='{productLine}'");
list.OrderBy(x =>x.BoxName);
return list;
}

@ -19,18 +19,21 @@ namespace Admin.Core.Service
base.BaseDal = dal;
}
/// <summary>
/// 图表统计,按白夜班时间
/// 图表统计,根据登录班组
/// -- 如果是白班,查询当天白班数据
/// -- 如果是夜班并且当前时间大于12:00统计当天12:00以后的夜班数据
/// -- 否则为第二天凌晨统计前一天12:00以后的夜班数据
/// 传入参数productLine产线,teamName班组名称
/// </summary>
public async Task<List<ChartsByTime>> QueryCharts(DateTime startTime, DateTime endTime)
public List<OffLineInfo> getTeamOffData(string productLine, string teamName)
{
try
{
List<ChartsByTime> list = null;
List<OffLineInfo> list = null;
var _db = this.BaseDal.Db;
list = await _db.Ado.SqlQueryAsync<ChartsByTime>("SELECT * FROM GET_OFFLINE_HOURAMOUNT");
list = _db.CopyNew().Ado.SqlQuery<OffLineInfo>($"SELECT * FROM DATA_OFFLINE_VIEW WHERE LOGIN_TEAM='{teamName}' and PRODUCT_LINE_CODE='{productLine}'");
return list;
}
catch (Exception)
@ -40,25 +43,9 @@ namespace Admin.Core.Service
}
/// <summary>
/// 图表统计,按白夜班时间
/// </summary>
public List<dynamic> QueryCharts1(string stationCode)
{
List<dynamic> result = null;
try
{
var _db = this.BaseDal.Db;
result = _db.Queryable<dynamic>().AS("GET_OFFLINE_HOURAMOUNT").Where("PRODUCTLINE_CODE = @stationCode", new { stationCode = stationCode }).ToList();
}
catch (Exception ex)
{
}
return result;
}
}
}

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Service
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Service\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Service\

@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Admin.Core.Tasks
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.Tasks\
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\Aucma\Admin.Core.Tasks\

@ -59,11 +59,10 @@ namespace Aucma.Core.BoxFoam.ViewModels
{
while (true)
{
Thread.Sleep(3000);
App.Current.Dispatcher.BeginInvoke((Action)(() =>
{
InitEveryDayMethod();
}));
Thread.Sleep(5000);
InitEveryDayMethod();
}
});
}
@ -88,11 +87,8 @@ namespace Aucma.Core.BoxFoam.ViewModels
{
xList.Add(time.hourTime);
}
//if (ProductionHourList != null && ProductionHourList.Count > 0)
//{
// ProductionHourList.Clear();
//}
ProductionHourList = xList;
ProductionHourList = xList;
// 货道列表
List<BoxFoamData> list = _boxFoamDataServices.QueryAsync(x => x.ProductLineCode.Equals("CX_02") && x.StationCode == "1005").Result;

@ -41,6 +41,7 @@ using LiveCharts.Defaults;
using Admin.Core.Socket;
using System.Runtime.ConstrainedExecution;
using Aucma.Core.BoxFoam.Config;
using Elasticsearch.Net;
/*
*
*/
@ -96,15 +97,16 @@ namespace Aucma.Core.CodeBinding.ViewModels
// Business.MvCodeHelper.NoReadEvent += ReceiveNoRead;
TouchSocketService.ReceiveCodeDelegateEvent += ReceiveCode;
TouchSocketService.NoReadReceiveEvent += ReceiveNoRead;
GunBusiness.BindingReceiveCodeEvent += BindingCode;
GunBusiness.BindingReceiveCodeEvent += BindingCode;
LoginPageViewModel.RefreshChartsEvent += RefreshCharts;
MsgUIColor = "White";
LoadData();
//刷新页面
RefreshCharts();
//实时绑定条码和实时下发plc放行信号
realBindingAndSendPlc();
LoadCharts();
}
@ -114,6 +116,18 @@ namespace Aucma.Core.CodeBinding.ViewModels
}
}
public async void RefreshCharts()
{
await Task.Run(() =>
{
List<CodeBindingRecord> list = LoadData();
if (list != null)
{
LoadCharts(list);
}
});
}
/// <summary>
/// 实时绑定条码和实时下发plc放行信号
@ -213,7 +227,7 @@ namespace Aucma.Core.CodeBinding.ViewModels
#region 加载DataGrid数据
private async void LoadData()
private List<CodeBindingRecord> LoadData()
{
try
{
@ -221,7 +235,8 @@ namespace Aucma.Core.CodeBinding.ViewModels
// LoadCharts();
List<CodeBindingRecord> records = null;
records = _codeBindingRecordServices.QueryAsync(x => x.Position2==1 && x.BoxCode != null && x.RecordTime2 >= DateTime.Today && x.RecordTime2 < DateTime.Today.AddDays(1)).Result;
records = _codeBindingRecordServices.QueryCharts(appConfig.ProductlineCode,appConfig.TeamName);
// records = _codeBindingRecordServices.QueryAsync(x => x.Position2==1 && x.BoxCode != null && x.RecordTime2 >= DateTime.Today && x.RecordTime2 < DateTime.Today.AddDays(1)).Result;
if (records != null && records.Count > 0)
{
@ -242,31 +257,52 @@ namespace Aucma.Core.CodeBinding.ViewModels
IsPass = record.IsPass==1?"自动":"手动",
RecordTime = record.RecordTime2.ToString()
});
}
});
}else if(records.Count==0)
{
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Clear();
});
}
return records;
}
catch (Exception)
{
return null;
}
}
// 修改为统计近一天白班或夜班
private async void LoadCharts()
private void LoadCharts(List<CodeBindingRecord> list)
{
try
{
List<CodeBindCharts> list = _codeBindingRecordServices.QueryCharts().Result;
if (list == null || list.Count == 0) return;
// List<CodeBindCharts> list = _codeBindingRecordServices.QueryCharts().Result;
if (list.Count == 0)
{
App.Current.Dispatcher.Invoke(() =>
{
ProductionHourList.Clear();
ModelStatistics.Clear();
});
return;
}
var result = from m in list
group m by GetSubstringBetweenCommas(m.BoxName) into g
select new CodeBindCharts()
{
BoxName = g.Key,
Amount = g.Sum(m => m.Amount)
Amount = g.Count()
};
// var result = list.GroupBy(x => x.ProductScanTime.Hour) // 按照小时进行分组
//.Select(g => new
//{
// Hour = g.Key.ToString(), // 小时
// Count = g.Count() // 统计每个小时的个数
//}).ToList();
App.Current.Dispatcher.Invoke(() =>
{
@ -691,6 +727,8 @@ namespace Aucma.Core.CodeBinding.ViewModels
record.IsPass = flag;
record.Position2 = 1;
record.BindingResult = "成功";
record.ProductLineCode = appConfig.ProductlineCode;
record.LoginTeam = appConfig.TeamName;
bool result = false;
if (Repeatflag == 0)
{ // 没有记录,新加
@ -722,8 +760,7 @@ namespace Aucma.Core.CodeBinding.ViewModels
SendPlcPass();
//刷新页面
LoadData();
LoadCharts();
RefreshCharts();
}
else
{

@ -17,6 +17,7 @@ using NPOI.Util.Collections;
using Aucma.Core.CodeBinding.Config;
using Aucma.Core.CodeBinding.Models;
using Aucma.Core.CodeBinding.Views;
using Elasticsearch.Net;
namespace Aucma.Core.CodeBinding.ViewModels
{
@ -25,6 +26,15 @@ namespace Aucma.Core.CodeBinding.ViewModels
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(LoginPageViewModel));
protected readonly IBaseTeamMembersServices _baseTeamMembersServices;
private AppConfig appConfig = AppConfig.Instance;
/// <summary>
/// 图表刷新
/// </summary>
public delegate void RefreshCharts();
public static event RefreshCharts? RefreshChartsEvent;
public LoginPageViewModel() {
_baseTeamMembersServices = App.ServiceProvider.GetService<IBaseTeamMembersServices>();
AddTeamData();
@ -69,7 +79,7 @@ namespace Aucma.Core.CodeBinding.ViewModels
window.Hide();
MainWindow indexPage = MainWindow.Instance;
indexPage.Show();
RefreshChartsEvent.Invoke();
// window.Close();
}
else

@ -857,7 +857,7 @@ namespace Aucma.Core.ProductOffLine.Business
}
else
{
// 郑总提出,订单号去0第一位是1为正常订单3为返工订单返工单可以直接放行
//订单号去0第一位是1为正常订单3为返工订单返工单可以直接放行
if (orderType == 3 || TempOffLineInfo.ProductOrderNo.Substring(0,1)=="3")
{
log.Info(TempOffLineInfo.ProductSNCode + "返工单条码重复上传,可以再次放行");

@ -39,6 +39,8 @@ using Admin.Core.Model.ViewModels;
using ChartsByTime = Admin.Core.Model.ViewModels.ChartsByTime;
using LiveCharts.Defaults;
using System.Windows.Documents;
using Aucma.Core.ProductOffLine.Config;
using Org.BouncyCastle.Asn1.X509;
/*
@ -54,11 +56,11 @@ namespace Aucma.Core.ProductOffLine.ViewModels
// 成品下线操作mes数据
private readonly IOffLineInfoServices? _offLineInfoServices = App.ServiceProvider.GetService<IOffLineInfoServices>();
private AppConfig appConfig = AppConfig.Instance;
// System.Timers.Timer timer = new System.Timers.Timer(500);//界面刷新定时器
private readonly IBaseBomInfoServices? _baseBomInfoServices;
private OffLineBusiness offLineBusiness = OffLineBusiness.Instance;
public List<WorkTime> listTime;
// public List<WorkTime> listTime;
public IndexPageViewModel()
{
@ -73,12 +75,13 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{
OffLineBusiness.RefreshScanMateriaCodeEvent += ModelToPage;
OffLineBusiness.RefreshChartsEvent += RefreshCharts;
LoginPageViewModel.RefreshChartsEvent += RefreshCharts;
MainWindowViewModel.RefreshFirstPageChartsEvent += RefreshCharts;
OffLineQty = "0";
// listTime = _baseBomInfoServices.getWorkTime().Result;
RefreshCharts();
listTime = _baseBomInfoServices.getWorkTime().Result;
});
}
@ -88,8 +91,8 @@ namespace Aucma.Core.ProductOffLine.ViewModels
/// </summary>
public void RefreshCharts()
{
listTime = _baseBomInfoServices.getWorkTime().Result;
if (listTime == null) return ;
// listTime = _baseBomInfoServices.getWorkTime().Result;
// if (listTime == null) return ;
List<OffLineInfo> list = LoadData();
// Console.WriteLine("刷新台数:"+list.Count);
InitEveryDayMethod(list);
@ -332,9 +335,19 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{
try
{
if (list == null) return;
// 当日下线记录
List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime && x.ProductLineCode == "CX_02").Result;
// y轴
if (list == null || list.Count <= 0)
{
Application.Current.Dispatcher.Invoke(() =>
{
ProductionHourList.Clear();
Achievement.Clear();
return;
});
}
// List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime && x.ProductLineCode == "CX_02").Result;
Application.Current.Dispatcher.Invoke(() =>
{
@ -342,41 +355,38 @@ namespace Aucma.Core.ProductOffLine.ViewModels
Achievement.Clear();
#region 小时产量统计
//listTime = _baseBomInfoServices.getWorkTime().Result;
//if (listTime == null) return;
// List<string> xList = new List<string>();
foreach (WorkTime workTime in listTime)
{
// xList.Add(workTime.startTime.Hour.ToString());
ProductionHourList.Add(workTime.startTime.Hour.ToString());
}
// ProductionHourList = xList;
// y轴
if (list == null || list.Count <= 0) return;
var result = list.GroupBy(x => x.ProductScanTime.Hour) // 按照小时进行分组
.Select(g => new
{
Hour = g.Key.ToString(), // 小时
Count = g.Count() // 统计每个小时的个数
}).ToList();
.Select(g => new
{
Hour = g.Key.ToString(), // 小时
Count = g.Count() // 统计每个小时的个数
}).ToList();
ChartValues<ObservablePoint> achievement2 = new ChartValues<ObservablePoint>();
int i = 0;
foreach (string item in ProductionHourList)
foreach (var workTime in result)
{
var target = result.Where(x => x.Hour == item).FirstOrDefault();
if (target != null)
{
achievement2.Add(new ObservablePoint(i, target.Count));
}
else
{
achievement2.Add(new ObservablePoint(i, 0));
}
i++;
ProductionHourList.Add($"{workTime.Hour}:00");
achievement2.Add(new ObservablePoint(i++, workTime.Count));
}
//foreach (string item in result)
//{
// var target = result.Where(x => x.Hour == item).FirstOrDefault();
// if (target != null)
// {
// achievement2.Add(new ObservablePoint(i, target.Count));
// }
// else
// {
// achievement2.Add(new ObservablePoint(i, 0));
// }
// i++;
//}
var column2 = new ColumnSeries();
column2.DataLabels = true;
@ -392,7 +402,7 @@ namespace Aucma.Core.ProductOffLine.ViewModels
var column = new ColumnSeries();
MaterialNameList.Clear();
// List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime).Result;
var modelList = offList.GroupBy(x => x.ProductModel);
var modelList = list.GroupBy(x => x.ProductModel);
foreach (var item in modelList)
{
@ -579,12 +589,23 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{
// List<WorkTime> listTime = _baseBomInfoServices.getWorkTime().Result;
List<OffLineInfo> list = _offLineInfoServices.Query(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].endTime && x.ProductLineCode == "CX_02");
// 当日下线记录
List<OffLineInfo> list = _offLineInfoServices.getTeamOffData(appConfig.ProductlineCode, appConfig.TeamName);
// List<OffLineInfo> list = _offLineInfoServices.Query(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].endTime && x.ProductLineCode == "CX_02");
if (list == null || list.Count == 0)
{
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Clear();
OffLineQty = "0";
});
return null;
}
OffLineQty = list.Count.ToString();
if (list == null || list.Count <= 0) return null;
list = list.OrderBy(x => x.ProductScanTime).ToList();
// OffLineInfo record = _offLineInfoServices.FirstAsync().Result;

@ -27,7 +27,15 @@ namespace Aucma.Core.ProductOffLine.ViewModels
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(LoginPageViewModel));
protected readonly IBaseTeamMembersServices _baseTeamMembersServices;
private AppConfig appConfig = AppConfig.Instance;
/// <summary>
/// 图表刷新
/// </summary>
public delegate void RefreshCharts();
public static event RefreshCharts? RefreshChartsEvent;
public LoginPageViewModel() {
_baseTeamMembersServices = App.ServiceProvider.GetService<IBaseTeamMembersServices>();
AddTeamData();
@ -71,9 +79,12 @@ namespace Aucma.Core.ProductOffLine.ViewModels
if (window == null) return;
window.Hide();
MainWindow mainPage = MainWindow.Instance;
mainPage.Show();
// 统计图表刷新
RefreshChartsEvent?.Invoke();
// window.Close();
}
else

@ -39,6 +39,7 @@ using Admin.Core.Model.ViewModels;
using ChartsByTime = Admin.Core.Model.ViewModels.ChartsByTime;
using LiveCharts.Defaults;
using System.Windows.Documents;
using Aucma.Core.ProductOffLineCX1.Config;
/*
@ -54,11 +55,11 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
// 成品下线操作mes数据
private readonly IOffLineInfoServices? _offLineInfoServices = App.ServiceProvider.GetService<IOffLineInfoServices>();
private AppConfig appConfig = AppConfig.Instance;
// System.Timers.Timer timer = new System.Timers.Timer(500);//界面刷新定时器
private readonly IBaseBomInfoServices? _baseBomInfoServices;
private OffLineBusiness offLineBusiness = OffLineBusiness.Instance;
public List<WorkTime> listTime;
// public List<WorkTime> listTime;
public IndexPageViewModel()
{
@ -67,8 +68,10 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
OffLineBusiness.RefreshScanMateriaCodeEvent += ModelToPage;
OffLineBusiness.RefreshChartsEvent += RefreshCharts;
MainWindowViewModel.RefreshFirstPageChartsEvent += RefreshCharts;
LoginPageViewModel.RefreshChartsEvent += RefreshCharts;
MainWindowViewModel.RefreshFirstPageChartsEvent += RefreshCharts;
OffLineQty = "0";
InitializeAsync();
}
@ -77,10 +80,10 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
{
await Task.Run(() =>
{
RefreshCharts();
RefreshCharts();
listTime = _baseBomInfoServices.getWorkTime().Result;
// listTime = _baseBomInfoServices.getWorkTime().Result;
});
@ -92,8 +95,8 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
/// </summary>
public void RefreshCharts()
{
listTime = _baseBomInfoServices.getWorkTime().Result;
if (listTime == null) return ;
// listTime = _baseBomInfoServices.getWorkTime().Result;
// if (listTime == null) return ;
List<OffLineInfo> list = LoadData();
// Console.WriteLine("刷新台数:"+list.Count);
@ -337,9 +340,19 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
{
try
{
if (list == null) return;
// 当日下线记录
List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime && x.ProductLineCode == "CX_01").Result;
// y轴
if (list == null || list.Count <= 0)
{
Application.Current.Dispatcher.Invoke(() =>
{
ProductionHourList.Clear();
Achievement.Clear();
return;
});
}
// List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime && x.ProductLineCode == "CX_02").Result;
Application.Current.Dispatcher.Invoke(() =>
{
@ -347,43 +360,39 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
Achievement.Clear();
#region 小时产量统计
//if (listTime == null)
//{
// listTime = _baseBomInfoServices.getWorkTime().Result;
// if (listTime == null) return;
//}
// List<string> xList = new List<string>();
foreach (WorkTime workTime in listTime)
{
// xList.Add(workTime.startTime.Hour.ToString());
ProductionHourList.Add(workTime.startTime.Hour.ToString());
}
// ProductionHourList = xList;
// y轴
if (list == null || list.Count <= 0) return;
var result = list.GroupBy(x => x.ProductScanTime.Hour) // 按照小时进行分组
.Select(g => new
{
Hour = g.Key.ToString(), // 小时
Count = g.Count() // 统计每个小时的个数
}).ToList();
.Select(g => new
{
Hour = g.Key.ToString(), // 小时
Count = g.Count() // 统计每个小时的个数
}).ToList();
ChartValues<ObservablePoint> achievement2 = new ChartValues<ObservablePoint>();
int i = 0;
foreach (string item in ProductionHourList)
foreach (var workTime in result)
{
var target = result.Where(x => x.Hour == item).FirstOrDefault();
if (target != null)
{
achievement2.Add(new ObservablePoint(i, target.Count));
}
else
{
achievement2.Add(new ObservablePoint(i, 0));
}
i++;
ProductionHourList.Add($"{workTime.Hour}:00");
achievement2.Add(new ObservablePoint(i++, workTime.Count));
}
//foreach (string item in result)
//{
// var target = result.Where(x => x.Hour == item).FirstOrDefault();
// if (target != null)
// {
// achievement2.Add(new ObservablePoint(i, target.Count));
// }
// else
// {
// achievement2.Add(new ObservablePoint(i, 0));
// }
// i++;
//}
var column2 = new ColumnSeries();
column2.DataLabels = true;
column2.Title = "产量";
@ -393,12 +402,12 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
#endregion
#region 型号统计
// List<string> nameList = new List<string>();
// List<string> nameList = new List<string>();
ChartValues<int> achievement = new ChartValues<int>();
var column = new ColumnSeries();
MaterialNameList.Clear();
// List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime).Result;
var modelList = offList.GroupBy(x => x.ProductModel);
var modelList = list.GroupBy(x => x.ProductModel);
foreach (var item in modelList)
{
@ -412,8 +421,8 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
column.Foreground = Brushes.White;
// x轴
// MaterialNameList = null;
// MaterialNameList = nameList;
// MaterialNameList = null;
// MaterialNameList = nameList;
// y轴
//if (ModelStatistics.Count > 0)
//{
@ -585,14 +594,23 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
{
// List<WorkTime> listTime = _baseBomInfoServices.getWorkTime().Result;
List<OffLineInfo> list = _offLineInfoServices.Query(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].endTime && x.ProductLineCode == "CX_01");
// 当日下线记录
List<OffLineInfo> list = _offLineInfoServices.getTeamOffData(appConfig.ProductlineCode, appConfig.TeamName);
// List<OffLineInfo> list = _offLineInfoServices.Query(x => x.ProductScanTime >= listTime[0].startTime && x.ProductScanTime <= listTime[11].endTime && x.ProductLineCode == "CX_02");
if (list == null || list.Count == 0)
{
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Clear();
OffLineQty = "0";
});
return null;
}
OffLineQty = list.Count.ToString();
if (list == null || list.Count <= 0) return null;
list = list.OrderBy(x => x.ProductScanTime).ToList();
// OffLineInfo record = _offLineInfoServices.FirstAsync().Result;
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Clear();

@ -27,7 +27,15 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(LoginPageViewModel));
protected readonly IBaseTeamMembersServices _baseTeamMembersServices;
private AppConfig appConfig = AppConfig.Instance;
/// <summary>
/// 图表刷新
/// </summary>
public delegate void RefreshCharts();
public static event RefreshCharts? RefreshChartsEvent;
public LoginPageViewModel() {
_baseTeamMembersServices = App.ServiceProvider.GetService<IBaseTeamMembersServices>();
AddTeamData();
@ -73,8 +81,10 @@ namespace Aucma.Core.ProductOffLineCX1.ViewModels
window.Hide();
MainWindow mainPage = MainWindow.Instance;
mainPage.Show();
// window.Close();
// 统计图表刷新
RefreshChartsEvent?.Invoke();
// window.Close();
}
else
{

Loading…
Cancel
Save