齐套出库 一般出库 物料出库添加状态

This commit is contained in:
2023-11-08 14:06:40 +08:00
parent 30b40fb28e
commit bd739b3060
6 changed files with 159 additions and 25 deletions

View File

@@ -179,6 +179,41 @@ public static class DictConst
/// </summary>
public const string SHENGCHANBULIAO = "24";
/// <summary>
/// 出入库单据状态code
/// </summary>
public const string DOCUMENTSTATU = "DocumentStatu";
/// <summary>
/// 出库单据状态新增
/// </summary>
public const string OUTSTOCKSTATUSADD = "1";
/// <summary>
/// 出库单据状态作业中
/// </summary>
public const string OUTSTOCKSTATUSWORKING = "2";
/// <summary>
/// 出库单据状态已呼叫
/// </summary>
public const string OUTSTOCKSTATUSCALLED = "3";
/// <summary>
/// 出库单据状态待配送
/// </summary>
public const string OUTSTOCKSTATUSTOBEDELIVERED = "4";
/// <summary>
/// 出库单据状态取消
/// </summary>
public const string OUTSTOCKSTATUSCANCEL = "7";
/// <summary>
/// 出库单据状态完成
/// </summary>
public const string OUTSTOCKSTATUSCOMPLETED = "8";
#endregion