From ab39eac3bd8a6e85019524f60b453f1f84559fc0 Mon Sep 17 00:00:00 2001 From: cyf Date: Thu, 26 Jun 2025 10:29:34 +0000 Subject: [PATCH] SVN r793 SVN-Revision: r793 --- 插件库/Lskj.Business/Impl/SystemInfo.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/插件库/Lskj.Business/Impl/SystemInfo.cs b/插件库/Lskj.Business/Impl/SystemInfo.cs index b47aafd..79a4929 100644 --- a/插件库/Lskj.Business/Impl/SystemInfo.cs +++ b/插件库/Lskj.Business/Impl/SystemInfo.cs @@ -295,6 +295,9 @@ namespace Lskj.Business Instance.DisableFilteringQuantity = item.Table.Columns.Contains("DisableFilteringQuantity") && !string.IsNullOrEmpty(item["DisableFilteringQuantity"] + "") ? "1".Equals(item["DisableFilteringQuantity"] + "") : false; Instance.TreeNodeBoxSpecialDisplay = item.Table.Columns.Contains("TreeNodeBoxSpecialDisplay") && !string.IsNullOrEmpty(item["TreeNodeBoxSpecialDisplay"] + "") ? "1".Equals(item["TreeNodeBoxSpecialDisplay"] + "") : false; Instance.ImportRemoveSpaces = item.Table.Columns.Contains("ImportRemoveSpaces") && !string.IsNullOrEmpty(item["ImportRemoveSpaces"] + "") ? "1".Equals(item["ImportRemoveSpaces"] + "") : false; + Instance.AccountSwitchingRestrictions = item.Table.Columns.Contains("AccountSwitchingRestrictions") && !string.IsNullOrEmpty(item["AccountSwitchingRestrictions"] + "") ? Convert.ToInt32(item["AccountSwitchingRestrictions"] + "") : 0; + Instance.Bill_cg_showname = item.Table.Columns.Contains("bill_cg_showname") && !string.IsNullOrEmpty(item["bill_cg_showname"] + "") ? item["bill_cg_showname"] + "" : ""; + if (!string.IsNullOrWhiteSpace(Instance.Bill_cg_showname)) ERPInfo.Instance.DraftReplacementValue = Instance.Bill_cg_showname; } /// /// 高拍仪AccessKey @@ -956,4 +959,11 @@ namespace Lskj.Business public bool HideSubtitle; /// /// 智能编码模块(PubProductSysMge),复制新增点击后自动点击新增保存 - \ No newline at end of file + /// + public bool PubProductSysMgeCopyAndSave; + /// + /// 分单时默认新版标记获取单号(旧版标记是获取的默认值,新版是根据存储过程获取) + /// + public bool SplitOrderNewVer; + /// + \ No newline at end of file