出库领料记录

This commit is contained in:
2023-11-24 11:43:29 +08:00
parent e497caf393
commit 8af12b3013
11 changed files with 361 additions and 34 deletions

View File

@@ -0,0 +1,50 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class OutstockRecordListOutput
{
public string id { get; set; }
public string mo_task_code { get; set; }
public string mo_id { get; set; }
public string material_id { get; set; }
public string material_id_id { get; set; }
public string process_id { get; set; }
public string process_id_id { get; set; }
public string workstation_id { get; set; }
public string workstation_id_id { get; set; }
public string act_start_date { get; set; }
public List<PrdKittingOutRecordListChildOutput> tablefield105 { get; set; } = new List<PrdKittingOutRecordListChildOutput>();
public List<OutstockRecordListChildOutput> tablefield134 { get; set; } = new List<OutstockRecordListChildOutput>();
}
public class OutstockRecordListChildOutput
{
public string id { get; set; }
public string code { get; set; }
public string bill_code { get; set; }
public string warehouse_id { get; set; }
public string warehouse_id_id { get; set; }
public string location_code { get; set; }
public string create_id { get; set; }
public string create_time { get; set; }
/// <summary>
/// 1 齐套 2 一般/物料出库
/// </summary>
public string type { get; set; }
}
public class PrdKittingOutRecordListChildOutput : OutstockRecordListChildOutput
{
public string collocation_scheme_id { get; set; }
public string collocation_scheme_id_id { get; set; }
}
public class OutstockRecordListDownOutput
{
public string id { get; set; }
public string material_id { get; set; }
public string material_id_id { get; set; }
public string unit_id { get; set; }
public string code_batch { get; set; }
public string pr_qty { get; set; }
public string box { get; set; }
}
}

View File

@@ -84,5 +84,10 @@ public partial class PrdOutstockH : BaseEntity<string>
/// 流程引擎Id
/// </summary>
public string? f_flowid { get; set; }
/// <summary>
/// 生产任务单id
/// </summary>
public string? mo_task_id { get; set; }
}