From 5928c4b76d658e2b32ad2ff85f8fc35c78d394bf Mon Sep 17 00:00:00 2001 From: lishihai <dslsh@dscom> Date: 星期六, 29 六月 2024 17:52:12 +0800 Subject: [PATCH] 概述->业务类型->按仓库Ids筛选->BUG REPORT --- constvar/const.go | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/constvar/const.go b/constvar/const.go index c128d57..b7391e2 100644 --- a/constvar/const.go +++ b/constvar/const.go @@ -316,3 +316,24 @@ ) const DoMonthStatsToken = "Eoh2ZAUJjtbmu0TBkc3dq7MPCpL4riw5NVxOfgXYlKvHF6sR" + +type SystemConfigType int + +const ( + SystemConfigTypeInventoryCutOffPoint SystemConfigType = 1 //搴撳瓨缁撶畻鏃堕棿鐐� +) + +type MiniDictType int + +const ( + TransferType MiniDictType = iota + 1 // 璋冩嫧绫诲瀷 + StorageType // 鍏ュ簱绫诲瀷 + StockoutType // 鍑哄簱绫诲瀷 +) + +func (t MiniDictType) Valid() bool { + if t <= 0 { + return false + } + return true +} -- Gitblit v1.8.0