diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml index 75c78da4..8fb9455b 100644 --- a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml +++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml @@ -690,6 +690,61 @@ 组装拆卸单:里面包含出和入 + + + 入库状态 + + + + + 已入库 + + + + + 待收货 + + + + + 部分入库 + + + + + 已作废 + + + + + 入库类型 + + + + + 采购入库 + + + + + 其他入库 + + + + + 直接调拨入库 + + + + + 分步式入库 + + + + + 组装拆卸入库 + + 错误提示信息 diff --git a/src/WMS.Web.Domain/Values/InstockStatus.cs b/src/WMS.Web.Domain/Values/InstockStatus.cs new file mode 100644 index 00000000..0231cba3 --- /dev/null +++ b/src/WMS.Web.Domain/Values/InstockStatus.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Text; +using WMS.Web.Core; + +namespace WMS.Web.Domain.Values +{ + /// + /// 入库状态 + /// + public enum InstockStatus + { + /// + /// 已入库 + /// + [EnumRemark("已入库")] + Already = 1, + /// + /// 待收货 + /// + [EnumRemark("待收货")] + Wait = 2, + /// + /// 部分入库 + /// + [EnumRemark("部分入库")] + Part = 3, + /// + /// 已作废 + /// + [EnumRemark("已作废")] + Repeal = 4 + } +} diff --git a/src/WMS.Web.Domain/Values/InstockType.cs b/src/WMS.Web.Domain/Values/InstockType.cs new file mode 100644 index 00000000..7ec06e3c --- /dev/null +++ b/src/WMS.Web.Domain/Values/InstockType.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Text; +using WMS.Web.Core; + +namespace WMS.Web.Domain.Values +{ + /// + /// 入库类型 + /// + public enum InstockType + { + /// + /// 采购入库 + /// + [EnumRemark("采购入库")] + Purchase =1, + /// + /// 其他入库 + /// + [EnumRemark("其他入库")] + Miscellaneous =2, + /// + /// 直接调拨入库 + /// + [EnumRemark("直接调拨入库")] + Stkdirecttransfers =3, + /// + /// 分步式入库 + /// + [EnumRemark("分步式入库")] + StktransferInst =4, + /// + /// 组装拆卸入库 + /// + [EnumRemark("组装拆卸入库")] + Assembled =5, + } +}