出库任务合并和作废

This commit is contained in:
18942506660
2023-10-28 14:53:00 +08:00
parent 914654f749
commit 8abdbd9746
11 changed files with 312 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Dto.OutStock;
using WMS.Web.Core.Internal.Results;
@@ -18,7 +19,9 @@ namespace WMS.Web.Domain.IService
Task<Result> Save(List<SaveOutStockRequest> dto, LoginInDto loginInfo);
// 同步金蝶
Task<Result> Sync(int id);
//出库任务作废
Task<Result> Repeal(OperateRequest dto, LoginInDto loginInfo);
//出库任务作废
Task<Result> merge(OperateRequest dto, LoginInDto loginInfo);
}
}