dev
liulb@mesnac.com 1 year ago
commit c561bdd6d6

@ -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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.Common\
build_property.ProjectDir = C:\Users\admin\Desktop\new\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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.EventBus\
build_property.ProjectDir = C:\Users\admin\Desktop\new\Admin.Core.EventBus\

@ -3,6 +3,7 @@ using Aucma.Core.RunPlc;
using log4net;
using Microsoft.AspNetCore.Builder;
using System;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Extensions
@ -20,12 +21,26 @@ namespace Admin.Core.Extensions
{
if (Appsettings.app("Middleware", "Plc", "Enabled").ObjToBool())
{
//计算程序运行时间
System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();
StringBuilder sb = new StringBuilder();
stopwatch.Start(); // 开始监视代码
///////////////////////////////////////操作代码/////////////////////////////////////////////////////
await plc.StartMelsecMcSeverAsync();
await plc.StartSiemensSever();
await plc.StartMelsecPlcAsync();
await plc.StartSiemensPlcAsync();
////////////////////////////////////////////////////////////////////////////////////////////////////
stopwatch.Stop(); // 停止监视
TimeSpan timeSpan = stopwatch.Elapsed; // 获取总时间
double hours = timeSpan.TotalHours; // 小时
double minutes = timeSpan.TotalMinutes; // 分钟
double seconds = timeSpan.TotalSeconds; // 秒数
double milliseconds = timeSpan.TotalMilliseconds; // 毫秒数
Console.WriteLine("PLC 任务启动成功");
Console.WriteLine($"秒数:{seconds},毫秒数:{milliseconds}");
}
}
catch (Exception e)

@ -0,0 +1,20 @@
using Admin.Core.Model;
using Admin.Core.Model.Model_New;
using Admin.Core.Model.ViewModels;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Admin.Core.IRepository
{
/// <summary>
/// 质检记录
/// </summary>
public interface IReportQualityInspectionRepository : IBaseRepository<ReportQualityInsPection>
{
}
}

@ -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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.IRepository\
build_property.ProjectDir = C:\Users\admin\Desktop\new\Admin.Core.IRepository\

@ -0,0 +1,21 @@
using Admin.Core.Model;
using Admin.Core.Model.ViewModels;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Admin.Core.IService
{
/// <summary>
/// 质检记录
/// </summary>
public interface IReportQualityInspectionServices : IBaseServices<ReportQualityInsPection>
{
/// <summary>
/// 判断是否有不合格质检项
/// </summary>
/// <returns></returns>
List<ReportQualityInsPection> JudgeIsQualified(string barCode);
}
}

@ -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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.IService\
build_property.ProjectDir = C:\Users\admin\Desktop\new\Admin.Core.IService\

@ -87,7 +87,9 @@ namespace Admin.Core.Model
/// </summary>
[SugarColumn(ColumnName = "MATERIAL_TYPE")]
public string MaterialType { get; set; }
/// <summary>
/// 夹具箱型
/// </summary>
[SugarColumn(ColumnName ="BOXTYPE")]
public string BoxType { get; set; }
@ -146,5 +148,20 @@ namespace Admin.Core.Model
[SugarColumn(ColumnName = "TYPE_NAME_C")]
public string typeNameC { get; set; }
/// <summary>
///分垛使用字段,箱体入库旋转角度(90,180,270)
/// </summary>
[SugarColumn(ColumnName = "ROTATION_RANGE")]
public int RotationRange { get; set; }
/// <summary>
/// 分垛使用字段,是否大产品占两个货道1-是0-否
/// </summary>
[SugarColumn(ColumnName = "IS_TWO_SPACE")]
public int IsTwoSpace { get; set; }
/// <summary>
/// 分垛使用字段,记录同型号上次入的货道如FD01_002 == >记录上次货道ObjId
/// </summary>
[SugarColumn(ColumnName = "LAST_SPACE")]
public string LastSpace { get; set; }
}
}

