出库-箱库存变更

This commit is contained in:
tongfei
2023-11-16 14:35:41 +08:00
parent a98ecfff21
commit dc3d984bd5
6 changed files with 221 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Values
{
/// <summary>
/// 出入库存-方式
/// </summary>
public enum InOutInventoryMethod
{
/// <summary>
/// 按箱
/// </summary>
[EnumRemark("按箱")]
Box =1,
/// <summary>
/// 按产品
/// </summary>
[EnumRemark("按产品")]
Product =2
}
}

View File

@@ -48,6 +48,7 @@ namespace WMS.Web.Domain.Values
public static ValueTuple<int, string> AdjustError = (80009, "与金蝶校准发生错误,请稍候再试!");
public static ValueTuple<int, string> InventoryNoSourceError = (800010, "来源数据不存在,请稍候再试!");
public static ValueTuple<int, string> BoxInventoryNoDataError = (800011, "箱库存数据不存在,请稍候再试!");
public static ValueTuple<int, string> BoxInventoryMaterialNoDataError = (800041, "箱物料库存数据不存在,请稍候再试!");
public static ValueTuple<int, string> BoxInventoryNoInventoryError = (800012, "箱库存物料数量不足,请核对后再试!");
public static ValueTuple<int, string> BoxInventoryHaveInventoryError = (800013, "该箱库存已经存在,请核对后再试!");