【问题现象】:
点开固定资产模块是空白,一般都是会显示流程图,如图中所示,但是问题账套中没有该流程图

【解决方案】:
由于eap_idesktopappitem表缺少数据导致无法展示流程图。需要补充一条数据
【解决方案】:
步骤:1、备份账套数据。
2、执行如下sql添加和更新数据。
set identity_insert eap_idesktopappitem ON–打开
INSERT INTO [dbo].[eap_idesktopappitem] ([ts], [name], [Url], [Icon], [Width], [Height], [Description], [MenuCode], [LinkUrl], [id], [AppSourceType], [AppType], [SourceId], [Seq], [GroupID], [IsVisible], [ExpressionName], [ShowIn], [IsSystem], [Component]) VALUES (DEFAULT, N’流程图’, N’jsfile#js/portal/portal.process.js’, N’report.png’, N’99′, N’440′, N’流程图’, null, null, N’84′, null, N’1234′, null, N’6′, null, N’0′, null, null, N’0′, N’DiagramPanel’)
set identity_insert eap_idesktopappitem OFF–关闭
update eap_idesktopsolutionitem set ideap_idesktopappitem=84 where name=‘流程图’
update eap_idesktopsolutionitem set ideap_idesktopappitem=84 where name=‘业务流程图’
3、核对是否正确。
作者:熊嘉颖