From b1fc20d02bb883b88365cc81ad90c8b1b45ef6ae Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期六, 29 六月 2024 21:52:08 +0800 Subject: [PATCH] fix --- constvar/const.go | 33 ++++++++++++++++++++++++++++----- 1 files changed, 28 insertions(+), 5 deletions(-) diff --git a/constvar/const.go b/constvar/const.go index c128d57..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 @@ -316,3 +317,25 @@ ) const DoMonthStatsToken = "Eoh2ZAUJjtbmu0TBkc3dq7MPCpL4riw5NVxOfgXYlKvHF6sR" + +type SystemConfigType int + +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