非采购上架-接口

This commit is contained in:
tongfei
2023-11-09 14:05:55 +08:00
parent b51f09542c
commit 3ccebc07f5
11 changed files with 366 additions and 33 deletions

View File

@@ -115,5 +115,17 @@ namespace WMS.Web.Domain.Entitys
this.ShelferId = creatorId;
this.ShelfTime = DateTime.Now;
}
/// <summary>
/// 非采购上架
/// </summary>
/// <param name="creatorId"></param>
public void NoPurchaseShelf(int creatorId)
{
this.ReceiverId = creatorId;
this.ReceiveTime = DateTime.Now;
this.ShelferId = creatorId;
this.ShelfTime = DateTime.Now;
}
}
}