This commit is contained in:
tongfei
2023-11-24 14:29:57 +08:00
parent 9ab4575f19
commit 5f71e20802
9 changed files with 90 additions and 32 deletions

View File

@@ -99,9 +99,9 @@ namespace WMS.Web.Domain.Entitys
/// 入库
/// </summary>
/// <param name="inStockBillNo">出库单号</param>
public void InStock(string inStockBillNo, OrderType type)
public void InStock(string inStockBillNo, InstockType type)
{
if (type == OrderType.Purchase_In)
if (type == InstockType.Purchase)
this.InStockBillNo = inStockBillNo;
}
}