Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -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
|
||||
|
||||
14
src/WMS.Web.Domain/Services/SerialNumberService.cs
Normal file
14
src/WMS.Web.Domain/Services/SerialNumberService.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user