SVN-Revision: r350
This commit is contained in:
wyf
2025-03-19 06:48:06 +00:00
parent 9ff9bdbeae
commit 31518c8807
+21 -2
View File
@@ -2500,7 +2500,18 @@ namespace Lskj.Model
public string FirstRowIndex = "";
public string SpecialValueIndex = "";
public string SheetName = "";
/// <summary>
/// 读取筛选条件
/// </summary>
public string ReadTableCond = "";
/// <summary>
/// 忽略合并明细列标题行
/// </summary>
public bool CustomerServiceApp = false;
/// <summary>
/// 显示模式,如果为1则隐藏配置界面
/// </summary>
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] + "";
}
}
}