From a31f930fff45db997d25b74182ef4ff37492e9ec Mon Sep 17 00:00:00 2001
From: yinbentan <yinbentan@live.com>
Date: 星期一, 01 七月 2024 09:18:31 +0800
Subject: [PATCH] 字典查询去除字典类型判断

---
 constvar/const.go |   27 ++++++++++++++++++++++-----
 1 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/constvar/const.go b/constvar/const.go
index b965525..f465a7e 100644
--- a/constvar/const.go
+++ b/constvar/const.go
@@ -297,11 +297,12 @@
 type CodeStandardType string
 
 const (
-	CodeStandardType_Material CodeStandardType = "鐗╂枡缂栫爜"
-	CodeStandardType_Incoming CodeStandardType = "鍏ュ簱缂栫爜"
-	CodeStandardType_Outgoing CodeStandardType = "鍑哄簱缂栫爜"
-	CodeStandardType_Internal CodeStandardType = "璋冩嫧缂栫爜"
-	CodeStandardType_Disuse   CodeStandardType = "浠撳簱鎶ュ簾缂栫爜"
+	CodeStandardType_Material  CodeStandardType = "鐗╂枡缂栫爜"
+	CodeStandardType_Incoming  CodeStandardType = "鍏ュ簱缂栫爜"
+	CodeStandardType_Outgoing  CodeStandardType = "鍑哄簱缂栫爜"
+	CodeStandardType_Internal  CodeStandardType = "璋冩嫧缂栫爜"
+	CodeStandardType_Disuse    CodeStandardType = "浠撳簱鎶ュ簾缂栫爜"
+	CodeStandardType_TakeStock CodeStandardType = "鐩樼偣缂栫爜"
 )
 
 type OperationSource int
@@ -322,3 +323,19 @@
 const (
 	SystemConfigTypeInventoryCutOffPoint SystemConfigType = 1 //搴撳瓨缁撶畻鏃堕棿鐐�
 )
+
+type MiniDictType int
+
+const (
+	StorageType  MiniDictType = iota + 1 // 鍏ュ簱绫诲瀷
+	StockoutType                         // 鍑哄簱绫诲瀷
+	TransferType                         // 璋冩嫧绫诲瀷
+	TakeStock                            // 鐩樼偣绫诲瀷
+)
+
+func (t MiniDictType) Valid() bool {
+	if t <= 0 {
+		return false
+	}
+	return true
+}

--
Gitblit v1.8.0