修改bug1

This commit is contained in:
tongfei
2024-04-08 09:53:19 +08:00
parent b85f09dbe9
commit c2b51ebf66
3 changed files with 6 additions and 5 deletions

View File

@@ -95,7 +95,7 @@ namespace WMS.Web.Domain.Entitys
/// <param name="type"></param>
/// <param name="sourceBillNo"></param>
/// <param name="createTime"></param>
public void Create(InstockType type,string sourceBillNo, DateTime createTime)
public void Create(InstockType type,string sourceBillNo, DateTime createTime,int supplierId)
{
if (type == InstockType.Purchase)
this.Status = InstockStatus.Wait;
@@ -103,6 +103,7 @@ namespace WMS.Web.Domain.Entitys
this.Status = InstockStatus.WaitInStock;
this.Type = type;
this.SourceBillNo = sourceBillNo;
this.SupplierId = supplierId;
this.CreateTime = createTime;
}