Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -12,6 +12,5 @@ namespace WMS.Web.Domain.IService
|
||||
{
|
||||
// 同步老Ops箱信息
|
||||
Task<Result> Sync();
|
||||
Task<Result> SerialNumberOperate(List<SerialNumberOperate> list, bool isTransaction = true);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.Login;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
using WMS.Web.Domain.Values;
|
||||
|
||||
namespace WMS.Web.Domain.IService
|
||||
{
|
||||
@@ -9,5 +14,25 @@ namespace WMS.Web.Domain.IService
|
||||
/// </summary>
|
||||
public interface ISerialNumberService
|
||||
{
|
||||
/// <summary>
|
||||
/// 操作序列号(移箱等)
|
||||
/// </summary>
|
||||
/// <param name="changeBoxRecords"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> ChangeBox(List<ChangeBoxRecord> changeBoxRecords, LoginInDto loginInfo, bool isTransaction = true);
|
||||
/// <summary>
|
||||
/// 操作序列号(出库操作)
|
||||
/// </summary>
|
||||
/// <param name="serialNumbers">序列号</param>
|
||||
/// <returns></returns>
|
||||
Task<Result> OutStock(List<string> serialNumbers, bool isTransaction = true);
|
||||
/// <summary>
|
||||
/// 序列号操作记录
|
||||
/// </summary>
|
||||
/// <param name="list"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> SerialNumberOperate(List<SerialNumberOperate> list, bool isTransaction = true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user