From da154e5c758c3b67202390debdc5331a8f68c685 Mon Sep 17 00:00:00 2001 From: yinbentan <yinbentan@live.com> Date: 星期六, 29 六月 2024 18:25:22 +0800 Subject: [PATCH] 库存结算时间点添加数据初始化任务 --- 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