通过编号查询到任务采购单据
This commit is contained in:
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto;
|
||||
using WMS.Web.Core.Dto.InStockTask;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
@@ -41,6 +42,13 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// <returns></returns>
|
||||
Task<List<InStockTask>> GetListBy(List<string> sourceBillNos);
|
||||
|
||||
/// <summary>
|
||||
/// 列表-根据来源单号模糊
|
||||
/// </summary>
|
||||
/// <param name="sourceBillNo"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<InStockTaskBillNoQueryResponse>> GetListBy(string sourceBillNo);
|
||||
|
||||
/// <summary>
|
||||
/// 批量添加
|
||||
/// </summary>
|
||||
|
||||
@@ -31,13 +31,14 @@ namespace WMS.Web.Domain.Mappers
|
||||
.ForMember(x => x.OrgId, ops => ops.MapFrom(x => x.FPurchaseOrgId))
|
||||
.ForMember(x => x.MaterialId, ops => ops.MapFrom(x => x.FMaterialId))
|
||||
.ForMember(x => x.StockId, ops => ops.MapFrom(x => x.FSOSTOCKID))
|
||||
.ForMember(x => x.StockCode, ops => ops.MapFrom(x => x.StockFNumber))
|
||||
|
||||
.ForMember(x => x.FactoryPrice, ops => ops.MapFrom(x => x.FCHUCHANGPRICE))
|
||||
.ForMember(x => x.AccruedQty, ops => ops.MapFrom(x => x.FQty))
|
||||
.ForMember(x => x.Remark, ops => ops.MapFrom(x => x.FEntryNote))
|
||||
.ForMember(x => x.CreateTime, ops => ops.MapFrom(x => x.FCreateDate))
|
||||
|
||||
.ReverseMap();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user