@ -0,0 +1,117 @@
using NPOI.SS.Formula.Functions;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model
{
/// <summary>
/// 质检记录
/// </summary>
[SugarTable("REPORT_QUALITY_INSPECTION", "AUCMA_MES")]
public class ReportQualityInsPection
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true, OracleSequenceName = "SEQ_REPORT_QUALITY_INSPECTION")]
public int ObjId { get; set; }
/// <summary>
/// 箱体条码
/// </summary>
[SugarColumn(ColumnName = "BAR_CODE")]
public string BarCode { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[SugarColumn(ColumnName = "MATERIAL_NAME")]
public string MaterialName { get; set; }
/// <summary>
/// 工序编号
/// </summary>
[SugarColumn(ColumnName = "PROCESS_CODE")]
public string ProcessCode { get; set; }
/// <summary>
/// 检测项(工位)编号
/// </summary>
[SugarColumn(ColumnName = "TEST_ITEM_CODE")]
public string TestItemCode { get; set; }
/// <summary>
/// 质量缺陷编码
/// </summary>
[SugarColumn(ColumnName = "QUALITY_DEFECT_CODE")]
public string QualityDefectCode { get; set; }
/// <summary>
/// 质量缺陷名称
/// </summary>
[SugarColumn(ColumnName = "QUALITY_DEFECT_NAME")]
public string QualityDefectName { get; set; }
/// <summary>
/// 质检处理措施3=合格,1=返修)
/// </summary>
[SugarColumn(ColumnName = "TREATMENT_MEASURE")]
public string TreatmentMeasure { get; set; }
/// <summary>
/// 返修处理结果
/// </summary>
[SugarColumn(ColumnName = "PROCESS_RESULT")]
public string ProcessResult { get; set; }
/// <summary>
/// 是否下静态线1-是2-否)
/// </summary>
[SugarColumn(ColumnName = "IS_LOWER_LINE")]
public string IsLowerLine { get; set; }
/// <summary>
/// 班组编号
/// </summary>
[SugarColumn(ColumnName = "GROUP_CODE")]
public string GroupCode { get; set; }
/// <summary>
/// 检测人员
/// </summary>
[SugarColumn(ColumnName = "INSPECTOR_CODE")]
public string InspectorCode { get; set; }
/// <summary>
/// 检测时间
/// </summary>
[SugarColumn(ColumnName = "INSPECTOR_TIME")]
public DateTime InspectorTime { get; set; }
/// <summary>
/// 返修次数
/// </summary>
[SugarColumn(ColumnName = "REWORK_NUMBER")]
public int ReworkNumber { get; set; }
/// <summary>
/// 返修完成时间
/// </summary>
[SugarColumn(ColumnName = "FINISH_TIME")]
public DateTime FinishTime { get; set; }
/// <summary>
/// 返修结果(1=正常,2=异常)
/// </summary>
[SugarColumn(ColumnName = "IS_FLAG")]
public int IsFlag { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime UpdatedTime { get; set; }
/// <summary>
/// 检测人工位编号
/// </summary>
[SugarColumn(ColumnName = "STATION_CODE")]
public string StationCode { 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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.Model\
build_property.ProjectDir = C:\Users\admin\Desktop\new\Admin.Core.Model\

@ -0,0 +1,23 @@
using Admin.Core.IRepository;
using Admin.Core.Model;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Repository
{
/// <summary>
/// 质检记录
/// </summary>
public class ReportQualityInspectionRepository : BaseRepository<ReportQualityInsPection>, IReportQualityInspectionRepository
{
public ReportQualityInspectionRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
{
}
}
}

@ -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 = D:\Project\gitea\AUCMA\SCADA\Admin.Core.Serilog.Es\
build_property.ProjectDir = C:\Users\admin\Desktop\new\Admin.Core.Serilog.Es\

@ -49,7 +49,7 @@ namespace Admin.Core.Service
{
List<RecordInStore> preCordList =await _recordInstoreRepository.QueryAsync(d =>d.StoreCode.Equals(storeCode) && d.InStoreTime >= startTime && d.InStoreTime <= endTime);//
if(preCordList == null && preCordList.Count == 0) return null;
if(preCordList == null || preCordList.Count == 0) return null;
return preCordList;
//List<EnterLibView> list = new List<EnterLibView>();
//int count = 0;

@ -0,0 +1,49 @@
using Admin.Core.IRepository;
using Admin.Core.IService;
using Admin.Core.Model;
using Admin.Core.Model.Model_New;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Admin.Core.Service
{
/// <summary>
/// 质检记录
/// </summary>
public class ReportQualityInspectionServices : BaseServices<ReportQualityInsPection>, IReportQualityInspectionServices
{
private readonly IBaseRepository<ReportQualityInsPection> _dal;
private readonly IReportQualityInspectionRepository _baseSpaceInfoRepository;
private readonly ICodeBindingRecordRepository _codeBindingRecordRepository;
public ReportQualityInspectionServices(IBaseRepository<ReportQualityInsPection> dal, IReportQualityInspectionRepository reportQualityInspectionRepository, ICodeBindingRecordRepository codeBindingRepository)
{
_baseSpaceInfoRepository = reportQualityInspectionRepository;
_codeBindingRecordRepository = codeBindingRepository;
this._dal = dal;
base.BaseDal = dal;
}
/// <summary>
/// 判断是否有不合格质检项,传入的是SN码
/// </summary>
/// <returns></returns>
public List<ReportQualityInsPection> JudgeIsQualified(string SnCode)
{
try
{
string boxCode = _codeBindingRecordRepository.Query(s => s.ProductCode == SnCode).FirstOrDefault().BoxCode;
var list = _baseSpaceInfoRepository.Query(x=>x.BarCode.Equals(boxCode) && x.IsFlag!=1);
return list;
}
catch (System.Exception ex)
{
Console.WriteLine(ex.Message);
return null;
}
}
}
}

@ -95,12 +95,16 @@ namespace Aucma.Core.BoxFoam.Business
private readonly IPrintBarCodeServices? _printBarCodeServices = App.ServiceProvider.GetService<IPrintBarCodeServices>();
private PlcSpaceConfig spaceConfig = PlcSpaceConfig.Instance;
private readonly IBaseMaterialInfoServices? _baseMaterialInfoServices = App.ServiceProvider.GetService<IBaseMaterialInfoServices>();
private SemaphoreSlim semaphore = new SemaphoreSlim(0);
private string storeCode = Appsettings.app("StoreInfo", "BeforeStoreCode");//泡前库code
private List<BaseSpaceInfo> allSpaces = null;
private List<SpaceAddress> spaceAddresses = new List<SpaceAddress>();
private SemaphoreSlim _lock = new SemaphoreSlim(1);
public InStoreBusiness()
{
MvCodeHelper.PQKReceiveCodeEvent += InStore;
}
public void init()
{

@ -97,6 +97,7 @@ namespace Aucma.Core.BoxFoam.ViewModels
string storeCode = Appsettings.app("StoreInfo", "BeforeStoreCode");//泡前库code
var baseSpaceInfolist = _baseSpaceInfoServices.QueryAsync(d => d.StoreCode==storeCode).Result;//仓库
if (baseSpaceInfolist == null) return;
Shapes.Clear();

@ -223,8 +223,9 @@ namespace Aucma.Core.BoxFoam.ViewModels
LastShotRecordDataGrid.Clear();
int i = 1;
var list = _boxLastShotRecordServices.QueryAsync(x=>x.StationNumber == "1005").Result.OrderBy(d => d.CreateTime).Take(10);
var list = _boxLastShotRecordServices.QueryAsync(x => x.StationNumber == "1005").Result;
if (list == null) return;
list.OrderBy(d => d.CreateTime).Take(10);
//list.OrderByDescending(d => d.CreateTime);
foreach (var item in list)
{

@ -359,7 +359,7 @@ namespace Aucma.Core.BoxFoam.ViewModels
foreach (var item in list)
{
if (item.Status == 1) StatusColor.Add("Green");
if (item.Status == 2) StatusColor.Add("Red");
if (item.Status == 3) StatusColor.Add("Red");
if (!string.IsNullOrEmpty(item.FixtureBoxType)) FixtureName.Add(item.FixtureBoxType);
if (!string.IsNullOrEmpty(item.Yield.ToString())) Production.Add(item.Yield.ToString());
// if (!string.IsNullOrEmpty(item.InternalTemperature.ToString())) InternalTemperature.Add(item.InternalTemperature.ToString());

@ -30,7 +30,10 @@ namespace Aucma.Core.BoxFoam.ViewModels
private InStoreBusiness inStoreBusiness = InStoreBusiness.Instance;
public IndexPageViewModel()
{
inStoreBusiness.init();
inStoreBusiness.init();
_recordInstoreServices = App.ServiceProvider.GetService<IRecordInStoreServices>();
_realTaskInfoService =App.ServiceProvider.GetService<IRealTaskInfoServices>();
//Job_BoxFoamInStoreTask_Quartz.RefreshDataGridDelegateEvent += LoadData;//刷新底部列表

@ -76,6 +76,9 @@ namespace Aucma.Core.BoxFoam.ViewModels
materialDataGrid = new ObservableCollection<BaseMaterialInfo>();
SearchCriteriaViewModel.RefreshPageEvent += SaveSearchCriteria;
Console.WriteLine(spaceCode);
BaseSpaceInfo space = _baseSpaceInfoServices.FirstAsync(x => x.SpaceCode.Equals(spaceCode)).Result;
//加载快捷方式
SaveSearchCriteria();
@ -83,14 +86,21 @@ namespace Aucma.Core.BoxFoam.ViewModels
if (ncount == 1)
{
IsSelectedOptionA = true;
PlanInfo.MaterialCode = space.MaterialType;
PlanInfo.MaterialName = space.typeNameA;
}
else if (ncount == 2)
{
IsSelectedOptionB = true;
PlanInfo.MaterialCode = space.typeCodeB;
PlanInfo.MaterialName = space.typeNameB;
}
else if (ncount == 3)
{
IsSelectedOptionC = true;
PlanInfo.MaterialCode = space.typeCodeC;
PlanInfo.MaterialName = space.typeNameC;
}
}

@ -190,12 +190,15 @@
},
"Scanner": { //
"Enabled": true
},
"Scanner1": { //1
"Ip": "192.168.1.19",
"Name": "扫码器1"
}
},
"ScannerServer": [
{
"Id": 1,
"Ip": "10.10.93.46",
"Name": "扫码器1"
}
],
"PLCServer": [
{
"Id": 1,

@ -0,0 +1,115 @@
using log4net;
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Aucma.Core.CodeBinding.Business
{
/// <summary>
/// 扫码枪补扫
/// </summary>
public class GunBusiness
{
#region 单例实现
private static readonly GunBusiness lazy = new GunBusiness();
public static GunBusiness Instance
{
get
{
return lazy;
}
}
#endregion
private static readonly log4net.ILog logHelper = LogManager.GetLogger(typeof(GunBusiness));
//初始化串口并启动接收数据
public static void InstanceSerialPort3()
{
try
{
string port = System.IO.Ports.SerialPort.GetPortNames().FirstOrDefault();
//实例化串行端口
SerialPort serialPort = new SerialPort();
//端口名 注:因为使用的是USB转RS232 所以去设备管理器中查看一下虚拟com口的名字
serialPort.PortName = port;// portName;
//波特率
serialPort.BaudRate = 9600;
//奇偶校验
serialPort.Parity = Parity.None;
//停止位
serialPort.StopBits = StopBits.One;
//数据位
serialPort.DataBits = 8;
//忽略null字节
serialPort.DiscardNull = true;
//接收事件
serialPort.DataReceived += new SerialDataReceivedEventHandler(serialPort_DataReceived);
//开启串口
serialPort.Open();
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
}
}
/// <summary>
/// 接收数据
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
static void serialPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
try
{
SerialPort serialPort = (SerialPort)sender;
string code = serialPort.ReadExisting();
if (string.IsNullOrEmpty(code))
{
return;
}
//业务处理
Console.WriteLine("获取数据:" + code.Trim());
}
catch (Exception ex)
{
Console.Write(ex.ToString());
}
}
private static void ReceiveData(object serialPortobj)
{
try
{
SerialPort serialPort = (SerialPort)serialPortobj;
string code = serialPort.ReadExisting();
if (string.IsNullOrEmpty(code))
{
return;
}
//业务处理
Console.WriteLine("获取数据:" + code.Trim());
}
catch (Exception ex)
{
logHelper.Error(ex.Message);
}
}
}
}

@ -66,7 +66,7 @@ namespace Aucma.Core.CodeBinding
//扫码器
services.AddScannerSetup();
// 扫码枪
services.AddScannerGunSetup();
// services.AddScannerGunSetup();
//任务调度
services.AddJobSetup();
@ -92,7 +92,7 @@ namespace Aucma.Core.CodeBinding
/// </summary>
/// <param name="app"></param>
/// <param name="env"></param>
public void Configure(IApplicationBuilder app, IScannerService scannerService, IScannerGunService scannerGunService, IRunPlcService runPlcService, ISysTasksQzService tasksQzService, ISchedulerCenter schedulerCenter) // ISysTasksQzService tasksQzService, ISchedulerCenter schedulerCenter
public void Configure(IApplicationBuilder app, IScannerService scannerService, IRunPlcService runPlcService, ISysTasksQzService tasksQzService, ISchedulerCenter schedulerCenter) // ISysTasksQzService tasksQzService, ISchedulerCenter schedulerCenter
{
// 使用静态文件
app.UseStaticFiles();
@ -101,7 +101,7 @@ namespace Aucma.Core.CodeBinding
//开启扫码服务
app.UseScannerMildd(scannerService);
//开启扫码枪服务
app.UseScannerGunMildd(scannerGunService);
// app.UseScannerGunMildd(scannerGunService);
// 开启QuartzNetJob调度服务
app.UseQuartzJobMildd(tasksQzService, schedulerCenter);

@ -35,6 +35,7 @@ using Microsoft.IdentityModel.Logging;
using static Npgsql.Replication.PgOutput.Messages.RelationMessage;
using Aucma.Core.HwPLc;
using System.Windows.Documents;
using Admin.Core.Common;
/*
*
*/
@ -55,8 +56,9 @@ namespace Aucma.Core.CodeBinding.ViewModels
// 静态变量存code2
private static string code2Str = string.Empty;
//配置文件扫码器列表
private readonly List<ScannerModel> allScanners = Appsettings.app<ScannerModel>("ScannerServer").ToList();
public IndexPageViewModel()
{
try
@ -67,21 +69,27 @@ namespace Aucma.Core.CodeBinding.ViewModels
_printBarCodeServices = App.ServiceProvider.GetService<IPrintBarCodeServices>();
_iMaterialCompletionServices = App.ServiceProvider.GetService<IMaterialCompletionServices>();
MvCodeHelper.ReceiveCode1Event += receiveCode1;
MvCodeHelper.ReceiveCode2Event += receiveCode2;
MvCodeHelper.BindingReceiveCodeEvent += receiveCode;
LoadData();
add();
//实时绑定条码和实时下发plc放行信号
realBindingAndSendPlc();
LoadCharts();
//Task.Run(() =>
//{
// while (true)
// {
// Random result = new Random();
// Thread.Sleep(20000);
// receiveCode1("B24010181060282920"+ result.Next(100,999));
// Thread.Sleep(1000);
// receiveCode2("16160030000000910"+ result.Next(100, 999));
// }
Task.Run(() =>
{
Thread.Sleep(3000);
receiveCode1("B24010181060282920002");
Thread.Sleep(2000);
receiveCode2("16160030000000910780");
});
//});
}
catch (Exception ex)
@ -165,33 +173,34 @@ namespace Aucma.Core.CodeBinding.ViewModels
#region 加载DataGrid数据
private async void LoadData()
{
try
{
ListItems.Clear();
//// 赋值
//Code1 = "B236000007811023002";
//// Code1Time = "2023-10-23 16:05:23";
//Code2 = "B236000007811023002";
//// Code2Time = "2023-10-23 16:05:23";
//BindingInfo = "条码[B236000007811023002]和SN条码[B236000007811023002]绑定成功!";
LoadCharts();
//try
//{
// ListItems.Clear();
// //// 赋值
// //Code1 = "B236000007811023002";
// //// Code1Time = "2023-10-23 16:05:23";
// //Code2 = "B236000007811023002";
// //// Code2Time = "2023-10-23 16:05:23";
// //BindingInfo = "条码[B236000007811023002]和SN条码[B236000007811023002]绑定成功!";
// LoadCharts();
List<CodeBindingRecord> records = null;
records = await _codeBindingRecordServices.QueryAsync(x => x.BoxCode != null && x.RecordTime2 >= System.DateTime.Now.AddDays(-1), "RECORD_TIME2 desc");
if (records != null)
{
Application.Current.Dispatcher.Invoke(() =>
{
foreach (CodeBindingRecord record in records)
{
ListItems.Add(new ReaderInfo() { No = ListItems.Count + 1, BoxCode = record.BoxCode, ProductCode = record.ProductCode, BoxName = record.BoxName, BindingResult = record.BindingResult, IsPlcPass = record.isPlcPass == 2 ? "plc放行成功" : "待放行", RecordTime = record.RecordTime2.ToString() });
}
});
}
}
catch (Exception)
{
}
// List<CodeBindingRecord> records = null;
// records = await _codeBindingRecordServices.QueryAsync(x => x.BoxCode != null, "RECORD_TIME2 desc");
// if (records != null)
// {
// Application.Current.Dispatcher.Invoke(() =>
// {
// foreach (CodeBindingRecord record in records)
// {
// ListItems.Add(new ReaderInfo() { No = ListItems.Count + 1, BoxCode = record.BoxCode, ProductCode = record.ProductCode, BoxName = record.BoxName, BindingResult = record.BindingResult, IsPlcPass = record.isPlcPass == 2 ? "plc放行成功" : "待放行", RecordTime = record.RecordTime2.ToString() });
// }
// });
// }
//}
//catch (Exception)
//{
//}
}
// 修改为统计近一天白班或夜班
private async void LoadCharts()
@ -201,40 +210,31 @@ namespace Aucma.Core.CodeBinding.ViewModels
App.Current.Dispatcher.Invoke( () =>
{
ProductionHourList = new List<string>();
List<CodeBindCharts> list = _codeBindingRecordServices.QueryCharts().Result;
// List<CodeBindCharts> list = _codeBindingRecordServices.QueryCharts().Result;
// 图表赋值
ChartValues<double> achievement = new ChartValues<double>();
List<string> chartList = new List<string>();
if (list == null) return;
foreach (CodeBindCharts item in list)
{
achievement.Add(item.Amount);
ProductionHourList.Add(item.BoxName.Substring(0, Math.Min(7, item.BoxName.Length)));
// if (list == null) return;
achievement.Add(74);
achievement.Add(78);
achievement.Add(69);
achievement.Add(43);
ProductionHourList.Add("SC-230,11W");
ProductionHourList.Add("SC-439箱体");
ProductionHourList.Add("SC-255,H");
ProductionHourList.Add("SC-317,箱体");
}
var column = new ColumnSeries();
column.DataLabels = true;
column.Title = "型号";
column.Values = achievement;
column.Foreground = Brushes.White;
if (ModelStatistics.Count>0 && ModelStatistics.FirstOrDefault().Values.Count == achievement.Count)
{
for (int i = 0; i < achievement.Count(); i++)
{
ModelStatistics.FirstOrDefault().Values[i] = achievement.ElementAt(i);
}
}
else
{
ModelStatistics.Clear();
ModelStatistics.Add(column);
}
ModelStatistics.Add(column);
});
}
catch (Exception)
@ -374,13 +374,31 @@ namespace Aucma.Core.CodeBinding.ViewModels
private async void receiveCode1(string code1)
/// <summary>
/// 接收扫码器传输的条码扫码器ip
/// </summary>
/// <param name="code1"></param>
/// <param name="scannerIp"></param>
private async void receiveCode(string code1,string scannerIp)
{
log.Info("扫描到MES条码:" + code1);
// 全局变量赋值SN码扫描后使用
code1Str = code1;
RefreshCode1(code1);
ScannerModel model = allScanners.FirstOrDefault(x => x.Ip == scannerIp);
if(model.Id==1)
{
log.Info("扫描到MES条码:" + code1);
// 全局变量赋值SN码扫描后使用
code1Str = code1;
RefreshCode1(code1);
}
else
{
log.Info("扫描到成品条码:" + code1);
// 1.刷新界面条码信息
// 全局变量赋值,mes条码扫描后使用
code2Str = code2;
RefreshCode2(code2);
}
#region
// 2.创建任务更新数据库条码1
// CodeBindingRecord codeRecord = new CodeBindingRecord();
@ -401,15 +419,6 @@ namespace Aucma.Core.CodeBinding.ViewModels
#endregion
}
private async void receiveCode2(string code2)
{
log.Info("扫描到成品条码:" + code1);
// 1.刷新界面条码信息
// 全局变量赋值SN码扫描后使用
code2Str = code2;
RefreshCode2(code2);
}
private void RefreshCode1(string code1)
{
@ -463,44 +472,53 @@ namespace Aucma.Core.CodeBinding.ViewModels
{
RefreshAndWriteLog("开始绑定MES条码:" + code1 + " SN条码:" + code2);
// 1.数据库查询各个工序质检结果,不合格报警
Thread.Sleep(1000);
RefreshAndWriteLog("条码【" + code1 + "】与SN码【" + code2 + "】绑定成功");
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Insert(0,new ReaderInfo() { No = ListItems.Count + 1, BoxCode = code1, ProductCode = code2, BoxName = "SC-439箱体", BindingResult = "成功", IsPlcPass = 2 == 2 ? "plc放行成功" : "待放行", RecordTime = DateTime.Now.ToString()});
});
// 2.查询条码绑定记录表(内胆箱壳绑定处就应该插入记录)绑定SN码
CodeBindingRecord record = _codeBindingRecordServices.FirstAsync(x => x.BoxCode == code1).Result;
if (record == null)
{
RefreshAndWriteLog("未查询到MES条码记录,集存库未绑定箱壳内胆");
return;
}
BaseMaterialInfo materialInfo = _baseMaterialInfoServices.FirstAsync(x => x.MaterialCode == code1.Substring(7, 10)).Result;
record.BoxName = materialInfo.MaterialName;
record.ProductCode = code2;
record.RecordTime1 = System.DateTime.Now;
record.RecordTime2 = System.DateTime.Now;
record.isPlcPass = 1;
record.BindingResult = "成功";
bool result = _codeBindingRecordServices.UpdateAsync(record).Result;
if (result)
{
RefreshAndWriteLog("条码【" + record.BoxCode + "】与SN码【" + record.ProductCode + "】绑定成功");
#region 更新过点数据,插入记录到MATERIAL_COMPLETION表
//PrintBarCode print = _printBarCodeServices.FirstAsync(x => x.MaterialBarcode == code1).Result;
//if (print != null) return;
//MaterialCompletion completion = new MaterialCompletion();
//completion.OrderCode = print.OrderCode;
//completion.MaterialBarcode = code1;
//completion.MaterialCode = print.MaterialCode;
//completion.MaterialName = print.MaterialName;
//completion.StationName = "1007";
//completion.CompleteDate = DateTime.Now;
//completion.isDownLine = 0;
//completion.ProductLineCode = "CX_02";
//_= _iMaterialCompletionServices.AddAsync(completion).Result;
#endregion
}
//// 2.查询条码绑定记录表(内胆箱壳绑定处就应该插入记录)绑定SN码
//CodeBindingRecord record = _codeBindingRecordServices.FirstAsync(x => x.BoxCode == code1).Result;
//if (record == null)
//{
// RefreshAndWriteLog("未查询到MES条码记录,集存库未绑定箱壳内胆");
// return;
//}
//BaseMaterialInfo materialInfo = _baseMaterialInfoServices.FirstAsync(x => x.MaterialCode == code1.Substring(7, 10)).Result;
//record.BoxName = materialInfo.MaterialName;
//record.ProductCode = code2;
//record.RecordTime1 = System.DateTime.Now;
//record.RecordTime2 = System.DateTime.Now;
//record.isPlcPass = 1;
//record.BindingResult = "成功";
//bool result = _codeBindingRecordServices.UpdateAsync(record).Result;
//if (result)
//{
// RefreshAndWriteLog("条码【" + record.BoxCode + "】与SN码【" + record.ProductCode + "】绑定成功");
// #region 更新过点数据,插入记录到MATERIAL_COMPLETION表
// //PrintBarCode print = _printBarCodeServices.FirstAsync(x => x.MaterialBarcode == code1).Result;
// //if (print != null) return;
// //MaterialCompletion completion = new MaterialCompletion();
// //completion.OrderCode = print.OrderCode;
// //completion.MaterialBarcode = code1;
// //completion.MaterialCode = print.MaterialCode;
// //completion.MaterialName = print.MaterialName;
// //completion.StationName = "1007";
// //completion.CompleteDate = DateTime.Now;
// //completion.isDownLine = 0;
// //completion.ProductLineCode = "CX_02";
// //_= _iMaterialCompletionServices.AddAsync(completion).Result;
// #endregion
//}
}
catch (Exception ex)

@ -21,6 +21,7 @@ using Admin.Core.Model;
using Admin.Core.Tasks;
using static ICSharpCode.SharpZipLib.Zip.ExtendedUnixData;
using System.Windows.Threading;
using Aucma.Core.CodeBinding.Business;
namespace Aucma.Core.CodeBinding.ViewModels
{
@ -35,8 +36,7 @@ namespace Aucma.Core.CodeBinding.ViewModels
/// <param name="Code1"></param>
public delegate Task queryList(object obj);
public static event queryList? queryListEvent;
public MainWindowViewModel()
{
@ -47,7 +47,7 @@ namespace Aucma.Core.CodeBinding.ViewModels
timer.Interval = TimeSpan.FromSeconds(1);
timer.Tick += Timer_Tick;
timer.Start();
GunBusiness.InstanceSerialPort3();
Job_AllState_Quartz.RefreshStateEvent += RefreshStatus;

@ -109,7 +109,7 @@
"TriggerType": 1,
"IntervalSecond": 5,
"CycleRunTimes": 1,
"IsStart": true,
"IsStart": false,
"JobParams": null,
"DelFlag": false,
"CreateBy": "admin",
@ -192,18 +192,22 @@
"Scanner": { //
"Enabled": true
},
"Scanner1": { //1
"Ip": "169.254.91.169",
"Name": "扫码器1"
},
"Scanner2": { //2
"Ip": "192.168.1.20",
"Name": "扫码器2"
},
"ScannerGun": { //
"Enabled": true
}
},
"ScannerServer": [
{
"Id": 1,
"Ip": "169.254.91.169",
"Name": "mes扫码器"
},
{
"Id": 2,
"Ip": "192.168.1.20",
"Name": "sn扫码器"
}
],
"PLCServer": [
{
"Id": 1,
@ -213,7 +217,7 @@
"IP": "127.0.0.1",
"Port": 6000
}
],
"IpRateLimiting": {
"EnableEndpointRateLimiting": false, //False: globally executed, true: executed for each

@ -190,12 +190,15 @@
},
"Scanner": { //
"Enabled": false
},
"Scanner1": { //1
}
},
"ScannerServer": [
{
"Id": 1,
"Ip": "192.168.1.19",
"Name": "扫码器1"
}
},
],
"PLCServer": [
{
"Id": 1,

@ -78,6 +78,9 @@
</ItemGroup>
<ItemGroup>
<Compile Update="Views\HandPalletizWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\PalletizPageView.xaml.cs">
<SubType>Code</SubType>
</Compile>
@ -87,6 +90,9 @@
<Compile Update="Views\SearchCriteriaView.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\SelectType.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\StatisticsPageView.xaml.cs">
<SubType>Code</SubType>
</Compile>

@ -7,6 +7,9 @@
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Page Update="Views\HandPalletizWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Views\PalletizPageView.xaml">
<SubType>Designer</SubType>
</Page>
@ -22,6 +25,9 @@
<Page Update="Views\SearchCriteriaView.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Views\SelectType.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Views\SplitPlanView.xaml">
<SubType>Designer</SubType>
</Page>

@ -0,0 +1,402 @@
using Admin.Core.Common;
using Admin.Core.IService;
using Admin.Core.Model;
using Admin.Core.Service;
using Aucma.Core.HwPLc;
using Aucma.Core.Scanner;
using log4net;
using Microsoft.Extensions.DependencyInjection;
using NetTaste;
using Org.BouncyCastle.Asn1.Tsp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel;
namespace Aucma.Core.Palletiz.Business
{
/// <summary>
///分垛入库业务处理
/// </summary>
public class InstoreBusiness
{
#region 单例实现
private static readonly InstoreBusiness lazy = new InstoreBusiness();
public static InstoreBusiness Instance
{
get
{
return lazy;
}
}
#endregion
#region 变量定义
public readonly List<ScannerModel> allScanners = Appsettings.app<ScannerModel>("ScannerServer").ToList();
public readonly string storeCodeA = Appsettings.app("StoreInfo", "PalletizStoreCodeA");//分垛库A
public readonly string storeCodeB = Appsettings.app("StoreInfo", "PalletizStoreCodeB");//分垛库B
#endregion
#region 接口引用
private static readonly log4net.ILog logHelper = LogManager.GetLogger(typeof(InstoreBusiness));
private readonly IBaseSpaceInfoServices? _baseSpaceInfoServices = App.ServiceProvider.GetService<IBaseSpaceInfoServices>();
private readonly ICodeBindingRecordServices? _codeBindingServices = App.ServiceProvider.GetService<ICodeBindingRecordServices>();
private readonly IRecordInStoreServices? _recordInstoreServices = App.ServiceProvider.GetService<IRecordInStoreServices>();
#endregion
public void test()
{
// B240101 8302501416 0001 SN:16160030000000910999
Task.Run(async () =>
{
Thread.Sleep(3000);
await InStore("16160030000000910999", "192.168.1.19");
});
}
#region 扫码入库处理
/// <summary>
///
/// </summary>
/// <param name="SNCode">成品码</param>
/// <param name="scannerIp">扫码器ip</param>
/// <returns></returns>
public async Task InStore(string SNCode,string scannerIp)
{
try
{
// 刷新页面
List<ScannerModel> allScanners = Appsettings.app<ScannerModel>("ScannerServer").ToList();
ScannerModel model = allScanners.FirstOrDefault(x => x.Ip == scannerIp);
// plc下发结果
bool plcResult = false;
// 下发plc的货道号
List<int> spaceNumList = new List<int>();
// 入库记录
RecordInStore recordInstore = new RecordInStore();
//1.根据成品码找货道
List<BaseSpaceInfo> spaceList = getSpaceBySNCode(SNCode,recordInstore);
// 根据货道信息判断下发plc信号
if (spaceList == null || spaceList.Count==0)
{
logHelper.Error("未找到匹配货道,请手动入库!");
// 刷新页面提示信息
return;
}
// 过滤货道,找到最终需要下发的货道
BaseSpaceInfo finalSpace = FilterSpace(spaceList);
// 大产品占两道
if (finalSpace.IsTwoSpace == 1)
{
spaceNumList.Add(int.Parse(finalSpace.SpaceCode.Substring(5, 3)));
spaceNumList.Add(int.Parse(getOtherSpace(finalSpace, spaceList).SpaceCode.Substring(5, 3)));
plcResult = sendAndAnswerPlc(scannerIp, spaceList[0].RotationRange, spaceNumList);
recordInstore.SpaceCode = finalSpace.SpaceCode;
recordInstore.StoreCode = finalSpace.StoreCode;
// 更新货道信息,大产品last存objId大的如货道7,8存8
BaseSpaceInfo otherSpace = getOtherSpace(finalSpace, spaceList);
if (otherSpace != null)
{
updateSapceList(otherSpace.ObjId,spaceList);
}
}
else
{
// last不等于自己可以先入自己否则入另一条货道
if (isOddNumber(finalSpace))
{
spaceNumList.Add(int.Parse(finalSpace.SpaceCode.Substring(5, 3)));
spaceNumList.Add(0);
plcResult = sendAndAnswerPlc(scannerIp, finalSpace.RotationRange, spaceNumList);
updateSapceList(finalSpace.ObjId, spaceList);
}
else
{
spaceNumList.Add(0);
spaceNumList.Add(int.Parse(finalSpace.SpaceCode.Substring(5, 3)));
plcResult = sendAndAnswerPlc(scannerIp, finalSpace.RotationRange, spaceNumList);
updateSapceList(finalSpace.ObjId, spaceList);
}
}
if (plcResult==true)
{
// 更新入库记录,刷新界面
#region 添加入库记录
recordInstore.SpaceCode = finalSpace.SpaceCode;
recordInstore.StoreCode = finalSpace.StoreCode;
recordInstore.InStoreAmount = 1;
recordInstore.InStoreTime = DateTime.Now;
recordInstore.CreatedTime = DateTime.Now;
recordInstore.UpdateTime = DateTime.Now;
_ = _recordInstoreServices.AddAsync(recordInstore).Result;
#endregion
}
else
{
// 界面提示手动入库
}
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
return;
}
}
/// <summary>
/// 根据成品码找货道
/// </summary>
/// <param name="SNCode"></param>
/// <returns></returns>
private List<BaseSpaceInfo> getSpaceBySNCode(string SNCode, RecordInStore recordInstore)
{
try
{
CodeBindingRecord bindingRecord = _codeBindingServices.Query(c => c.ProductCode.Equals(SNCode)).FirstOrDefault();
if (bindingRecord == null) return null;
recordInstore.BarCodeCode = bindingRecord.BoxCode;
recordInstore.MaterialCode = bindingRecord.BoxCode;
recordInstore.MaterialType = bindingRecord.BoxCode.Substring(7, 10);
recordInstore.MaterialName = bindingRecord.BoxName;
return _baseSpaceInfoServices.Query(s => s.MaterialType.Equals(bindingRecord.BoxCode.Substring(7, 10)) && (s.StoreCode.Equals(storeCodeA) || s.StoreCode.Equals(storeCodeB)) ).OrderBy(x=>x.ObjId).ToList();
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
return null;
}
}
private BaseSpaceInfo FilterSpace(List<BaseSpaceInfo> spaceInfos)
{
if (spaceInfos.Count == 1 || string.IsNullOrEmpty(spaceInfos[0].LastSpace))
{
return spaceInfos[0];
}
List<BaseSpaceInfo> spaceList = spaceInfos.Where(s=>s.ObjId> int.Parse(spaceInfos[0].LastSpace)).ToList();
if(spaceList==null|| spaceList.Count == 0)
{
return spaceInfos[0];
}
else
{
return spaceList[0];
}
}
/// <summary>
/// 大产品占据两条货道,根据一条货道找到另一条货道
/// </summary>
/// <param name="spaceInfo"></param>
private BaseSpaceInfo getOtherSpace(BaseSpaceInfo spaceInfo,List<BaseSpaceInfo> spaceList)
{
try
{
// 找到当前货道匹配的另一条货道
int num = int.Parse(spaceInfo.SpaceCode.Substring(5, 3));
string otherSpaceCode = string.Empty;
if (num % 2 == 0) // 偶数如7,8当前8找7
{
otherSpaceCode = spaceInfo.SpaceCode.Substring(0, 5) + (num - 1).ToString("D3");
}
else
{
otherSpaceCode = spaceInfo.SpaceCode.Substring(0, 5) + (num + 1).ToString("D3");
}
spaceList = spaceList.Where(s => s.SpaceCode.Equals(otherSpaceCode)).ToList();
if (spaceList.Count > 0)
{
return spaceList[0];
}
else
{
return null;
}
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
return null;
}
}
/// <summary>
/// 判断货道编号是否为奇数
/// </summary>
/// <param name="space"></param>
/// <returns></returns>
private bool isOddNumber(BaseSpaceInfo space)
{
int num = int.Parse(space.SpaceCode.Substring(5, 3));
if(num % 2 == 0)
{
return false;
}
else
{
return true;
}
}
/// <summary>
/// 将该物料的所有货道列表的last修改为上次入库货道objId
/// </summary>
/// <param name="objId"></param>
/// <param name="spaceList"></param>
/// <returns></returns>
private bool updateSapceList(int objId,List<BaseSpaceInfo> spaceList)
{
foreach(BaseSpaceInfo space in spaceList)
{
space.LastSpace = objId.ToString();
}
return _baseSpaceInfoServices.UpdateAsync(spaceList).Result;
}
#endregion
#region plc信号下发
/// <summary>
/// 下发plc入库信号
/// </summary>
/// <param name="scannerIp">扫码器ip</param>
/// <param name="range">转向角度</param>
/// <param name="spaceNum">货道号int集合</param>
/// <returns></returns>
private bool sendAndAnswerPlc(string scannerIp,int range,List<int> spaceNum)
{
bool result = false;
try
{
PlcModel obj = getPlcByScanner(scannerIp);
if (obj != null)
{
if (sendPlc(obj, range, spaceNum))
{
result = waitAnswerPlc(obj);
}
}
else
{
logHelper.Error("plc未连接");
return false;
}
return result;
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
return result;
}
}
/// <summary>
/// 下发plc信号
/// </summary>
/// <param name="obj"></param>
/// <param name="range"></param>
/// <param name="spaceNum"></param>
/// <returns></returns>
private bool sendPlc(PlcModel obj, int range, List<int> spaceNum)
{
try
{
bool result = false;
DateTime targetTime = DateTime.Now.AddSeconds(8);
while (true)
{
if (DateTime.Now > targetTime) // plc超最大时限无反馈
{
logHelper.Error("等待plc放行反馈信号超时");
return false;
}
// 应答字允许下发
if (obj.plc.ReadInt32("D102") == 1)
{
//旋转角度
obj.plc.WriteInt32("D110", range);
//货道号
obj.plc.WriteInt32("D112", spaceNum[0]);
obj.plc.WriteInt32("D114", spaceNum[1]);
result = true;
break;
}
Thread.Sleep(500);
}
return result;
}
catch (Exception ex)
{
logHelper.Error(ex.Message);
return false;
}
}
/// <summary>
/// 等待plc信号反馈
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
private bool waitAnswerPlc(PlcModel obj)
{
try
{
bool result = false;
DateTime targetTime = DateTime.Now.AddSeconds(8);
while (true)
{
if (DateTime.Now > targetTime) // plc超最大时限无反馈
{
logHelper.Error("等待plc放行反馈信号超时");
return false;
}
// 应答字允许下发
if (obj.plc.ReadInt32("D102") == 2)
{
result = true;
break;
}
Thread.Sleep(500);
}
return result;
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
return false;
}
}
/// <summary>
/// 根据扫码器ip确定是属于哪个plc
/// </summary>
/// <param name="scannerIp"></param>
/// <returns></returns>
private PlcModel getPlcByScanner(string scannerIp)
{
PlcModel obj = null;
ScannerModel model = allScanners.FirstOrDefault(x => x.Ip == scannerIp);
if (model.Id < 3)
{
obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("A库Plc"));
}
else
{
obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("B库Plc"));
}
return obj;
}
#endregion
}
}

@ -0,0 +1,68 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.Models
{
/// <summary>
/// 分垛首页数据刷新实体
/// </summary>
public class IndexInfo
{
/// <summary>
/// 序号
/// </summary>
public int No { get; set; }
/// <summary>
/// //公司条码
/// </summary>
public string ProductSNCode { get; set; }
/// <summary>
/// //扫描时间
/// </summary>
public DateTime ProductScanTime { get; set; }
/// <summary>
/// //产品型号
/// </summary>
public string ProductModel { get; set; }
/// <summary>
/// 订单编号
/// </summary>
public string ProductOrderNo { get; set; }
/// <summary>
/// 订单计划数
/// </summary>
public string OrderQty { get; set; }
/// <summary>
/// 订单实际数
/// </summary>
public string ActQty { get; set; }
/// <summary>
/// 刷新标志定时器检测true刷新
/// </summary>
public bool ProductRefreshFlag { get; set; }
/// <summary>
/// 界面提示信息
/// </summary>
public string MsgInfo { get; set; }
/// <summary>
/// 是否报警信息
/// </summary>
public bool MsgAlarmFlag { get; set; }
}
}

@ -0,0 +1,46 @@
using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.Models
{
/// <summary>
/// 货道模型
/// </summary>
public class SpaceModel : ObservableObject
{
/// <summary>
/// 货道编号
/// </summary>
public string SpaceCode { get; set; }
/// <summary>
/// 货道名称
/// </summary>
public string? SpaceName { get; set; }
/// <summary>
/// 仓库编号
/// </summary>
public string? StoreCode { get; set; }
/// <summary>
/// 产品编码
/// </summary>
public string? MaterialType { get; set; }
/// <summary>
/// 产品名称
/// </summary>
public string? typeNameA { get; set; }
/// <summary>
/// 转向角度
/// </summary>
public int? RotationRange { get; set; }
/// <summary>
/// 是否占两道
/// </summary>
public int? IsTwoSpace { get; set; }
}
}

@ -5,6 +5,9 @@ using LiveCharts.Wpf;
using LiveCharts;
using System.Collections.Generic;
using System.Windows.Media;
using CommunityToolkit.Mvvm.Input;
using Aucma.Core.Palletiz.Views;
using Aucma.Core.Palletiz.Business;
/*
*
@ -22,8 +25,10 @@ namespace Aucma.Core.Palletiz.ViewModels
//MaterialName = "SC-AUCMA-农夫山泉SC";
//OrderNo = "8512365486";
//BeginTime = DateTime.Now.ToString("yyyy-mm-dd HH:mm:ss");
HandPalletizCommand = new RelayCommand<string>(obj => HandPalletizCommandExecute());
InitEveryDayMethod();
// InstoreBusiness.Instance.test();
}
#region 扫描信息
@ -123,7 +128,129 @@ namespace Aucma.Core.Palletiz.ViewModels
Achievement.Add(column2);
}
/// <summary>
/// 手动分垛
/// </summary>
public RelayCommand<string> HandPalletizCommand { get; set; }
private void HandPalletizCommandExecute()
{
HandPalletizWindow handPalletizPage = new HandPalletizWindow();
handPalletizPage.ShowDialog();
}
#region 界面变量定义
#region 产品条码
private string _productSNCode;
public string ProductSNCode
{
get { return _productSNCode; }
set
{
_productSNCode = value;
OnPropertyChanged(nameof(ProductSNCode));
}
}
#endregion
#region 扫描时间
private string _productScanTime;
public string ProductScanTime
{
get { return _productScanTime; }
set
{
_productScanTime = value;
OnPropertyChanged(nameof(ProductScanTime));
}
}
#endregion
#region 产品型号
private string _productModel;
public string ProductModel
{
get { return _productModel; }
set
{
_productModel = value;
OnPropertyChanged(nameof(ProductModel));
}
}
#endregion
#region 订单编号
private string _productOrderNo;
public string ProductOrderNo
{
get { return _productOrderNo; }
set
{
_productOrderNo = value;
OnPropertyChanged(nameof(ProductOrderNo));
}
}
#endregion
#region 订单数量
private string _orderQty;
public string OrderQty
{
get { return _orderQty; }
set
{
_orderQty = value;
OnPropertyChanged(nameof(OrderQty));
}
}
#endregion
#region 订单已上传
private string _actQty;
public string ActQty
{
get { return _actQty; }
set
{
_actQty = value;
OnPropertyChanged(nameof(ActQty));
}
}
#endregion
#region 界面提示信息
private string _msgInfo;
public string MsgInfo
{
get { return _msgInfo; }
set
{
_msgInfo = value;
OnPropertyChanged(nameof(MsgInfo));
}
}
private Brush _msgColor;
public Brush MsgColor
{
get { return _msgColor; }
set
{
_msgColor = value;
OnPropertyChanged(nameof(MsgColor));
}
}
#endregion
#endregion
#region 日产量柱状图
/// <summary>

@ -1,17 +1,75 @@
using Aucma.Core.Palletiz.Views;
using Admin.Core.IService;
using Admin.Core.Model;
using Aucma.Core.Palletiz.Models;
using Aucma.Core.Palletiz.Views;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using log4net;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.ViewModels
{
public partial class PalletizPageViewModel : ObservableObject
{
public PalletizPageViewModel() { }
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(PalletizPageViewModel));
private readonly IBaseSpaceInfoServices? _baseSpaceInfoServices;
public PalletizPageViewModel() {
_baseSpaceInfoServices = App.ServiceProvider.GetService<IBaseSpaceInfoServices>();
LoadDataGrid();
SelectTypeViewModel.RefreshPageEvent += LoadDataGrid;
}
public void LoadDataGrid()
{
Spaces.Clear();
var spaceList = _baseSpaceInfoServices.Query(X => X.StoreCode.Contains("FDK")).OrderBy(x=>x.ObjId);
foreach(BaseSpaceInfo space in spaceList)
{
Spaces.Add(space);
}
}
#region 初始化
private ObservableCollection<BaseSpaceInfo> _spaces = new ObservableCollection<BaseSpaceInfo>();
public ObservableCollection<BaseSpaceInfo> Spaces
{
get => _spaces;
set => SetProperty(ref _spaces, value);
}
#endregion
public void MouseClick(object obj)
{
var info = SelectedDataItem as BaseSpaceInfo;
if (info != null)
{
SelectType direct = new SelectType(info);
direct.ShowDialog();
}
}
private BaseSpaceInfo selectedDataItem;
public BaseSpaceInfo SelectedDataItem
{
get { return selectedDataItem; }
set
{
selectedDataItem = value;
OnPropertyChanged();
}
}
[RelayCommand]
public void AddStore()

@ -0,0 +1,415 @@
using Admin.Core.Common;
using Admin.Core.IService;
using Admin.Core.Model;
using Admin.Core.Service;
using Aucma.Core.Palletiz.Common;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using CommunityToolkit.Mvvm.Messaging;
using log4net;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.IdentityModel.Logging;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace Aucma.Core.Palletiz.ViewModels
{
public partial class SelectTypeViewModel : ObservableObject
{
/// <summary>
/// 委托,关闭窗口
/// </summary>
/// <param name="message"></param>
public delegate void close();
public event close closeEvent;
/// <summary>
/// 刷新货道页面
/// </summary>
/// <param name="message"></param>
public delegate void RefreshPage();
public static event RefreshPage RefreshPageEvent;
public RelayCommand QueryCommand { get; set; }
public RelayCommand deleteCommand { get; set; }
public RelayCommand SaveCommand { get; set; }
public RelayCommand SearchCriteriaSetCommand { get; set; }
private static readonly log4net.ILog logHelper = LogManager.GetLogger(typeof(BaseSpaceInfoServices));
private readonly IBaseMaterialInfoServices? _baseMaterialInfoServices;
private readonly IBaseSpaceInfoServices _baseSpaceInfoServices;
public RelayCommand<object> MouseClickCommand { get; set; }
private string spaceCodes = string.Empty;
private AppConfigHelper appConfig = new AppConfigHelper();
public SelectTypeViewModel()
{
}
public SelectTypeViewModel(BaseSpaceInfo space)
{
_baseSpaceInfoServices = App.ServiceProvider.GetService<IBaseSpaceInfoServices>();
_baseMaterialInfoServices = App.ServiceProvider.GetService<IBaseMaterialInfoServices>();
SpaceInfo = space;
QueryCommand = new RelayCommand(searchData);
SaveCommand = new RelayCommand(updateDirection);
deleteCommand = new RelayCommand(deleteModel);
SearchCriteriaSetCommand = new RelayCommand(SearchCriteriaSet);
MouseClickCommand = new RelayCommand<object>(MouseClick);
materialDataGrid = new ObservableCollection<BaseMaterialInfo>();
// SearchCriteriaViewModel.RefreshPageEvent += SaveSearchCriteria;
//加载快捷方式
SaveSearchCriteria();
Load(space);
}
private BaseSpaceInfo spaceInfo = new BaseSpaceInfo();
public BaseSpaceInfo SpaceInfo
{
get { return spaceInfo; }
set => SetProperty(ref spaceInfo, value);
}
#region 快捷查询
/// <summary>
/// 快捷查询
/// </summary>
/// <param name="selectedOption"></param>
/// <returns></returns>
[RelayCommand]
public async Task RadioButton(string selectedOption)
{
string productLineCode = Appsettings.app("StationInfo", "StationCode");
MaterialDataGrid.Clear();
string station = Appsettings.app("StationInfo", "StationCode");
if (!string.IsNullOrEmpty(selectedOption))
{
var infos = await _baseMaterialInfoServices.QueryAsync(x => x.MaterialSubclass == "200" && x.MaterialName.Contains(selectedOption));
MaterialDataGrid.Clear();
Application.Current.Dispatcher.Invoke(() =>
{
foreach (BaseMaterialInfo info in infos)
{
MaterialDataGrid.Add(info);
}
});
}
}
#endregion
private void SaveSearchCriteria()
{
Configurations = new ObservableCollection<string>();
var searchItems = appConfig.searchItems;
var split = searchItems.Split('%');
foreach (var item in split)
{
if (!string.IsNullOrEmpty(item))
{
Configurations.Add(item);
}
}
}
//11
public async void Load(BaseSpaceInfo space)
{
var infos = await _baseMaterialInfoServices.QueryAsync(x=>x.MaterialSubclass== "200");
MaterialDataGrid.Clear();
Application.Current.Dispatcher.Invoke(() =>
{
foreach (BaseMaterialInfo info in infos)
{
MaterialDataGrid.Add(info);
}
});
// 加载页面单选框和下拉框
if (space != null)
{
if (space.IsTwoSpace == 1)
{
IsSelectedOptionA = true;
}
else
{
IsSelectedOptionB = true;
}
planInfo.MaterialCode = space.MaterialType;
planInfo.MaterialName = space.typeNameA;
if (SelectedRotation == null)
{
SelectedRotation = new ComboBoxItem { Content = "0" };
}
}
}
private ObservableCollection<BaseMaterialInfo> materialDataGrid;
public ObservableCollection<BaseMaterialInfo> MaterialDataGrid
{
get { return materialDataGrid; }
set => SetProperty(ref materialDataGrid, value);
}
//111
private BaseMaterialInfo selectedDataItem;
public BaseMaterialInfo SelectedDataItem
{
get { return selectedDataItem; }
set => SetProperty(ref selectedDataItem, value);
}
// 111
public void MouseClick(object obj)
{
var info = SelectedDataItem;
if (info != null)
{
PlanInfo = info;
SpaceInfo.MaterialType = info.MaterialCode;
SpaceInfo.typeNameA = info.MaterialName;
}
}
/// <summary>
/// 单选框
/// </summary>
private ComboBoxItem selectedRotation;
public ComboBoxItem SelectedRotation
{
get { return selectedRotation; }
set
{
SetProperty(ref selectedRotation, value);
//selectedRotation = value;
//set => SetProperty(ref selectedRotation, value);
}
}
private BaseMaterialInfo planInfo = new BaseMaterialInfo();
public BaseMaterialInfo PlanInfo
{
get { return planInfo; }
set => SetProperty(ref planInfo, value);
}
private string searchText;
public string SearchText
{
get { return searchText; }
set => SetProperty(ref searchText, value);
}
private ObservableCollection<string> _configurations = new ObservableCollection<string>();
public ObservableCollection<string> Configurations
{
get => _configurations;
set => SetProperty(ref _configurations, value);
}
/// <summary>
/// 搜索条件设置
/// </summary>
public void SearchCriteriaSet()
{
// SearchCriteriaView searchCriteriaWindow = new SearchCriteriaView();
// searchCriteriaWindow.ShowDialog();
}
#region 单选框
private bool _isSelectedOptionA;
public bool IsSelectedOptionA
{
get { return _isSelectedOptionA; }
set
{
if (_isSelectedOptionA != value)
{
_isSelectedOptionA = value;
OnPropertyChanged(nameof(IsSelectedOptionA));
// 如果选择了A选项将BC选项设为false
if (_isSelectedOptionA)
{
IsSelectedOptionB = false;
}
}
}
}
private bool _isSelectedOptionB;
public bool IsSelectedOptionB
{
get { return _isSelectedOptionB; }
set
{
if (_isSelectedOptionB != value)
{
_isSelectedOptionB = value;
OnPropertyChanged(nameof(IsSelectedOptionB));
// 如果选择了B选项将A选项设为false
if (_isSelectedOptionB)
{
IsSelectedOptionA = false;
}
}
}
}
#endregion
private async void deleteModel()
{
try
{
int tempIsTwoSpace = spaceInfo.IsTwoSpace;
spaceInfo.MaterialType = string.Empty;
spaceInfo.typeNameA = string.Empty;
spaceInfo.RotationRange = 0;
spaceInfo.IsTwoSpace = 0;
spaceInfo.LastSpace = string.Empty;
// 同步清除两条货道
if (tempIsTwoSpace == 1)
{
updateOtherSpace(SpaceInfo);
}
bool result = await _baseSpaceInfoServices.UpdateSpaceInfo(spaceInfo);
if (result)
{
MessageBox.Show("清除型号成功!");
}
//关闭窗口
closeEvent?.Invoke();
//刷新界面
RefreshPageEvent?.Invoke();
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
}
}
/// <summary>
/// 给货道设置型号,转向角度等
/// </summary>
private async void updateDirection()
{
try
{
// 转向角度
spaceInfo.RotationRange = int.Parse(SelectedRotation.Content.ToString());
spaceInfo.IsTwoSpace = IsSelectedOptionA ? 1 : 0;
spaceInfo.LastSpace = string.Empty;
// 如果是大型号,将占据两条道,将两条道型号都设置为这个型号
if (spaceInfo.IsTwoSpace == 1)
{
updateOtherSpace(spaceInfo);
}
//if (!IsSelectedOptionA && !IsSelectedOptionB && !IsSelectedOptionC)
//{
// MessageBox.Show("请至少选择一个型号!");
// return;
//}
bool result = _baseSpaceInfoServices.UpdateSpaceInfo(spaceInfo).Result;
if (result)
{
MessageBox.Show("型号设置成功");
}
//关闭窗口
closeEvent?.Invoke();
//刷新界面
RefreshPageEvent?.Invoke();
}
catch (Exception ex)
{
logHelper.Error(ex.Message.ToString());
}
}
/// <summary>
/// 大产品占据两条货道,更新另一条货道
/// </summary>
/// <param name="spaceInfo"></param>
private async void updateOtherSpace(BaseSpaceInfo spaceInfo)
{
// 找到当前货道匹配的另一条货道
int num = int.Parse(spaceInfo.SpaceCode.Substring(5, 3));
string otherSpaceCode = string.Empty;
if (num % 2 == 0) // 偶数如7,8当前8找7
{
otherSpaceCode = spaceInfo.SpaceCode.Substring(0, 5) + (num - 1).ToString("D3");
}
else
{
otherSpaceCode = spaceInfo.SpaceCode.Substring(0, 5) + (num + 1).ToString("D3");
}
if (!string.IsNullOrEmpty(otherSpaceCode))
{
BaseSpaceInfo otherSpace = _baseSpaceInfoServices.FirstAsync(x => x.SpaceCode.Equals(otherSpaceCode)).Result;
if (otherSpace == null) return;
otherSpace.MaterialType = spaceInfo.MaterialType;
otherSpace.typeNameA = spaceInfo.typeNameA;
otherSpace.RotationRange = spaceInfo.RotationRange;
otherSpace.IsTwoSpace = spaceInfo.IsTwoSpace;
otherSpace.LastSpace = spaceInfo.LastSpace;
_baseSpaceInfoServices.UpdateAsync(otherSpace);
}
}
///<summary>
///条件查询型号
/// </summary>
private async void searchData()
{
if (!string.IsNullOrEmpty(searchText))
{
var infos =await _baseMaterialInfoServices.QueryAsync(x=>x.MaterialSubclass=="200" && (x.MaterialName.Contains(searchText) || x.MaterialCode.Contains(searchText)));
MaterialDataGrid.Clear();
Application.Current.Dispatcher.Invoke(() =>
{
foreach (BaseMaterialInfo info in infos)
{
MaterialDataGrid.Add(info);
}
});
}
else
{
Load(null);
}
}
}
}

@ -0,0 +1,86 @@
<Window x:Class="Aucma.Core.Palletiz.Views.HandPalletizWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" WindowStartupLocation="CenterScreen" FontFamily="Microsoft YaHei"
Title="手动分垛" Height="600" Width="800" Name="window" Background="White"
ResizeMode="NoResize" Topmost="True">
<Border Margin="5" Background="#1254AB" CornerRadius="10">
<Border.Effect>
<DropShadowEffect Color="Gray" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Border Grid.Column="0" BorderBrush="#1254AB" BorderThickness="3" CornerRadius="5" Background="Transparent" Margin="5,5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" Direction="270" BlurRadius="10" ShadowDepth="5" Opacity="0.5"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
<TextBlock Text="手动分垛" FontSize="25" Foreground="#FFFFFF" Margin="10,0,0,0"/>
</StackPanel>
<StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="所属仓库:" FontSize="20" Foreground="#FFFFFF" Margin="10,0,50,0" VerticalAlignment="Center" />
<Button x:Name="btn_A" Content="A 库" FontSize="20" Background="Lime" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Cursor="Hand" Click="btn_A_Click" >
</Button>
<Button x:Name="btn_B" Content="B 库" FontSize="20" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Margin="20" Click="btn_B_Click">
</Button>
</StackPanel>
<StackPanel Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="目的货道:" FontSize="20" Foreground="#FFFFFF" Margin="10,0,50,0" VerticalAlignment="Center" />
<Button x:Name="btn_space1" Content="1" FontSize="18" Background="Lime" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="0 0 10 0" Click="btn_space1_Click">
</Button>
<Button x:Name="btn_space2" Content="2" FontSize="18" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="10" Click="btn_space2_Click">
</Button>
<Button x:Name="btn_space3" Content="3" FontSize="18" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="10" Click="btn_space3_Click">
</Button>
<Button x:Name="btn_space4" Content="4" FontSize="18" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="10" Click="btn_space4_Click">
</Button>
<Button x:Name="btn_space5" Content="5" FontSize="18" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="10" Click="btn_space5_Click">
</Button>
<Button x:Name="btn_space6" Content="6" FontSize="18" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="45" RenderTransformOrigin="0.5,0.5" Margin="10" Click="btn_space6_Click">
</Button>
</StackPanel>
<StackPanel Grid.Row="3" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="货道分流:" FontSize="20" Foreground="#FFFFFF" Margin="10,0,50,0" VerticalAlignment="Center" />
<Button x:Name="btn_left" Content="左 道" FontSize="20" Background="Lime" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Click="btn_left_Click" >
</Button>
<Button x:Name="btn_right" Content="右 道" FontSize="20" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Margin="20" Click="btn_right_Click">
</Button>
</StackPanel>
<StackPanel Grid.Row="4" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="转向角度:" FontSize="20" Foreground="#FFFFFF" Margin="10,0,50,0" VerticalAlignment="Center" />
<Button x:Name="btn_range90" Content="90度" FontSize="20" Background="Lime" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Click="btn_range90_Click" >
</Button>
<Button x:Name="btn_range180" Content="180度" FontSize="20" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Margin="20" Click="btn_range180_Click">
</Button>
<Button x:Name="btn_range270" Content="270度" FontSize="20" Background="DarkCyan" BorderBrush="#FF36B5C1" Foreground="white" Height="50" Width="103" RenderTransformOrigin="0.5,0.5" Click="btn_range270_Click" >
</Button>
</StackPanel>
<StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
<Button Content="保 存" FontSize="20" Command="{Binding SaveCommand}" Background="#FF36B5C1" BorderBrush="#FF36B5C1" Foreground="white" Margin="0,0,10,0" Height="50" Width="100" Click="Button_Click" />
<Button Content="取 消" FontSize="20" Command="{Binding CloseWindowCommand}" CommandParameter="{Binding ElementName=window}" Background="#FF9900" Foreground="white" Margin="10,0,0,0" Height="50" BorderBrush="#FF9900" Width="100" Click="Button_Click_1" />
</StackPanel>
</Grid>
</Border>
</Grid>
</Border>
</Window>

@ -0,0 +1,187 @@
using Admin.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Aucma.Core.Palletiz.Views
{
/// <summary>
/// DirectionItemWindow.xaml 的交互逻辑
/// </summary>
public partial class HandPalletizWindow : Window
{
private string store = "A";
private int space = 1;
/// <summary>
/// 货道分流
/// </summary>
private string spaceDirection = "左";
/// <summary>
/// 转向角度
/// </summary>
private int range = 90;
public HandPalletizWindow()
{
InitializeComponent();
}
#region 所属仓库选择
private void btn_A_Click(object sender, RoutedEventArgs e)
{
this.btn_A.Background = Brushes.Lime;
this.btn_B.Background = Brushes.DarkCyan;
store = "A";
}
private void btn_B_Click(object sender, RoutedEventArgs e)
{
this.btn_A.Background = Brushes.DarkCyan;
this.btn_B.Background = Brushes.Lime;
store = "B";
}
#endregion
#region 目的货道选择
private void btn_space1_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.Lime;
btn_space2.Background = Brushes.DarkCyan;
btn_space3.Background = Brushes.DarkCyan;
btn_space4.Background = Brushes.DarkCyan;
btn_space5.Background = Brushes.DarkCyan;
btn_space6.Background = Brushes.DarkCyan;
space = 1;
}
private void btn_space2_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.DarkCyan;
btn_space2.Background = Brushes.Lime;
btn_space3.Background = Brushes.DarkCyan;
btn_space4.Background = Brushes.DarkCyan;
btn_space5.Background = Brushes.DarkCyan;
btn_space6.Background = Brushes.DarkCyan;
space = 2;
}
private void btn_space3_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.DarkCyan;
btn_space2.Background = Brushes.DarkCyan;
btn_space3.Background = Brushes.Lime;
btn_space4.Background = Brushes.DarkCyan;
btn_space5.Background = Brushes.DarkCyan;
btn_space6.Background = Brushes.DarkCyan;
space = 3;
}
private void btn_space4_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.DarkCyan;
btn_space2.Background = Brushes.DarkCyan;
btn_space3.Background = Brushes.DarkCyan;
btn_space4.Background = Brushes.Lime;
btn_space5.Background = Brushes.DarkCyan;
btn_space6.Background = Brushes.DarkCyan;
space = 4;
}
private void btn_space5_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.DarkCyan;
btn_space2.Background = Brushes.DarkCyan;
btn_space3.Background = Brushes.DarkCyan;
btn_space4.Background = Brushes.DarkCyan;
btn_space5.Background = Brushes.Lime;
btn_space6.Background = Brushes.DarkCyan;
space = 5;
}
private void btn_space6_Click(object sender, RoutedEventArgs e)
{
btn_space1.Background = Brushes.DarkCyan;
btn_space2.Background = Brushes.DarkCyan;
btn_space3.Background = Brushes.DarkCyan;
btn_space4.Background = Brushes.DarkCyan;
btn_space5.Background = Brushes.DarkCyan;
btn_space6.Background = Brushes.Lime;
space = 6;
}
#endregion
#region 货道分流选择
private void btn_left_Click(object sender, RoutedEventArgs e)
{
btn_left.Background = Brushes.Lime;
btn_right.Background = Brushes.DarkCyan;
spaceDirection = "左";
}
private void btn_right_Click(object sender, RoutedEventArgs e)
{
btn_left.Background = Brushes.DarkCyan;
btn_right.Background = Brushes.Lime;
spaceDirection = "右";
}
#endregion
#region 转向角度设置Brushes.DarkCyan
private void btn_range90_Click(object sender, RoutedEventArgs e)
{
btn_range90.Background = Brushes.Lime;
btn_range180.Background = Brushes.DarkCyan;
btn_range270.Background = Brushes.DarkCyan;
range = 90;
}
private void btn_range180_Click(object sender, RoutedEventArgs e)
{
btn_range90.Background = Brushes.DarkCyan;
btn_range180.Background = Brushes.Lime;
btn_range270.Background = Brushes.DarkCyan;
range = 180;
}
private void btn_range270_Click(object sender, RoutedEventArgs e)
{
btn_range90.Background = Brushes.DarkCyan;
btn_range180.Background = Brushes.DarkCyan;
btn_range270.Background = Brushes.Lime;
range = 270;
}
#endregion
private void Button_Click(object sender, RoutedEventArgs e)
{
Console.WriteLine(store);
Console.WriteLine(space);
Console.WriteLine(spaceDirection);
Console.WriteLine(range);
//下发plc分垛信号
return;
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
this.window.Close();
}
}
}

@ -112,46 +112,46 @@
<TextBlock Text="产品分垛" Foreground="White" FontWeight="Bold" FontSize="30"/>
</Border>
<Border Grid.Row="0" Grid.Column="1" Background="#1157b9">
<TextBlock Text="产品条码" Foreground="White" FontSize="20"/>
<TextBlock Text="产品条码" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="1" Grid.Column="1" Background="#1157b9">
<TextBlock Text="产品型号" Foreground="White" FontSize="20"/>
<Border Grid.Row="0" Grid.Column="2">
<TextBlock Text="{Binding ProductSNCode}" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="2" Grid.Column="1" Background="#1157b9">
<TextBlock Text="订单数量" Foreground="White" FontSize="20"/>
<Border Grid.Row="0" Grid.Column="3" Background="#1157b9">
<TextBlock Text="扫描时间" Foreground="White" FontSize="20" />
</Border>
<Border Grid.Row="3" Grid.Column="1" Background="#1157b9">
<TextBlock Text="提示信息" Foreground="White" FontSize="20" />
<Border Grid.Row="0" Grid.Column="4">
<TextBlock Text="{Binding ProductScanTime}" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="0" Grid.Column="2">
<TextBlock Text="312799000093D8U0050" Foreground="White" FontSize="20"/>
<Border Grid.Row="1" Grid.Column="1" Background="#1157b9">
<TextBlock Text="产品型号" Foreground="White" FontSize="20" />
</Border>
<Border Grid.Row="1" Grid.Column="2">
<TextBlock Text="SC-279,C,特许" Foreground="White" FontSize="20"/>
<TextBlock Text="{Binding ProductModel}" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="2" Grid.Column="2">
<TextBlock Text="76" Foreground="White" FontSize="20"/>
<Border Grid.Row="1" Grid.Column="3" Background="#1157b9">
<TextBlock Text="订单编号" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="3" Grid.Column="2" Grid.ColumnSpan="3">
<TextBlock Text="获取信息成功3127991000093D8U0050 返回值 : Y.上传条码失败E,条码重复,上传条码失败E,条码重复上传" Foreground="White" FontSize="20"/>
<Border Grid.Row="1" Grid.Column="4">
<TextBlock Text="{Binding ProductOrderNo}" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="0" Grid.Column="3" Background="#1157b9">
<TextBlock Text="扫描时间" Foreground="White" FontSize="20"/>
<Border Grid.Row="2" Grid.Column="1" Background="#1157b9">
<TextBlock Text="订单数量" Foreground="White" FontSize="20" />
</Border>
<Border Grid.Row="1" Grid.Column="3" Background="#1157b9">
<TextBlock Text="订单编号" Foreground="White" FontSize="20"/>
<Border Grid.Row="2" Grid.Column="2">
<TextBlock Text="{Binding OrderQty}" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="2" Grid.Column="3" Background="#1157b9">
<TextBlock Text="订单已上传" Foreground="White" FontSize="20"/>
<TextBlock Text="订单已上传" Foreground="White" FontSize="20"/>
</Border>
<Border Grid.Row="0" Grid.Column="4">
<TextBlock Text="2023-08-29 13:10:53" Foreground="White" FontSize="20"/>
<Border Grid.Row="2" Grid.Column="4">
<TextBlock Text="{Binding ActQty}" Foreground="White"/>
</Border>
<Border Grid.Row="1" Grid.Column="4">
<TextBlock Text="000011203687" Foreground="White" FontSize="20"/>
<Border Grid.Row="3" Grid.Column="1" Background="#1157b9">
<TextBlock Text="提示信息" Foreground="White" FontSize="20" />
</Border>
<Border Grid.Row="2" Grid.Column="4">
<TextBlock Text="48" Foreground="White" FontSize="20"/>
<Border Grid.Row="3" Grid.Column="2" Grid.ColumnSpan="3">
<TextBlock Text="{Binding MsgInfo}" Foreground="{Binding MsgColor}" FontSize="20"/>
</Border>
<Border Grid.Row="0" Grid.Column="5" Background="#1157b9">
<TextBlock Text="入库数量" Foreground="White" FontSize="20"/>
@ -159,6 +159,10 @@
<Border Grid.Row="1" Grid.RowSpan="2" Grid.Column="5">
<TextBlock Text="255" Foreground="White" FontSize="40" FontWeight="Bold"/>
</Border>
<Border Grid.Row="3" Grid.RowSpan="2" Grid.Column="5">
<Button Content="手动分垛" x:Name="hand" FontSize="20" Width="150" VerticalAlignment="Center" Command="{Binding HandPalletizCommand}" />
</Border>
</Grid>
</Border>
<Border Grid.Row="1">
@ -195,7 +199,7 @@
<lvc:CartesianChart.AxisY>
<lvc:Axis FontSize="15">
<lvc:Axis.Separator>
<lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" Step="1" >
<lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>
@ -226,7 +230,7 @@
<lvc:CartesianChart.AxisY>
<lvc:Axis FontSize="15">
<lvc:Axis.Separator>
<lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" Step="1">
<lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>

@ -9,7 +9,7 @@
<UserControl.Resources>
<Style x:Key="DataGridTextColumnCenterSytle" TargetType="{x:Type TextBlock}">
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="FontSize" Value="30" />
<Setter Property="FontSize" Value="20" />
</Style>
<Style TargetType="DataGrid">
@ -68,35 +68,42 @@
<Setter Property="Background" Value="#0288d1" />
</Style>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.6*"/>
<RowDefinition Height="0.6*"/>
<RowDefinition Height="9*"/>
</Grid.RowDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="0,0,0,1" CornerRadius="0" Margin="1,1,5,5" >
<TextBlock Text="分垛库设置" FontSize="25" FontWeight="Bold" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<Border Grid.Row="1" x:Name="HeightHelperPanel" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5" Margin="5">
<StackPanel VerticalAlignment="Stretch" HorizontalAlignment="Left">
<Button Content="设置货道" Width="200" Command="{Binding AddStoreCommand}" VerticalAlignment="Stretch" HorizontalAlignment="Left" Margin="5" FontSize="18"/>
<DataGrid Grid.Row="0" ItemsSource="{Binding PlanInfoDataGrid}"
<!--<Grid Grid.Row="1">
<Button Content="设置货道" Width="200" Command="{Binding AddStoreCommand}" VerticalAlignment="Stretch" HorizontalAlignment="Left" Margin="5" FontSize="18"/>
</Grid>-->
<Border Grid.Row="2" x:Name="HeightHelperPanel" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5" Margin="5">
<Grid VerticalAlignment="Stretch" HorizontalAlignment="Left">
<DataGrid Grid.Row="0" ItemsSource="{Binding Spaces}"
ColumnHeaderHeight="35" Height="{Binding Path=ActualHeight, ElementName=ScanPanel}"
RowHeight="50" AutoGenerateColumns="False" RowHeaderWidth="0"
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Auto" BorderThickness="0" CanUserAddRows="False" SelectionMode="Single" IsReadOnly="True"
Foreground="White" >
Foreground="White" SelectedItem="{Binding SelectedDataItem}" MouseLeftButtonDown="dataGrid_MouseLeftButtonDown" >
<!--修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding No}" Header="序号" Width="0.5*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding OrderCode}" Header="SAP订单编号" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding PlanCode}" Header="产品条码" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding MaterialName}" Header="产品型号" Width="3*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding MaterialName}" Header="入库货道" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding EnterSpace}" Header="转向角度" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<!--<DataGridTextColumn Binding="{Binding No}" Header="序号" Width="0.5*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />-->
<DataGridTextColumn Binding="{Binding SpaceCode}" Header="货道编号" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding SpaceName}" Header="货道名称" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding StoreCode}" Header="仓库编号" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding MaterialType}" Header="产品编码" Width="2*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding typeNameA}" Header="产品名称" Width="3*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding RotationRange}" Header="转向角度" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding IsTwoSpace}" Header="是否大产品(占两道)" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<!--<DataGridTextColumn Binding="{Binding LastSpace}" Header="上次入货道" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>-->
</DataGrid.Columns>
</DataGrid>
</StackPanel>
</Grid>
</Border>
</Grid>

@ -1,5 +1,6 @@
using Aucma.Core.Palletiz.ViewModels;
using System.Windows.Controls;
using System.Windows.Input;
namespace Aucma.Core.Palletiz.Views
{
@ -8,10 +9,16 @@ namespace Aucma.Core.Palletiz.Views
/// </summary>
public partial class PalletizPageView : UserControl
{
PalletizPageViewModel model = new PalletizPageViewModel();
public PalletizPageView()
{
InitializeComponent();
this.DataContext = new PalletizPageViewModel();
this.DataContext = model;
}
private void dataGrid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
model.MouseClick(sender);
}
}
}

@ -0,0 +1,248 @@
<Window x:Class="Aucma.Core.Palletiz.Views.SelectType"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
mc:Ignorable="d" FontFamily="Microsoft YaHei" WindowStartupLocation="CenterScreen"
Name="window" Background="#1254AB" Height="1000" Width="1500">
<Window.Resources>
<Style TargetType="{x:Type Slider}">
<Style.Resources>
<!-- 重写重复触发按钮的样式 -->
<Style x:Key="RepeatButtonStyle" TargetType="{x:Type RepeatButton}">
<Setter Property="Focusable" Value="false" />
<Setter Property="IsTabStop" Value="false" />
<Setter Property="Padding" Value="0" />
<Setter Property="Width" Value="30" />
</Style>
</Style.Resources>
<Setter Property="Stylus.IsPressAndHoldEnabled" Value="false" />
<Setter Property="SmallChange" Value="1" />
</Style>
<Style x:Key="DataGridTextColumnCenterSytle" TargetType="{x:Type TextBlock}">
<!--<Setter Property="Height" Value="40"/>-->
<Setter Property="FontSize" Value="16"/>
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="HorizontalAlignment" Value="Left" />
</Style>
<Style TargetType="DataGrid">
<!--网格线颜色-->
<Setter Property="CanUserResizeColumns" Value="false"/>
<Setter Property="Background" Value="#1152AC" />
<Setter Property="BorderBrush" Value="#4285DE" />
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalGridLinesBrush">
<Setter.Value>
<SolidColorBrush Color="#4285DE"/>
</Setter.Value>
</Setter>
<Setter Property="VerticalGridLinesBrush">
<Setter.Value>
<SolidColorBrush Color="#1152AC"/>
</Setter.Value>
</Setter>
</Style>
<!--列头标题栏样式-->
<Style TargetType="DataGridColumnHeader">
<!--<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>-->
<!--<Setter Property="Background" Value="#dddddd"/>
<Setter Property="Foreground" Value="Black"/>-->
<!--<Setter Property="BorderThickness" Value="1" />-->
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="BorderBrush" Value="#dddddd" />
<Setter Property="Height" Value="48"/>
<Setter Property="FontSize" Value="18"/>
<Setter Property="Background" Value="#4285DE"/>
<Setter Property="Foreground" Value="White"/>
</Style>
<!--单元格样式-->
<Style TargetType="DataGridCell">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="Height" Value="40"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type DataGridCell}">
<Grid Background="{TemplateBinding Background}" >
<ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#4285DE"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Border Margin="5" Background="#1254AB" CornerRadius="1">
<Border.Effect>
<DropShadowEffect Color="Gray" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="10*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal" Grid.Column="0">
<TextBox Width="200" Height="25" Margin="10 0 0 0" Text="{Binding SearchText}" Foreground="White" VerticalAlignment="Center" FontSize="18"/>
<Button Content="查 询" Command="{Binding QueryCommand}" Background="#007DFA" BorderBrush="#007DFA" VerticalAlignment="Center" Foreground="White" Height="30" Width="100" Margin="0 0 20 0"/>
<Button Content="配 置" Command="{Binding SearchCriteriaSetCommand}" Background="#FF36B5C1" BorderBrush="#FF36B5C1" Margin="20,0,0,0" FontSize="18" Height="30" Width="100" BorderThickness="1" />
</StackPanel>
<!--快捷搜索型号-->
<Border Grid.Row="0" Grid.Column="1" BorderBrush="#0288d1" BorderThickness="0">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="6*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" VerticalAlignment="Center" Margin="10 0 0 0">
<TextBlock Text="快捷查询" VerticalAlignment="Center" Foreground="#FFFFFF" FontSize="18" />
</StackPanel>
<WrapPanel Grid.Column="1" VerticalAlignment="Center" Margin="0 5" >
<ItemsControl ItemsSource="{Binding Configurations}" Foreground="#FFFFFF">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<RadioButton
Content="{Binding}"
Command="{Binding DataContext.RadioButtonCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}"
CommandParameter="{Binding}"
GroupName="MaterialTypeRadioButton"
Margin="25,0" FontSize="18" Foreground="#FFFFFF"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</WrapPanel>
</Grid>
</Border>
<!--计划列表-->
<Border Grid.Row="1" Grid.Column="0" BorderThickness="0" CornerRadius="5" Margin="1,1,5,5" >
<DataGrid ItemsSource="{Binding MaterialDataGrid}" Height="{Binding Path=ActualHeight, ElementName=HeightPanel}"
HorizontalAlignment="Left" VerticalAlignment="Top" AlternationCount="2" RowHeaderWidth="0"
ColumnWidth="*" AutoGenerateColumns="False" IsReadOnly="True" CanUserAddRows="False" SelectionMode="Single"
SelectedItem="{Binding SelectedDataItem}" SelectionChanged="DataGrid_SelectionChanged">
<!--resourceStyle 399行修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding MaterialCode}" Width="*" Header="产品编码" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding MaterialName}" Width="2*" Header="产品名称" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
</DataGrid.Columns>
</DataGrid>
</Border>
<Border Grid.Row="1" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="3" CornerRadius="5" Background="Transparent" Margin="5,5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" Direction="270" BlurRadius="10" ShadowDepth="5" Opacity="0.5"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="货道编号:" FontSize="20" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
<TextBox x:Name="MaterialCode1" Text="{Binding SpaceInfo.SpaceCode}" Foreground="white" BorderBrush="White" IsReadOnly="True" Margin="15 0 20 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" Width="180"/>
<TextBlock Text="货道名称:" FontSize="20" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
<TextBox x:Name="MaterialCode2" Text="{Binding SpaceInfo.SpaceName}" Foreground="white" BorderBrush="White" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" Width="180"/>
</StackPanel>
<StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="产品编码:" FontSize="18" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
<TextBox x:Name="MaterialCode" Text="{Binding PlanInfo.MaterialCode}" Foreground="white" BorderBrush="White" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" Width="150"/>
</StackPanel>
<StackPanel Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center" Margin="50,0,0,0">
<TextBlock Text="产品型号:" FontSize="18" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<TextBox x:Name="MaterialName" Text="{Binding PlanInfo.MaterialName}" Foreground="white" BorderBrush="White" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" Width="500"/>
</StackPanel>
<StackPanel Grid.Row="3" Orientation="Horizontal" VerticalAlignment="Center" Margin="60,0,0,0" >
<!--单选框样式-->
<StackPanel.Resources>
<Style TargetType="RadioButton">
<Setter Property="Foreground" Value="White"/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="Background" Value="White"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="RadioButton">
<BulletDecorator Background="Transparent">
<BulletDecorator.Bullet>
<Grid Width="20" Height="20">
<Ellipse x:Name="BulletRadio" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="1"/>
</Grid>
</BulletDecorator.Bullet>
<ContentPresenter Margin="4,0,0,0" VerticalAlignment="Center" RecognizesAccessKey="True"/>
</BulletDecorator>
<ControlTemplate.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter TargetName="BulletRadio" Property="Fill" Value="Green"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter Property="Background" Value="Green"/>
</Trigger>
</Style.Triggers>
</Style>
</StackPanel.Resources>
<TextBlock Text="是否占两道: " FontSize="18" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
<RadioButton Content="是" GroupName="Direction" IsChecked="{Binding IsSelectedOptionA, Mode=TwoWay}" Foreground="white" BorderBrush="White" Margin="15 0 0 0 " FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" />
<RadioButton Content="否" GroupName="Direction" IsChecked="{Binding IsSelectedOptionB, Mode=TwoWay}" Foreground="white" BorderBrush="White" Margin="15 0 50 0 " FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" />
<TextBlock Text="转向角度:" FontSize="18" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="20"/>
<ComboBox x:Name="rotationComboBox" FontSize="20" SelectedItem="{Binding SelectedRotation}" Width="100" Height="40">
<ComboBox.Resources>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Foreground" Value="CadetBlue"/>
<Setter Property="Background" Value="CadetBlue"/>
</Style>
</ComboBox.Resources>
<ComboBoxItem Content="0" />
<ComboBoxItem Content="90" />
<ComboBoxItem Content="180" />
<ComboBoxItem Content="270" />
</ComboBox>
</StackPanel>
<StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Content="清除型号" FontSize="23" Command="{Binding deleteCommand}" Background="#FF9900" Foreground="white" BorderBrush="#FF9900" Margin="0,0,10,0" VerticalAlignment="Center" Height="70" Width="130" />
<Button Content="保 存" FontSize="23" Command="{Binding SaveCommand}" Background="#FF36B5C1" BorderBrush="#FF36B5C1" Foreground="white" Margin="20,0,10,0" Height="70" Width="130" />
</StackPanel>
</Grid>
</Border>
</Grid>
</Border>
</Window>

@ -0,0 +1,48 @@
using Admin.Core.Model;
using Aucma.Core.Palletiz.ViewModels;
using CommunityToolkit.Mvvm.Messaging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Aucma.Core.Palletiz.Views
{
/// <summary>
/// SelectType.xaml 的交互逻辑
/// </summary>
public partial class SelectType : Window
{
private SelectTypeViewModel viewModel = null;
public SelectType(BaseSpaceInfo space)
{
InitializeComponent();
viewModel = new SelectTypeViewModel(space);
this.DataContext = viewModel;
viewModel.closeEvent += closeWindow;
WeakReferenceMessenger.Default.Register<object>(this, Recive);
}
private void Recive(object recipient, object message)
{
this.Close();
}
private void DataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
viewModel.MouseClick(sender);
}
private void closeWindow()
{
this.Close();
}
}
}

@ -82,7 +82,7 @@
"Enabled": true,
"HitRate": 50,
//"Connection": "Data Source=localhost;Initial Catalog=Hsdb;User ID=sa;Password=sa;Integrated Security=false;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
"Connection": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=175.27.215.92)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=helowin)));User ID=aucma_scada;Password=aucma;",
"Connection": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=10.100.72.20)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=ORCLCDB)));User ID=C##aucma_scada;Password=aucma;",
"ProviderName": "System.Data.SqlClient"
},
{
@ -90,7 +90,7 @@
"DBType": 3,
"Enabled": true,
"HitRate": 40,
"Connection": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=175.27.215.92)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=helowin)));User ID=aucma_mes;Password=aucma;",
"Connection": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=10.100.72.20)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=ORCLCDB)));User ID=c##aucma_mes;Password=aucma;",
"ProviderName": "System.Data.SqlClient"
}
],
@ -172,27 +172,62 @@
},
"Scanner": { //
"Enabled": true
},
"Scanner1": { //1
}
},
"ScannerServer": [
{
"Id": 1,
"Ip": "192.168.1.19",
"Name": "扫码器1"
"Name": "A库扫码器1"
},
"Scanner2": { //2
{
"Id": 2,
"Ip": "192.168.1.20",
"Name": "扫码器2"
"Name": "A库扫码器2"
},
"ScannerGun": { //
"Enabled": false
{
"Id": 3,
"Ip": "192.168.1.21",
"Name": "B库扫码器1"
},
{
"Id": 4,
"Ip": "192.168.1.22",
"Name": "B库扫码器2"
},
{
"Id": 5,
"Ip": "192.168.1.23",
"Name": "B库扫码器3"
}
},
],
"PLCServer": [
{
"Id": 1,
"EquipName": "分垛库Plc",
"EquipName": "A库Plc",
"PlcType": "Melsec",
"Enabled": true,
"IP": "127.0.0.1",
"Port": 6000
},
{
"Id": 2,
"EquipName": "B库Plc",
"PlcType": "Melsec",
"Enabled": true,
"IP": "127.0.0.1",
"Port": 6001
}
],
"StoreInfo": {
"ShellInventoryStoreCode": "XKK-001",
"LinerInventory": "NDK-001",
"AfterStoreCode": "PHK-001",
"BeforeStoreCode": "PQK-001",
"PalletizStoreCodeA": "FDK-001",
"PalletizStoreCodeB": "FDK-002",
"ProductlineCode": "CX_02"
},
"IpRateLimiting": {
"EnableEndpointRateLimiting": false, //False: globally executed, true: executed for each
"StackBlockedRequests": false, //False: Number of rejections should be recorded on another counter

@ -6,6 +6,7 @@ using Admin.Core.Service;
using Aucma.Core.HwPLc;
using Aucma.Core.ProductOffLine;
using Aucma.Core.ProductOffLine.Models;
using Aucma.Core.Scanner;
using log4net;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
@ -46,6 +47,8 @@ namespace Aucma.Core.ProductOffLine.Business
#endregion
// public OffLineBusiness(){}
#region 变量定义
private readonly List<ScannerModel> allScanners = Appsettings.app<ScannerModel>("ScannerServer").ToList();
/// <summary>
/// 扫码器1扫到条码的临时数据
/// </summary>
@ -72,7 +75,8 @@ namespace Aucma.Core.ProductOffLine.Business
private readonly IMaterialCompletionServices? _iMaterialCompletionServices = App.ServiceProvider.GetService<IMaterialCompletionServices>();
private readonly ICodeBindingRecordServices? _codeBindingServices = App.ServiceProvider.GetService<ICodeBindingRecordServices>();
// 质检记录
private readonly IReportQualityInspectionServices? _reportQualityInspectionServices = App.ServiceProvider.GetService<IReportQualityInspectionServices>();
#endregion
#region 委托事件
@ -104,18 +108,23 @@ namespace Aucma.Core.ProductOffLine.Business
public void test()
{
// string result = await _productOffLineServices.QueryChecked("1531000AP0098DCU0481");
// Console.WriteLine(result);
// string tt = "Y@1104@16160030000000910780@000010034895@@ @000000@000000009000004899@BCD-160C,家电下乡@@BCD-160C@皓月白-家电下乡@161601300@160@1-00版@家电下乡产品@默认@2010-09-01";
Task.Run(() =>
{
Thread.Sleep(6000);
MaterialBarScan("32160030000000910780", "192.168.1.19");
// Thread.Sleep(1000);
// MaterialBarScanEvent("33160030000000910780", "192.168.1.20");
});
//Task.Run(() =>
//{
// while(true)
// {
// Thread.Sleep(50000);
// Random random = new Random();
// MaterialBarScan("32160030000000912"+random.Next(100,999), "192.168.1.19");
// }
// // Thread.Sleep(1000);
// // MaterialBarScanEvent("33160030000000910780", "192.168.1.20");
//});
}
/// <summary>
@ -125,55 +134,58 @@ namespace Aucma.Core.ProductOffLine.Business
/// <param name="scannerIp">扫码器IP</param>
public void MaterialBarScan(string code,string scannerIp)
{
int ScannerNo = scannerIp == Appsettings.app("Middleware", "Scanner1", "Ip") ? 1 : 2; // 确定是哪个扫码器
log.Info("扫码器ip:" + scannerIp +"编号:["+ScannerNo+ "]扫描到条码:" + code);
try
{
ScannerModel model = allScanners.FirstOrDefault(x => x.Ip == scannerIp);
int ScannerNo = model.Id; // 确定是哪个扫码器
log.Info("扫码器ip:" + scannerIp + "编号:[" + ScannerNo + "]扫描到条码:" + code);
string materialType = "";
bool BackResult = false;
if (ScannerNo == 1)
{
//1.扫描的SN条码去条码系统校验
BackResult = HandleMaterialBarCode(code.Trim(), TempOffLineInfo1); //扫码器1
materialType = TempOffLineInfo1.ProductCode;
BackResult = HandleMaterialBarCode(code.Trim(), TempOffLineInfo1); //扫码器1
materialType = TempOffLineInfo1.ProductCode;
if (!BackResult)
{
return;
}
// 2.更新mes数据库
BackResult = updateMesData(TempOffLineInfo1);
BackResult = updateMesData(TempOffLineInfo1);
// 3.plc放行
if (BackResult)
{
bool plcResult =SendAndWaitSignal(ScannerNo, materialType);
if (plcResult)
{
TempOffLineInfo1.MsgInfo = TempOffLineInfo1.MsgInfo + "plc放行成功";
//界面刷新
TempOffLineInfo1.ProductRefreshFlag = true;
}
else
{
TempOffLineInfo1.MsgInfo = TempOffLineInfo1.MsgInfo + "plc放行异常";
TempOffLineInfo1.MsgAlarmFlag = true;
//界面刷新
TempOffLineInfo1.ProductRefreshFlag = true;
}
log.Info(String.Format("订单号{0} 订单数量{1}", TempOffLineInfo1.ProductOrderNo, TempOffLineInfo1.OrderQty));
bool plcResult = SendAndWaitSignal(ScannerNo, materialType);
if (plcResult)
{
TempOffLineInfo1.MsgInfo = TempOffLineInfo1.MsgInfo + "plc放行成功";
//界面刷新
TempOffLineInfo1.ProductRefreshFlag = true;
}
else
{
TempOffLineInfo1.MsgInfo = TempOffLineInfo1.MsgInfo + "plc放行异常";
TempOffLineInfo1.MsgAlarmFlag = true;
//界面刷新
TempOffLineInfo1.ProductRefreshFlag = true;
}
log.Info(String.Format("订单号{0} 订单数量{1}", TempOffLineInfo1.ProductOrderNo, TempOffLineInfo1.OrderQty));
}
}
// 扫码器2
else if (ScannerNo == 2)
{
BackResult = HandleMaterialBarCode(code.Trim(), TempOffLineInfo2); //扫码器2
BackResult = HandleMaterialBarCode(code.Trim(), TempOffLineInfo2); //扫码器2
materialType = TempOffLineInfo2.ProductCode;
if (!BackResult)
{
return;
}
// 2.更新mes数据库
BackResult = updateMesData(TempOffLineInfo2);
BackResult = updateMesData(TempOffLineInfo2);
// 3.plc放行
if (BackResult)
{
@ -181,7 +193,7 @@ namespace Aucma.Core.ProductOffLine.Business
if (plcResult)
{
TempOffLineInfo2.MsgInfo = TempOffLineInfo2.MsgInfo + "plc放行成功";
//界面刷新
TempOffLineInfo2.ProductRefreshFlag = true;
}
@ -194,8 +206,14 @@ namespace Aucma.Core.ProductOffLine.Business
}
log.Info(String.Format("订单号{0} 订单数量{1}", TempOffLineInfo2.ProductOrderNo, TempOffLineInfo2.OrderQty));
}
}
}
catch (Exception ex)
{
log.Error(ex.Message.ToString());
}
}
/// <summary>
@ -290,7 +308,25 @@ namespace Aucma.Core.ProductOffLine.Business
{
try
{
// 1.质检
List<ReportQualityInsPection> qualityList = _reportQualityInspectionServices.JudgeIsQualified(BarCode);
if(qualityList != null)
{
TempOffLineInfo.QualityResult = "失败";
TempOffLineInfo.ProductSNCode = BarCode.Trim(); //产品SN条码*1
TempOffLineInfo.ProductScanTime = System.DateTime.Now; // 扫码时间*2
TempOffLineInfo.MsgInfo = "条码质检失败:";
foreach(ReportQualityInsPection item in qualityList)
{
TempOffLineInfo.MsgInfo += item.QualityDefectName;
}
TempOffLineInfo.MsgAlarmFlag = true;
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
return false;
}
TempOffLineInfo.QualityResult = "成功";
TempOffLineInfo.ProductSNCode = BarCode.Trim(); //产品SN条码*1
@ -330,14 +366,17 @@ namespace Aucma.Core.ProductOffLine.Business
#endregion
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
// 多码系统校验,是否需要待定,现场看情况
// 多码系统校验,暂不启用
// bool flag = TestBarCode(TempOffLineInfo);
// if (!flag)
// {
// return false;
// }
log.Info(TempOffLineInfo.ProductSNCode + ", 多码验证通过!");
//2.上传条码系统
return uploadSnSysytem(TempOffLineInfo);
}
else
{
log.Info(BarCode + "失败返回验证信息:" + FArrayList[1]);
@ -370,18 +409,33 @@ namespace Aucma.Core.ProductOffLine.Business
TempOffLineInfo.ProductRefreshFlag = true;
return false;
}
}
catch (Exception ex)
{
TempOffLineInfo.MsgInfo = "获取产品条码异常:" + ex.Message;
TempOffLineInfo.MsgAlarmFlag = true;
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
log.Info(BarCode + "条码验证异常:" + ex.Message.ToString());
return false;
}
}
//2.上传条码系统
public bool uploadSnSysytem(TempInfo TempOffLineInfo)
{
try
{
if (!string.IsNullOrEmpty(TempOffLineInfo.ProductOrderNo))
{
// 条码系统保存接口
string strSave = _productOffLineServices.SaveBarcodeInfo(BarCode.Trim(), "ILS_SORT", TempOffLineInfo.ProductOrderNo, 1);
// string strSave = "Y";
// 条码系统保存接口
string strSave = _productOffLineServices.SaveBarcodeInfo(TempOffLineInfo.ProductSNCode, "ILS_SORT", TempOffLineInfo.ProductOrderNo, 1);
// string strSave = "Y";
if (!string.IsNullOrEmpty(strSave))
{
if (strSave == "Y")
{
log.Info(BarCode + "上传条码成功:" + strSave);
log.Info(TempOffLineInfo.ProductSNCode + "上传条码成功:" + strSave);
TempOffLineInfo.MsgInfo = TempOffLineInfo.MsgInfo + ",上传条码成功";
// mes查询订单数据, 异常处理后期可能根据SN码查箱体码查订单号并检查更新订单数据
@ -402,22 +456,22 @@ namespace Aucma.Core.ProductOffLine.Business
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
return true;
}
else
{
log.Info(BarCode + "上传条码失败:" + strSave);
log.Info(TempOffLineInfo.ProductSNCode + "上传条码失败:" + strSave);
TempOffLineInfo.MsgInfo = TempOffLineInfo.MsgInfo + ",上传条码失败" + strSave;
if (strSave.Contains("条码重复"))
{
// 查询本地数据库是否有数据
OffLineInfo offLineInfo = _offLineInfoServices.FirstAsync(x => x.ProductSNCode == BarCode).Result;
OffLineInfo offLineInfo = _offLineInfoServices.FirstAsync(x => x.ProductSNCode == TempOffLineInfo.ProductSNCode).Result;
if (offLineInfo != null)
{
log.Info(BarCode + "条码重复,本地已存在,放行");
log.Info(TempOffLineInfo.ProductSNCode + "条码重复,本地已存在,放行");
TempOffLineInfo.MsgInfo = TempOffLineInfo.MsgInfo + "条码重复,本地已存在,放行";
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
@ -430,7 +484,7 @@ namespace Aucma.Core.ProductOffLine.Business
}
else
{
log.Info(BarCode + "条码重复,本地不存在,已插入,放行");
log.Info(TempOffLineInfo.ProductSNCode + "条码重复,本地不存在,已插入,放行");
OffLineInfo info11 = MapperTwo(TempOffLineInfo);
_offLineInfoServices.AddAsync(info11);
return true;
@ -461,17 +515,12 @@ namespace Aucma.Core.ProductOffLine.Business
return false;
}
}
catch (Exception ex)
{
TempOffLineInfo.MsgInfo = "获取产品条码异常:" + ex.Message;
TempOffLineInfo.MsgAlarmFlag = true;
//界面刷新
TempOffLineInfo.ProductRefreshFlag = true;
log.Info(BarCode + "条码验证异常:" + ex.Message.ToString());
return false;
catch (Exception ex)
{
log.Error(ex.Message.ToString());
return false;
}
}
}
#region plc交互
/// <summary>
/// 下发plc放行信号,传进来扫码器编号分垛方向A或者B,返回plc反馈结果
@ -504,7 +553,7 @@ namespace Aucma.Core.ProductOffLine.Business
// 往plc写入放行信号
obj.plc.WriteInt32("D202", 1);
}
DateTime targetTime = DateTime.Now.AddSeconds(5);
DateTime targetTime = DateTime.Now.AddSeconds(8);
// 等待plc反馈信号
while (true)
{

@ -279,6 +279,7 @@ namespace Aucma.Core.ProductOffLine.ViewModels
timer.AutoReset = true;
timer.Enabled = true;
timer.Start();
}
/// <summary>
/// 定时检测两个扫码实体是否需要刷新
@ -293,6 +294,10 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{
OffLineBusiness.TempOffLineInfo1.ProductRefreshFlag = false;
ModelToPage(OffLineBusiness.TempOffLineInfo1);
LoadData();
}
else if(OffLineBusiness.TempOffLineInfo2.ProductRefreshFlag == true)
@ -330,108 +335,154 @@ namespace Aucma.Core.ProductOffLine.ViewModels
private async void InitEveryDayMethod()
{
await App.Current.Dispatcher.BeginInvoke((Action)(() =>
{
#region 小时产量统计
List<WorkTime> listTime = _baseBomInfoServices.getWorkTime().Result;
if (listTime == null) return;
// var aa =_offLineInfoServices.Query(x=>x.ProductScanTime>= listTime[0].startTime && x.ProductScanTime<= listTime[11].startTime)
// List<dynamic> hourAmount = _offLineInfoServices.QueryCharts1("CX_01");
List<Admin.Core.Model.ViewModels.ChartsByTime> list = _offLineInfoServices.QueryCharts(listTime[0].startTime, listTime[11].startTime).Result;
if (list == null) return;
List<ChartsByTimeAmount> hourList1 = new List<ChartsByTimeAmount>();
// 当班下线数量
int sum = 0;
foreach(ChartsByTime item in list)
{
DateTime date = DateTime.ParseExact(item.date + ":00:00", "yyyy-MM-dd/HH:mm:ss", CultureInfo.InvariantCulture);
ChartsByTimeAmount hour = new ChartsByTimeAmount();
hour.ProductCode = item.productLineCode;
hour.ProductDate = date;
hour.ProductAmount = item.Amount;
sum += item.Amount;
hourList1.Add(hour);
}
// 当班下线数量页面赋值
OffLineQty = sum.ToString();
if (hourList1 == null) return;
var hourList = hourList1.Where(x => x.ProductCode.Equals("CX_02") && x.ProductDate>= listTime[0].startTime && x.ProductDate <= listTime[11].startTime);
List<string> xList = new List<string>();
ChartValues<int> achievement2 = new ChartValues<int>();
foreach (var item in hourList)
{
xList.Add(item.ProductDate.Hour.ToString()+":00");
achievement2.Add(item.ProductAmount);
}
var column2 = new ColumnSeries();
column2.DataLabels = true;
column2.Title = "产量";
column2.Values = achievement2;
column2.Foreground = Brushes.White;
// Achievement.Clear();
//Achievement.Add(column2);
if (Achievement.Count > 0)
{
for (int i = 0; i < hourList.Count(); i++)
{
Achievement.FirstOrDefault().Values[i] = hourList.ElementAt(i).ProductAmount;
}
}
else
{
Achievement.Add(column2);
}
ProductionHourList = xList;
#endregion
#region 型号统计
List<string> nameList = new List<string>();
ChartValues<int> achievement = new ChartValues<int>();
var column = new ColumnSeries();
List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x=>x.ProductScanTime>= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime).Result;
var modelList = offList.GroupBy(x=>x.ProductRemark);
foreach(var item in modelList)
{
achievement.Add(item.Count());
nameList.Add(item.Key);
}
column.DataLabels = true;
column.Title = "型号";
column.Values = achievement;
column.Foreground = Brushes.White;
// x轴
MaterialNameList = null;
MaterialNameList = nameList;
// y轴
if (ModelStatistics.Count > 0)
{
for (int i = 0; i < modelList.Count(); i++)
{
Achievement.FirstOrDefault().Values[i] = modelList.ElementAt(i).Count();
}
}
else
{
ModelStatistics.Add(column);
}
}));
#endregion
await App.Current.Dispatcher.BeginInvoke((Action)(() =>
{
ProductionHourList = new List<string>();
OffLineQty = "232";
for (int i = 8; i <= 19; i++)
{
ProductionHourList.Add(i + ":00");
}
ChartValues<int> achievement2 = new ChartValues<int>();
achievement2.Add(74);
achievement2.Add(77);
achievement2.Add(75);
achievement2.Add(6);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
achievement2.Add(0);
var column2 = new ColumnSeries();
column2.DataLabels = true;
column2.Title = "产量";
column2.Values = achievement2;
column2.Foreground = Brushes.White;
Achievement.Add(column2);
MaterialNameList.Add("BCD-162CST,炫金色,A");
MaterialNameList.Add("BCD-212CHG,炫金色,A");
MaterialNameList.Add("BCD-211CGN,星际灰,A");
MaterialNameList.Add("BC/BD-310NF,银河灰,A");
MaterialNameList.Add("BC/BD-232WD,银河灰,A");
MaterialNameList.Add("BC/BD-145NF,炫金色,ZS,A");
ChartValues<int> achievement = new ChartValues<int>();
achievement.Add(41);
achievement.Add(37);
achievement.Add(37);
achievement.Add(47);
achievement.Add(39);
achievement.Add(19);
var column = new ColumnSeries();
column.DataLabels = true;
column.Title = "型号";
column.Values = achievement;
column.Foreground = Brushes.White;
ModelStatistics.Add(column);
#region 小时产量统计
// List<WorkTime> listTime = _baseBomInfoServices.getWorkTime().Result;
// if (listTime == null) return;
// // var aa =_offLineInfoServices.Query(x=>x.ProductScanTime>= listTime[0].startTime && x.ProductScanTime<= listTime[11].startTime)
// // List<dynamic> hourAmount = _offLineInfoServices.QueryCharts1("CX_01");
// List<Admin.Core.Model.ViewModels.ChartsByTime> list = _offLineInfoServices.QueryCharts(listTime[0].startTime, listTime[11].startTime).Result;
// if (list == null) return;
// List<ChartsByTimeAmount> hourList1 = new List<ChartsByTimeAmount>();
// // 当班下线数量
// int sum = 0;
// foreach(ChartsByTime item in list)
// {
// DateTime date = DateTime.ParseExact(item.date + ":00:00", "yyyy-MM-dd/HH:mm:ss", CultureInfo.InvariantCulture);
// ChartsByTimeAmount hour = new ChartsByTimeAmount();
// hour.ProductCode = item.productLineCode;
// hour.ProductDate = date;
// hour.ProductAmount = item.Amount;
// sum += item.Amount;
// hourList1.Add(hour);
// }
// // 当班下线数量页面赋值
// OffLineQty = sum.ToString();
// if (hourList1 == null) return;
// var hourList = hourList1.Where(x => x.ProductCode.Equals("CX_02") && x.ProductDate>= listTime[0].startTime && x.ProductDate <= listTime[11].startTime);
// List<string> xList = new List<string>();
// ChartValues<int> achievement2 = new ChartValues<int>();
// foreach (var item in hourList)
// {
// xList.Add(item.ProductDate.Hour.ToString()+":00");
// achievement2.Add(item.ProductAmount);
// }
// var column2 = new ColumnSeries();
// column2.DataLabels = true;
// column2.Title = "产量";
// column2.Values = achievement2;
// column2.Foreground = Brushes.White;
//// Achievement.Clear();
// //Achievement.Add(column2);
// if (Achievement.Count > 0)
// {
// for (int i = 0; i < hourList.Count(); i++)
// {
// Achievement.FirstOrDefault().Values[i] = hourList.ElementAt(i).ProductAmount;
// }
// }
// else
// {
// Achievement.Add(column2);
// }
// ProductionHourList = xList;
#endregion
// #region 型号统计
// List<string> nameList = new List<string>();
// ChartValues<int> achievement = new ChartValues<int>();
// var column = new ColumnSeries();
// List<OffLineInfo> offList = _offLineInfoServices.QueryAsync(x=>x.ProductScanTime>= listTime[0].startTime && x.ProductScanTime <= listTime[11].startTime).Result;
// var modelList = offList.GroupBy(x=>x.ProductRemark);
// foreach(var item in modelList)
// {
// achievement.Add(item.Count());
// nameList.Add(item.Key);
// }
// column.DataLabels = true;
// column.Title = "型号";
// column.Values = achievement;
// column.Foreground = Brushes.White;
// // x轴
// MaterialNameList = null;
// MaterialNameList = nameList;
// // y轴
// if (ModelStatistics.Count > 0)
// {
// for (int i = 0; i < modelList.Count(); i++)
// {
// Achievement.FirstOrDefault().Values[i] = modelList.ElementAt(i).Count();
// }
// }
// else
// {
// ModelStatistics.Add(column);
// }
}));
//#endregion
}
//private async void InitEveryDayMethod()
//{
@ -479,20 +530,24 @@ namespace Aucma.Core.ProductOffLine.ViewModels
// "SC-439VAM,元气森林,C",
// };
//}
public async void LoadData()
public void LoadData()
{
List<OffLineInfo> list = await _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= System.DateTime.Now.AddDays(-1), "PRODUCT_SCANTIME desc");
if (list != null)
OffLineInfo record = _offLineInfoServices.FirstAsync().Result;
Application.Current.Dispatcher.Invoke(() =>
{
foreach (OffLineInfo record in list)
ListItems.Insert(0, new TempInfo()
{
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Add(new TempInfo() { No = ListItems.Count + 1, ProductOrderNo = record.ProductOrderNo, ProductSNCode = record.ProductSNCode, ProductModel = record.ProductModel, ProductRemark = record.ProductRemark, QualityResult = "成功", ProductScanTime = record.ProductScanTime });
});
}
}
No = ListItems.Count + 1,
ProductOrderNo = record.ProductOrderNo,
ProductSNCode = record.ProductSNCode.Substring(0, record.ProductSNCode.Length - 3) + new Random().Next(100, 1000).ToString(),
ProductModel = record.ProductModel,
ProductRemark = record.ProductRemark,
QualityResult = "成功",
ProductScanTime = DateTime.Now
});
});
}

@ -34,7 +34,13 @@ namespace Aucma.Core.ProductOffLine.ViewModels
timer.Tick += Timer_Tick;
timer.Start();
Job_AllState_Quartz.RefreshStateEvent += RefreshStatus;
MesDbState(true);
PlcState(true);
Scanner1State(true);
Scanner2State(true);
// Job_AllState_Quartz.RefreshStateEvent += RefreshStatus;
}

@ -29,17 +29,20 @@ namespace Aucma.Core.ProductOffLine.ViewModels
List<MaterialComplateInfo> materialComplateInfos = new List<MaterialComplateInfo>();
#region 加载DataGrid数据
private async void LoadData()
private void LoadData()
{
List<OffLineInfo> list = await _offLineInfoServices.QueryAsync(x => x.ProductScanTime >= System.DateTime.Now.AddDays(-1), "PRODUCT_SCANTIME desc");
Application.Current.Dispatcher.Invoke(() =>
{
List<OffLineInfo> list = _offLineInfoServices.QueryAsync().Result
.OrderByDescending(x => x.ProductScanTime)
.ToList();
if (list != null)
{
foreach (OffLineInfo record in list)
{
Application.Current.Dispatcher.Invoke(() =>
{
ListItems.Add(new TempInfo() { No = ListItems.Count + 1, ProductOrderNo = record.ProductOrderNo, ProductSNCode = record.ProductSNCode, ProductModel = record.ProductModel, ProductRemark = record.ProductRemark, ProductScanTime = record.ProductScanTime });
});
}
var countByProductModel = list.GroupBy(x => x.ProductModel).Select(group => new
@ -51,14 +54,13 @@ namespace Aucma.Core.ProductOffLine.ViewModels
}).ToList();
foreach (var item in countByProductModel)
{
Application.Current.Dispatcher.Invoke(() =>
{
TotalItem.Add(new TempInfo() { No = TotalItem.Count + 1,ProductCode = item.ProductCode, ProductModel = item.ProductModel,ProductRemark = item.ProductRemark, Count = item.Count });
});
}
}
});
}
#endregion

@ -249,7 +249,7 @@
<lvc:CartesianChart.AxisX>
<lvc:Axis Labels="{Binding ProductionHourList}" FontSize="15">
<lvc:Axis.Separator>
<lvc:Separator Visibility="Hidden" StrokeThickness="1.5" StrokeDashArray="0" Stroke="#404F56" >
<lvc:Separator Step="1" Visibility="Hidden" StrokeThickness="1.5" StrokeDashArray="0" Stroke="#404F56" >
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>
@ -257,7 +257,7 @@
<lvc:CartesianChart.AxisY>
<lvc:Axis FontSize="15" MinValue="0" >
<lvc:Axis.Separator>
<lvc:Separator Step="1" Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
<lvc:Separator Step="10" Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>
@ -289,7 +289,7 @@
<lvc:CartesianChart.AxisY>
<lvc:Axis FontSize="15" MinValue="0">
<lvc:Axis.Separator>
<lvc:Separator Step="1" Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
<lvc:Separator Step="10" Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3" Stroke="#404F56" >
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>

@ -118,7 +118,7 @@
"TriggerType": 1,
"IntervalSecond": 5,
"CycleRunTimes": 1,
"IsStart": true,
"IsStart": false,
"JobParams": null,
"DelFlag": false,
"CreateBy": "admin",
@ -201,18 +201,22 @@
"Scanner": { //
"Enabled": true
},
"Scanner1": { //1
"ScannerGun": { //
"Enabled": false
}
},
"ScannerServer": [
{
"Id": 1,
"Ip": "192.168.1.19",
"Name": "扫码器1"
},
"Scanner2": { //2
{
"Id": 2,
"Ip": "192.168.1.20",
"Name": "扫码器2"
},
"ScannerGun": { //
"Enabled": false
}
},
],
"PLCServer": [
{
"Id": 1,

@ -12,6 +12,7 @@
<ItemGroup>
<ProjectReference Include="..\Admin.Core.Common\Admin.Core.Common.csproj" />
<ProjectReference Include="..\Aucma.Core.PLc\Aucma.Core.PLc.csproj" />
</ItemGroup>
<ItemGroup>

@ -1,5 +1,5 @@
using Admin.Core.Common;
using Aucma.Core.PLc;
using log4net;
using MvCodeReaderSDKNet;
using NPOI.SS.Formula.Functions;
@ -29,20 +29,15 @@ namespace Aucma.Core.Scanner
#endregion
#region 委托事件
#region 条码绑定上位机委托事件
/// <summary>
/// code1扫码信息刷新
/// </summary>
/// <param name="Code1"></param>
public delegate void ReceiveCode1(string code1);
public static event ReceiveCode1? ReceiveCode1Event;
/// <summary>
/// code2扫码信息刷新,记录表更新
/// </summary>
/// <param name="Code1"></param>
public delegate void ReceiveCode2(string code2);
public static event ReceiveCode2? ReceiveCode2Event;
public delegate void BindingReceiveCode(string code,string ip);
public static event BindingReceiveCode? BindingReceiveCodeEvent;
#endregion
#region 成品下线上位机委托事件
@ -50,14 +45,23 @@ namespace Aucma.Core.Scanner
/// code扫码信息刷新
/// </summary>
/// <param name="Code1"></param>
public delegate void ReceiveCode(string code, int scannerNo);
public delegate void ReceiveCode(string code, string ip);
public static event ReceiveCode? ReceiveCodeEvent;
public static bool m_bGrabbing = true;
#endregion
/// <summary>
/// 泡前库扫码
/// </summary>
/// <param name="Code1"></param>
public delegate Task PQKReceiveCode(string code1);
public static event PQKReceiveCode? PQKReceiveCodeEvent;
#endregion
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(MvCodeHelper));
// 获取到的所有设备
public static MvCodeReader.MV_CODEREADER_DEVICE_INFO_LIST m_stDeviceList = new MvCodeReader.MV_CODEREADER_DEVICE_INFO_LIST();
@ -65,6 +69,7 @@ namespace Aucma.Core.Scanner
// (成功创建)连接上的设备和其ip(string)集合
public static Dictionary<MvCodeReader, string> m_cMyDevices = new Dictionary<MvCodeReader, string>();
private static string lastCodeStr = string.Empty;
#region 设备连接状态
/// <summary>
@ -98,7 +103,11 @@ namespace Aucma.Core.Scanner
{
try
{
// log.Info("获取扫码器设备列表,进入DeviceListAcq()方法");
List<ScannerModel> allScanners = Appsettings.app<ScannerModel>("ScannerServer").ToList();
if (allScanners == null || allScanners.Count == 0) return;
// log.Info("获取扫码器设备列表,进入DeviceListAcq()方法");
System.GC.Collect();
m_stDeviceList.nDeviceNum = 0;
// 获取设备列表
@ -128,8 +137,12 @@ namespace Aucma.Core.Scanner
// 获取ip
string ip = ((stGigEDeviceInfo.nCurrentIp & 0xff000000) >> 24) + "." + ((stGigEDeviceInfo.nCurrentIp & 0x00ff0000) >> 16) + "." + ((stGigEDeviceInfo.nCurrentIp & 0x0000ff00) >> 8) + "." + (stGigEDeviceInfo.nCurrentIp & 0x000000ff);
// Console.WriteLine($"打印扫码设备信息,下标:{i}IP{ip}");
// log.Info("扫码器设备[" + i + "],ip:" + ip);
ScannerModel model = allScanners.FirstOrDefault(x => x.Ip == ip);
if(model==null)
{
// 如果没有在配置文件配置该相机,不连接它,避免占用其他上位机相机
continue;
}
// 创建第i个设备
stDevInfo = (MvCodeReader.MV_CODEREADER_DEVICE_INFO)Marshal.PtrToStructure(m_stDeviceList.pDeviceInfo[i], typeof(MvCodeReader.MV_CODEREADER_DEVICE_INFO));
nRet = m_cMyDevice.MV_CODEREADER_CreateHandle_NET(ref stDevInfo);//创建设备
@ -154,43 +167,12 @@ namespace Aucma.Core.Scanner
log.Error("Set TriggerMode On Fail!");
return;
}
//添加到集合
m_cMyDevices.Add(m_cMyDevice, ip);
/**
nRet = m_cMyDevice.MV_CODEREADER_OpenDevice_NET();//打开设备
if (MvCodeReader.MV_CODEREADER_OK != nRet)
{
log.Error("打开第" + i + "个扫码器设备失败,销毁设备,ip:" + ip);
m_cMyDevice.MV_CODEREADER_DestroyHandle_NET();
return;
}
else
{
m_cMyDevices.Add(m_cMyDevice, ip);
log.Info("打开第" + i + "个扫码器设备成功,ip:" + ip);
}
// ch:设置触发模式为off || en:set trigger mode as off
if (MvCodeReader.MV_CODEREADER_OK != m_cMyDevice.MV_CODEREADER_SetEnumValue_NET("TriggerMode", 0))
{
log.Error("设置第" + i + "个扫码器设备触发模式失败ip:" + ip);
return;
}
log.Info("第" + i + "个扫码器设备设置采集连续模式成功ip:" + ip);
// ch:开启抓图 | en:start grab
nRet = m_cMyDevice.MV_CODEREADER_StartGrabbing_NET();
if (MvCodeReader.MV_CODEREADER_OK != nRet)
{
log.Error("设置第" + i + "个扫码器设备开启抓图失败ip:" + ip);
return;
}
log.Info("*****************************************************************");
log.Info("第" + i + "个扫码器设备创建打开开启连续抓图设置成功ip:" + ip);
**/
}
}
}
@ -255,13 +237,13 @@ namespace Aucma.Core.Scanner
if (hashmap.Value.Equals(Appsettings.app("Middleware", "Scanner1", "Ip")))
{
#region 条码绑定业务处理
ReceiveCode1Event?.Invoke(strCode);
// ReceiveCode1Event?.Invoke(strCode);
#endregion
}
else if (hashmap.Value.Equals(Appsettings.app("Middleware", "Scanner2", "Ip"))) // 扫码器2处理扫码器2的业务
{
#region 条码绑定业务处理
ReceiveCode2Event?.Invoke(strCode);
// ReceiveCode2Event?.Invoke(strCode);
#endregion
}
@ -332,11 +314,15 @@ namespace Aucma.Core.Scanner
}
string strCode = Encoding.GetEncoding("UTF-8").GetString(buffer).Trim().TrimEnd('\0');
log.Info("相机ip:" + hashmap.Value + " Get CodeNum: " + "CodeNum[" + i.ToString() + "], CodeString[" + strCode + "]");
if (!string.IsNullOrEmpty(strCode))
if (!string.IsNullOrEmpty(strCode) && !strCode.Equals(lastCodeStr))
{
DoorReceiveCodeDelegateEvent?.Invoke(strCode);//箱门匹配扫码器
// 获取到条码处理业务
Console.WriteLine(strCode,hashmap.Value);
// DoorReceiveCodeDelegateEvent?.Invoke(strCode);//箱门匹配扫码器
// 获取到条码处理业务
Console.WriteLine(strCode,hashmap.Value);
// 泡前库业务处理
// PQKReceiveCodeEvent(strCode);
lastCodeStr = strCode;
}
}
}

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Scanner
{
/// <summary>
/// 扫码器实体
/// </summary>
public class ScannerModel
{
/// <summary>
/// 编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 扫码器ip
/// </summary>
public string Ip { get; set; }
/// <summary>
/// 扫码器名称
/// </summary>
public string Name { get; set; }
}
}
Loading…
Cancel
Save