SVN r1192

SVN-Revision: r1192
This commit is contained in:
cyf
2026-06-01 01:57:49 +00:00
parent 23b4d21c5d
commit ae3275e9ef
5 changed files with 73 additions and 36 deletions
+15
View File
@@ -1180,6 +1180,21 @@ namespace Lskj.Main
this.SetLanguage();
this.SetLedgers();
this.SetUsers();
//弹出提示框
if (SystemInfo.Instance.LoginAnnouncement)
{
if (BaseImpl.HasExistsTable("p_ErpProUpdateInfo")&& BaseImpl.HasExistsColumn("p_ErpProUpdateInfo", "AnnouncementDisplay"))
{
bool result = "1".Equals(BaseImpl.GetResult("select 1 from p_ErpProUpdateInfo where AnnouncementDisplay=1 order by updateDate desc") + "");
if (result)
{
FrmAnnouncement frmAnnouncement = new FrmAnnouncement();
frmAnnouncement.ShowDialog();
}
}
}
}
catch (Exception ex)
{