生成电梯任务与判断一托延迟处理,生产入库调整

This commit is contained in:
2024-09-02 09:04:57 +08:00
parent d493a9322e
commit 6536f4f8e3
12 changed files with 251 additions and 162 deletions

View File

@@ -8,6 +8,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto
{
public class WmsPrdInstockCodeInput
{
public string prd_instockd_id { get; set; }
public decimal planqty { get; set; }
public decimal pqty { get; set; }
public string code_batch { get; set; }

View File

@@ -19,7 +19,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
public string type { get; set; }
public string create_id { get; set; }
public string prd_report_id { get; set; }
public List<WmsPrdInstockDInput> prdInstockDs { get; set; }
public WmsPrdInstockDInput prdInstockD { get; set; }
public List<WmsPrdInstockCodeInput> prdInstockCodes { get; set; }
}
}

View File

@@ -100,4 +100,10 @@ public partial class WmsElevatorH : BaseEntity<string>
/// 占用任务
/// </summary>
public string use_tasks { get; set; }
/// <summary>
/// 电梯内托数
/// </summary>
public int carry_count { get; set; }
}

View File

@@ -44,6 +44,12 @@ public partial class WmsPrdInstockCode : BaseEntity<string>
/// </summary>
public string? prd_instock_id { get; set; }
/// <summary>
/// 入库明细id
/// </summary>
public string? prd_instockD_id { get; set; }
/// <summary>
/// 载具ID
/// </summary>