调整出库单查询

This commit is contained in:
18942506660
2023-11-09 10:25:59 +08:00
parent 0bd21a0329
commit 87f914dcdb
9 changed files with 263 additions and 21 deletions

View File

@@ -73,10 +73,12 @@ namespace WMS.Web.Domain.Entitys
/// 创建
/// </summary>
/// <param name="creatorId"></param>
public void Create(int creatorId,int taskId, OutStockType type)
public void Create(int creatorId, OutStockTask task)
{
this.TaskId = taskId;
this.Type = type;
this.TaskId = task.Id;
this.Type = task.Type;
this.DeliveryOrgId = task.DeliveryOrgId;
this.ReceiptCustomerId = task.ReceiptCustomerId;
this.CreatorId = creatorId;
this.CreateTime = DateTime.Now;
}