增加盘点 erp同步

This commit is contained in:
18942506660
2023-11-02 11:42:47 +08:00
parent 53da585693
commit 69cc15d9e4
9 changed files with 197 additions and 16 deletions

View File

@@ -6,6 +6,7 @@ using WMS.Web.Core.Dto.Erp;
using WMS.Web.Core.Dto.Erp.Org;
using WMS.Web.Core.Dto.Erp.Purchase;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.IService.Public
{
@@ -28,5 +29,9 @@ namespace WMS.Web.Domain.IService.Public
/// </summary>
/// <returns></returns>
Task<ResultList<ErpStockDto>> BillQueryForStock();
//盘盈
Task<Result> TakeStock_Profit(TakeStock entity);
//盘亏
Task<Result> TakeStock_Loss(TakeStock entity);
}
}