生产提报绑定载具增加规格型号

This commit is contained in:
2024-10-11 15:41:41 +08:00
parent 90755153be
commit ffc93851fe
3 changed files with 12 additions and 0 deletions

View File

@@ -2491,6 +2491,8 @@ namespace Tnb.ProductionMgr
bindCarryCodeInput.material_id = prdMoTask.material_id;
bindCarryCodeInput.material_code = basMaterial.code;
bindCarryCodeInput.material_name = basMaterial.name;
bindCarryCodeInput.material_specification = basMaterial.material_specification;
bindCarryCodeInput.container_no = basMaterial.material_standard;
bindCarryCodeInput.location_id = location.id;
bindCarryCodeInput.location_code = location.location_code;
bindCarryCodeInput.code_batch = report.batch;

View File

@@ -15,6 +15,14 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
public string material_id { get; set; }
public string material_code { get; set; }
public string material_name { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string? container_no { get; set; }
public string location_id { get; set; } = "";
public string location_code { get; set; } = "";
public string code_batch { get; set; }

View File

@@ -326,6 +326,8 @@ namespace Tnb.WarehouseMgr
wmsCarryCode.material_id = input.material_id;
wmsCarryCode.material_code = input.material_code;
wmsCarryCode.material_name = input.material_name;
wmsCarryCode.material_specification = input.material_specification;
wmsCarryCode.container_no = input.container_no;
wmsCarryCode.location_id = input.location_id;
wmsCarryCode.location_code = input.location_code;
wmsCarryCode.code_batch = input.code_batch;