From af49eee8542361430938d66d5cd16fe6bb16a8b4 Mon Sep 17 00:00:00 2001 From: 18942506660 <18942506660@A18942506660> Date: Thu, 26 Oct 2023 14:09:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=9E=9A=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WMS.Web.Domain/Entitys/OutStock.cs | 2 +- src/WMS.Web.Domain/Entitys/OutStockTask.cs | 2 +- src/WMS.Web.Domain/Values/InstockType.cs | 25 ++++++++++++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/WMS.Web.Domain/Entitys/OutStock.cs b/src/WMS.Web.Domain/Entitys/OutStock.cs index 3e4812c9..48073de9 100644 --- a/src/WMS.Web.Domain/Entitys/OutStock.cs +++ b/src/WMS.Web.Domain/Entitys/OutStock.cs @@ -29,7 +29,7 @@ namespace WMS.Web.Domain.Entitys /// 单据类型 /// [Column("Type")] - public OutStockType Type { get; set; } = OutStockType.Sal; + public InstockType Type { get; set; } = InstockType.Sal; /// /// 创建人 diff --git a/src/WMS.Web.Domain/Entitys/OutStockTask.cs b/src/WMS.Web.Domain/Entitys/OutStockTask.cs index cb7184f5..0dad32d5 100644 --- a/src/WMS.Web.Domain/Entitys/OutStockTask.cs +++ b/src/WMS.Web.Domain/Entitys/OutStockTask.cs @@ -34,7 +34,7 @@ namespace WMS.Web.Domain.Entitys /// 单据类型 /// [Column("Type")] - public OutStockType Type { get; set; } = OutStockType.Sal; + public InstockType Type { get; set; } = InstockType.Sal; /// /// 操作人(出库人) /// diff --git a/src/WMS.Web.Domain/Values/InstockType.cs b/src/WMS.Web.Domain/Values/InstockType.cs index 7ec06e3c..d1a077ba 100644 --- a/src/WMS.Web.Domain/Values/InstockType.cs +++ b/src/WMS.Web.Domain/Values/InstockType.cs @@ -35,5 +35,30 @@ namespace WMS.Web.Domain.Values /// [EnumRemark("组装拆卸入库")] Assembled =5, + /// + /// 销售出库 + /// + [EnumRemark("销售出库")] + Sal = 6, + /// + /// 其他出库 + /// + [EnumRemark("其他出库")] + Miscellaneous_Out = 7, + /// + /// 直接调拨出库 + /// + [EnumRemark("直接调拨出库")] + Stkdirecttransfers_Out = 8, + /// + /// 分步式出库 + /// + [EnumRemark("分步式出库")] + StktransferInst_Out = 9, + /// + /// 组装拆卸出库 + /// + [EnumRemark("组装拆卸出库")] + Assembled_Out = 10, } }