bug处理,二楼空载具料架入库

This commit is contained in:
2024-06-06 16:42:31 +08:00
parent 9e177b69f7
commit 439e000bd1
57 changed files with 457 additions and 1196 deletions

View File

@@ -39,6 +39,10 @@
/// 预任务生成EnCode
/// </summary>
public const string WMS_PRETASK_H_ENCODE = "PreTaskGen";
/// <summary>
/// 采购收料物料流水号
/// </summary>
public const string WMS_PURCHASE_MAT_ENCODE = "PurchaseMat";
/// 齐套出库生成Encode
/// </summary>
public const string WMS_KITTINGOUTSTK_ENCODE = "WmsKittingOutStk";
@@ -325,15 +329,19 @@
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation1 = "30773146852476";
public const string Floor1GLSGWOutstockStation1 = "30773146852478";
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation2 = "30773146852477";
public const string Floor1GLSGWOutstockStation2 = "30773146852479";
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation3 = "30773146852478";
public const string Floor1GLSGWOutstockStation3 = "30773146852480";
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation4 = "30773146852480";
/// <summary>
/// todo 一楼外协三工位库位
/// </summary>

View File

@@ -0,0 +1,46 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class MaterialTransferRackInstockInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 料架号
/// </summary>
public string? carry_code { get; set; }
/// <summary>
/// 空料箱
/// </summary>
public List<MaterialTransferRackInstockDetail> details { get; set; }
/// <summary>
/// 起始库位
/// </summary>
public string? startlocation_id { get; set; }
/// <summary>
/// 判断料箱是否为空
/// </summary>
public bool judgeEmptyCarry { get; set; } = true;
}
public class MaterialTransferRackInstockDetail
{
/// <summary>
/// 料箱号
/// </summary>
public string? carry_code { get; set; }
}
}

View File

@@ -5,6 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;tianyi</Configurations>
<ServerGarbageCollection>false</ServerGarbageCollection>
</PropertyGroup>
<ItemGroup>