This commit is contained in:
tongfei
2023-11-11 14:32:12 +08:00
9 changed files with 109 additions and 10 deletions

View File

@@ -82,9 +82,13 @@ namespace WMS.Web.Domain.Services
//序列号
SerialNumbers s = new SerialNumbers(sn.SerialNumber, detail.MaterialId,b.Id,b.OpsBoxId, opsSerial.BarCereateUser,opsSerial.BarCreateTime);
sList.Add(s);
//序列号记录
//序列号记录(序列号生成)
SerialNumberOperate so = new SerialNumberOperate(sn.SerialNumber, SerialNumberOperateType.Generate, detail.MaterialId, opsSerial.BarCereateUser, "", b.SupplierId, b.OrgId, null, opsSerial.BarCreateTime);
soList.Add(so);
//序列号记录(装箱)
SerialNumberOperate so_g = new SerialNumberOperate();
so_g.CompleteCartonBox(sn.SerialNumber, detail.MaterialId, b);
soList.Add(so_g);
}
}
#endregion

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Domain.IService;
namespace WMS.Web.Domain.Services
{
/// <summary>
/// 序列号服务
/// </summary>
public class SerialNumberService: ISerialNumberService
{
}
}