|
|
|
@ -24,6 +24,7 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
public partial class SupplementViewModel : ObservableObject
|
|
|
|
|
{
|
|
|
|
|
private readonly IPrintSuppleMentBarCodeServices _printSuppleMentBarCodeServices;
|
|
|
|
|
protected readonly IPrintBarCodeServices _printBarCodeServices;
|
|
|
|
|
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(SupplementViewModel));
|
|
|
|
|
private PrintState printState { get; set; } = PrintState.Idle;//打印状态
|
|
|
|
|
PrintSuppleMentBarCode printSuppleMentBarCode = null;
|
|
|
|
@ -31,9 +32,11 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
/// 构造函数
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="Id">补打表主键</param>
|
|
|
|
|
public SupplementViewModel(int Id)
|
|
|
|
|
/// <param name="barType">补打类型</param>
|
|
|
|
|
public SupplementViewModel(int Id,string barType)
|
|
|
|
|
{
|
|
|
|
|
_printSuppleMentBarCodeServices = App.ServiceProvider.GetService<IPrintSuppleMentBarCodeServices>();
|
|
|
|
|
_printBarCodeServices = App.ServiceProvider.GetService<IPrintBarCodeServices>();
|
|
|
|
|
printSuppleMentBarCode = _printSuppleMentBarCodeServices.FirstAsync(d => d.ObjId == Id).Result;
|
|
|
|
|
if (printSuppleMentBarCode!=null)
|
|
|
|
|
{
|
|
|
|
@ -43,8 +46,9 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
_barCode = printSuppleMentBarCode.MaterialBarCode;
|
|
|
|
|
PrintAmount = 1;
|
|
|
|
|
PrintName = printSuppleMentBarCode.PrintName;
|
|
|
|
|
|
|
|
|
|
PrintBarType = printSuppleMentBarCode.PrintBarType;
|
|
|
|
|
}
|
|
|
|
|
BarType = barType;
|
|
|
|
|
Progress = 0;
|
|
|
|
|
MaxProgress = 1;//最大数
|
|
|
|
|
State = "Green";
|
|
|
|
@ -60,31 +64,31 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
string printer = Appsettings.app("Printer", "PrinterName");
|
|
|
|
|
|
|
|
|
|
#region 打印
|
|
|
|
|
Progress = 1;
|
|
|
|
|
//对接打印机
|
|
|
|
|
Report barReport = new Report();
|
|
|
|
|
barReport.Load(System.Environment.CurrentDirectory + @"\Report\MaterialBar.frx");//打印报表位置
|
|
|
|
|
|
|
|
|
|
// 设置打印机和打印选项
|
|
|
|
|
barReport.PrintSettings.ShowDialog = false; // 是否打开打印机选择框
|
|
|
|
|
barReport.PrintSettings.Printer = printer; // 设置打印机名称
|
|
|
|
|
barReport.PrintSettings.Copies = 1; // 设置打印份数
|
|
|
|
|
//barReport.PrintSettings.PageRange = "1-3"; // 设置打印页范围
|
|
|
|
|
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Id", _barCode);
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Order_No", _orderCode);//订单号
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Order_Material_Name", PrintName);//物料简码
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Bar_Code", _barCode);//二维码
|
|
|
|
|
PrintProgress = $"[1/1] {_barCode}";
|
|
|
|
|
barReport.Print();
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
if (string.IsNullOrEmpty(PrintBarType)) return;
|
|
|
|
|
string flag = _barCode.Substring(0, 1);
|
|
|
|
|
if (BarType == "newBarCode")//替换原有的MES码
|
|
|
|
|
{
|
|
|
|
|
string newBarCode = await GetMaxNumAsync(ProductCode, flag);
|
|
|
|
|
|
|
|
|
|
PintBarCode(printer, newBarCode);
|
|
|
|
|
printSuppleMentBarCode.MaterialBarCode = _barCode;
|
|
|
|
|
printSuppleMentBarCode.PrintNewBarCode = newBarCode;
|
|
|
|
|
printSuppleMentBarCode.PrintTime = DateTime.Now;
|
|
|
|
|
await _printSuppleMentBarCodeServices.UpdateAsync(printSuppleMentBarCode);
|
|
|
|
|
//var obj=await _printBarCodeServices.FirstAsync(d=>d.MaterialBarcode== _barCode);
|
|
|
|
|
//obj.MaterialBarcode = newBarCode;
|
|
|
|
|
//await _printBarCodeServices.UpdateAsync(obj);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PintBarCode(printer, _barCode);
|
|
|
|
|
printSuppleMentBarCode.PrintTime = DateTime.Now;
|
|
|
|
|
await _printSuppleMentBarCodeServices.UpdateAsync(printSuppleMentBarCode);
|
|
|
|
|
}
|
|
|
|
|
//打印完成 不可以再次打印
|
|
|
|
|
printSuppleMentBarCode.IsPrint = "1";
|
|
|
|
|
printSuppleMentBarCode.PrintTime = DateTime.Now;
|
|
|
|
|
await _printSuppleMentBarCodeServices.UpdateAsync(printSuppleMentBarCode);
|
|
|
|
|
|
|
|
|
|
//打印完成
|
|
|
|
|
SetCompletetd();
|
|
|
|
|
}
|
|
|
|
@ -95,7 +99,29 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void PintBarCode(string printer,string barCode)
|
|
|
|
|
{
|
|
|
|
|
#region 打印
|
|
|
|
|
|
|
|
|
|
//对接打印机
|
|
|
|
|
Report barReport = new Report();
|
|
|
|
|
barReport.Load(System.Environment.CurrentDirectory + @"\Report\MaterialBar.frx");//打印报表位置
|
|
|
|
|
|
|
|
|
|
// 设置打印机和打印选项
|
|
|
|
|
barReport.PrintSettings.ShowDialog = false; // 是否打开打印机选择框
|
|
|
|
|
barReport.PrintSettings.Printer = printer; // 设置打印机名称
|
|
|
|
|
barReport.PrintSettings.Copies = 1; // 设置打印份数
|
|
|
|
|
//barReport.PrintSettings.PageRange = "1-3"; // 设置打印页范围
|
|
|
|
|
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Id", barCode);
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Order_No", _orderCode);//订单号
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Order_Material_Name", PrintName);//物料简码
|
|
|
|
|
barReport.SetParameterValue("BoxBarData.Bar_Code", barCode);//二维码
|
|
|
|
|
PrintProgress = $"[1/1] {barCode}";
|
|
|
|
|
barReport.Print();
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
@ -183,6 +209,12 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
public int Progress { get => _progress; set => SetProperty(ref _progress, value); }
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 补打类型
|
|
|
|
|
private string _barType;
|
|
|
|
|
|
|
|
|
|
public string BarType { get => _barType; set => SetProperty(ref _barType, value); }
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 打印状态
|
|
|
|
|
private string _state;
|
|
|
|
|
|
|
|
|
@ -213,6 +245,12 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 条码类型
|
|
|
|
|
private string _printBarType;
|
|
|
|
|
|
|
|
|
|
public string PrintBarType { get => _printBarType; set => SetProperty(ref _printBarType, value); }
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 完成
|
|
|
|
@ -251,5 +289,49 @@ namespace Aucma.Core.PrintTo.ViewModels
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 获取最大值
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取最大值
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="MaterialCode"></param>
|
|
|
|
|
/// <param name="falg">条码类型:内胆码或者 箱壳码</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public async Task<string> GetMaxNumAsync(string materialCode, string falg)
|
|
|
|
|
{
|
|
|
|
|
string barCode = $"{falg}{DateTime.Now.ToString("yyMMdd")}{materialCode}";
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
List<int> tempList = new List<int>();
|
|
|
|
|
var list = await _printBarCodeServices.QueryAsync(d => d.MaterialBarcode.Contains(barCode));
|
|
|
|
|
if (list.Count() == 0)
|
|
|
|
|
{
|
|
|
|
|
return barCode + "0001";
|
|
|
|
|
}
|
|
|
|
|
foreach (var item in list)
|
|
|
|
|
{
|
|
|
|
|
string code = item.MaterialBarcode.Substring(item.MaterialBarcode.Length - 4);
|
|
|
|
|
int num = Convert.ToInt32(code);
|
|
|
|
|
tempList.Add(num);
|
|
|
|
|
}
|
|
|
|
|
int row = tempList.Max() + 1;
|
|
|
|
|
if (row == 10000)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("订单打印数据已经超过10000!无法查询打印条码数据。", "系统提醒");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
string maxStr = (tempList.Max() + 1).ToString();
|
|
|
|
|
string rowNum = maxStr.PadLeft(4, '0');
|
|
|
|
|
return barCode + rowNum;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return barCode + "0001";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|