SVN r1114

SVN-Revision: r1114
This commit is contained in:
cyf
2026-01-30 07:59:08 +00:00
parent f4daf70eec
commit 89dc609271
3 changed files with 21 additions and 10 deletions
+3 -3
View File
@@ -1660,13 +1660,13 @@ namespace Lskj.PubUserTomodule
SELECT
a.MenuId,a.SubSysId, a.MenuStruct,'01'+case when a.SubSysId>9 then cast(a.SubSysId as varchar(10)) else '0'+cast(a.SubSysId as varchar(10)) end+a.MenuStruct as speciesno,
a.MenuCaption,a.MouseOutImg
,case when a.DllFileName='Lskj.PubAccraditation.dll' then 'Lskj.PubBill.dll' when a.DllFileName='Lskj.BaseAccraditation.dll' then 'Lskj.PubModule.dll' else '' end as DllFileName
,case when a.DllFileName in ('Lskj.PubAccraditation.dll','Lskj.PubAccraditation2.dll') then 'Lskj.PubBill.dll' when a.DllFileName='Lskj.BaseAccraditation.dll' then 'Lskj.PubModule.dll' else '' end as DllFileName
,a.UrlParams,a.PurviewId,a.ParentMenuId,a.PurviewId as DllCode
FROM P_FormMenuConfigTab a with(nolock)
join P_FormMenuConfigTab aa with(nolock) on a.SubSysId=aa.SubSysId and LEFT(a.MenuStruct,2)=aa.MenuStruct
where 1=1 and len(a.MenuStruct)=4 and a.useFlag=1 and aa.useFlag=1
and a.dllfilename in ( 'Lskj.PubAccraditation.dll','Lskj.BaseAccraditation.dll')
) a where 1=1 ";
and a.dllfilename in ( 'Lskj.PubAccraditation.dll','Lskj.PubAccraditation2.dll','Lskj.BaseAccraditation.dll')
) a where 1=1 ";
sql = sql + where;
DataTable dataTable = SqlHelper.ExecuteDataTable(sql);
this.moduleControl.gridControl.DataSource = dataTable;