销售发货、调拨出库到人工出货区

This commit is contained in:
2024-08-29 13:50:13 +08:00
parent 7ace98d49e
commit d42b94bff1
12 changed files with 196 additions and 82 deletions

View File

@@ -84,7 +84,14 @@
/// 成品库出库暂存区
/// </summary>
public const string REGION_CPOutstockCache_ID = "35948525263893";
/// <summary>
/// 成品库区
/// </summary>
public const string REGION_CPOutstock_ID = "28598002137877";
/// <summary>
/// 成品库人工出库区
/// </summary>
public const string REGION_CPManualOutstock_ID = "36539312699413";
/// <summary>
/// 长管出库
/// </summary>
@@ -188,7 +195,6 @@
/// </summary>
public const string PRETASK_BILL_STATUS_CANCEL_ID = "26126842129701";
//
/// <summary>
/// 任务单据状态-待执行Id
/// </summary>

View File

@@ -0,0 +1,13 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class FinishproductOutstockSignAllInput
{
/// <summary>
/// 区域
/// </summary>
public string? region_id { get; set; }
}
}

View File

@@ -3,11 +3,11 @@
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class FinishproductOutstockSortInput
public class FinishproductOutstockSignInput
{
/// <summary>
/// 分拣任务id
/// 载具编号
/// </summary>
public string? source_id { get; set; }
public string? carry_code { get; set; }
}
}

View File

@@ -3,11 +3,11 @@
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class FinishproductOutstockSignInput
public class FinishproductOutstockSortInput
{
/// <summary>
/// 载具编号
/// 分拣任务id
/// </summary>
public string? carry_code { get; set; }
public string? source_id { get; set; }
}
}

View File

@@ -21,5 +21,9 @@
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 是否发到人工出库区
/// </summary>
public bool isManual { get; set; } = false;
}
}

View File

@@ -20,5 +20,10 @@
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 是否发到人工出库区
/// </summary>
public bool isManual { get; set; } = false;
}
}