盘点单接口 报表优化
This commit is contained in:
@@ -119,7 +119,11 @@ public class ModuleConsts
|
||||
/// <summary>
|
||||
/// 模块标识-载具更换
|
||||
/// </summary>
|
||||
public const string MODULE_WMSCARRYREPLACE_ID = "26188532491557";//26188532491557
|
||||
public const string MODULE_WMSCARRYREPLACE_ID = "26188532491557";
|
||||
/// <summary>
|
||||
/// 模块标识-盘点
|
||||
/// </summary>
|
||||
public const string MODULE_WmsInventorycheck_ID = "37804588973589";
|
||||
/// <summary>
|
||||
/// 模块标识-人工扫码入库记录 todo
|
||||
/// </summary>
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.WarehouseMgr.Entities.Consts;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
||||
{
|
||||
public class WmsInventorycheckSubmitInput
|
||||
{
|
||||
public string erp_line_pk { get; set; }
|
||||
|
||||
public List<WmsInventorycheckSubmitDetailInput> details { get; set; }
|
||||
}
|
||||
|
||||
public class WmsInventorycheckSubmitDetailInput
|
||||
{
|
||||
public string carry_code { get; set; }
|
||||
|
||||
public string material_id { get; set; }
|
||||
|
||||
public string code_batch { get; set; }
|
||||
|
||||
public string actual_qty { get; set; }
|
||||
|
||||
public string location_id { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user