From 92f612223f3be36b52be9b6f2c49c984d78350cb Mon Sep 17 00:00:00 2001
From: tongfei <244188119@qq.com>
Date: Wed, 25 Oct 2023 16:49:36 +0800
Subject: [PATCH] =?UTF-8?q?=E5=85=A5=E5=BA=93=E5=8D=95=E5=AE=9E=E4=BD=93?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml | 45 ++++++++++++++++++++
src/WMS.Web.Domain/Entitys/InstockOrder.cs | 20 +++++++++
src/WMS.Web.Domain/Values/Erp/FormIdParam.cs | 37 ++++++++++++++++
src/WMS.Web.Domain/WMS.Web.Domain.csproj | 1 -
4 files changed, 102 insertions(+), 1 deletion(-)
create mode 100644 src/WMS.Web.Domain/Entitys/InstockOrder.cs
create mode 100644 src/WMS.Web.Domain/Values/Erp/FormIdParam.cs
diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
index faa01097..57726d4d 100644
--- a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
+++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
@@ -4,6 +4,16 @@
WMS.Web.Domain
+
+
+ wms入库单
+
+
+
+
+ ID
+
+
erp:单据查询-采购入库单
@@ -640,6 +650,41 @@
+
+
+ 业务对象表单Id:对应erp的单据表的名称
+
+
+
+
+ 采购订单
+
+
+
+
+ 采购入库单
+
+
+
+
+ 其他入库单
+
+
+
+
+ 直接调拨单-里面包含出和入
+
+
+
+
+ 分步式调入单
+
+
+
+
+ 组装拆卸单:里面包含出和入
+
+
错误提示信息
diff --git a/src/WMS.Web.Domain/Entitys/InstockOrder.cs b/src/WMS.Web.Domain/Entitys/InstockOrder.cs
new file mode 100644
index 00000000..7a563196
--- /dev/null
+++ b/src/WMS.Web.Domain/Entitys/InstockOrder.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations.Schema;
+using System.Text;
+
+namespace WMS.Web.Domain.Entitys
+{
+ ///
+ /// wms入库单
+ ///
+ [Serializable]
+ [Table("t_wms_instock")]
+ public class InstockOrder
+ {
+ ///
+ /// ID
+ ///
+ public int Id { get; set; }
+ }
+}
diff --git a/src/WMS.Web.Domain/Values/Erp/FormIdParam.cs b/src/WMS.Web.Domain/Values/Erp/FormIdParam.cs
new file mode 100644
index 00000000..d9d4ffb5
--- /dev/null
+++ b/src/WMS.Web.Domain/Values/Erp/FormIdParam.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace WMS.Web.Domain.Values.Erp
+{
+ ///
+ /// 业务对象表单Id:对应erp的单据表的名称
+ ///
+ public enum FormIdParam
+ {
+ ///
+ /// 采购订单
+ ///
+ PUR_PurchaseOrder=1,
+ ///
+ /// 采购入库单
+ ///
+ STK_InStock=2,
+ ///
+ /// 其他入库单
+ ///
+ STK_MISCELLANEOUS=3,
+ ///
+ /// 直接调拨单-里面包含出和入
+ ///
+ STK_TransferDirect = 4,
+ ///
+ /// 分步式调入单
+ ///
+ STK_TRANSFERIN=5,
+ ///
+ /// 组装拆卸单:里面包含出和入
+ ///
+ STK_AssembledApp=6,
+ }
+}
diff --git a/src/WMS.Web.Domain/WMS.Web.Domain.csproj b/src/WMS.Web.Domain/WMS.Web.Domain.csproj
index f4b6e518..02a74e0d 100644
--- a/src/WMS.Web.Domain/WMS.Web.Domain.csproj
+++ b/src/WMS.Web.Domain/WMS.Web.Domain.csproj
@@ -11,7 +11,6 @@
-