From 31518c880775d4dc9800600017970146a6115e42 Mon Sep 17 00:00:00 2001 From: wyf Date: Wed, 19 Mar 2025 06:48:06 +0000 Subject: [PATCH] SVN r350 SVN-Revision: r350 --- 插件库/Lskj.Model/DynamicModel.cs | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/插件库/Lskj.Model/DynamicModel.cs b/插件库/Lskj.Model/DynamicModel.cs index c9cfd47..c0df4e1 100644 --- a/插件库/Lskj.Model/DynamicModel.cs +++ b/插件库/Lskj.Model/DynamicModel.cs @@ -2500,7 +2500,18 @@ namespace Lskj.Model public string FirstRowIndex = ""; public string SpecialValueIndex = ""; public string SheetName = ""; + /// + /// 读取筛选条件 + /// + public string ReadTableCond = ""; + /// + /// 忽略合并明细列标题行 + /// public bool CustomerServiceApp = false; + /// + /// 显示模式,如果为1则隐藏配置界面 + /// + public string ShowType = ""; public DynamicPubSpecialImport(string[] args) : base(args) { @@ -2526,9 +2537,17 @@ namespace Lskj.Model { SheetName = args[9] + ""; } - if (args.Length >10 && !string.IsNullOrWhiteSpace(args[10])) + if (args.Length > 10 && !string.IsNullOrWhiteSpace(args[10])) { - CustomerServiceApp = (args[10] + "").Equals("1"); + ReadTableCond = args[10] + ""; + } + if (args.Length > 11 && !string.IsNullOrWhiteSpace(args[11])) + { + CustomerServiceApp = (args[11] + "").Equals("1"); + } + if (args.Length > 12 && !string.IsNullOrWhiteSpace(args[12])) + { + ShowType = args[12] + ""; } } }