提交单据管理和修改密码功能
This commit is contained in:
@@ -16,6 +16,7 @@ using System.Xml;
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.Core;
|
||||
using Lskj.Model;
|
||||
using Lskj.Data;
|
||||
|
||||
namespace Lskj.Business
|
||||
{
|
||||
@@ -330,6 +331,11 @@ namespace Lskj.Business
|
||||
Instance.LoginUsername = item.Table.Columns.Contains("LoginUsername") && !string.IsNullOrEmpty(item["LoginUsername"] + "") ? item["LoginUsername"] + "" : "";
|
||||
Instance.MainLeftShowMode = item.Table.Columns.Contains("MainLeftShowMode") && !string.IsNullOrEmpty(item["MainLeftShowMode"] + "") ? item["MainLeftShowMode"] + "" : "";
|
||||
Instance.DeadlockPrompt = item.Table.Columns.Contains("DeadlockPrompt") && !string.IsNullOrEmpty(item["DeadlockPrompt"] + "") ? item["DeadlockPrompt"] + "" : "";
|
||||
Instance.SpecialAttachmentBrowser = item.Table.Columns.Contains("SpecialAttachmentBrowser") && !string.IsNullOrEmpty(item["SpecialAttachmentBrowser"] + "") ? "1".Equals(item["SpecialAttachmentBrowser"] + "") : false;
|
||||
if (Instance.SpecialAttachmentBrowser)
|
||||
{
|
||||
ResourceDynamic.PubBrower = System.Environment.OSVersion.Version.Major == 5 && (System.Environment.OSVersion.Version.Minor == 1 || System.Environment.OSVersion.Version.Minor == 2) ? "Lskj.PubBrowerXp.dll" : "Lskj.PubBrower2.dll";
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 高拍仪AccessKey
|
||||
@@ -1154,6 +1160,10 @@ namespace Lskj.Business
|
||||
/// 死锁提示
|
||||
/// </summary>
|
||||
public string DeadlockPrompt;
|
||||
/// <summary>
|
||||
/// 附件浏览器自带逻辑
|
||||
/// </summary>
|
||||
public bool SpecialAttachmentBrowser;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user