From 38b4f31967fed84e189af8b570aa50bda6a05a1c Mon Sep 17 00:00:00 2001
From: tongfei <244188119@qq.com>
Date: Wed, 25 Oct 2023 17:24:15 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E6=B7=BB=E5=8A=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml | 55 ++++++++++++++++++++++
src/WMS.Web.Domain/Values/InstockStatus.cs | 34 +++++++++++++
src/WMS.Web.Domain/Values/InstockType.cs | 39 +++++++++++++++
3 files changed, 128 insertions(+)
create mode 100644 src/WMS.Web.Domain/Values/InstockStatus.cs
create mode 100644 src/WMS.Web.Domain/Values/InstockType.cs
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,
+ }
+}