《MAM7.5-开发报告.doc》由会员分享,可在线阅读,更多相关《MAM7.5-开发报告.doc(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、MAM7.5_开发报告MAM7。5集成方式去掉主菜单 对于MAXIMO url添加一个参数portalmode=true,当此参数为true时,隐藏主菜单,否则显示主菜单。打开titlebar。jsp, String isShowTitlebar=”false”; isShowTitlebar=control。getWebClientSession()。getRequest().getParameter(portalmode); 找到style=height:%=height%px 修改如下: style=” height: =height%px”MAXIMO收件箱中,检修路线修改为其它名称
2、在实施MAXIMO过程中,客户对于收件箱中的默认标识“检修路线”非常困惑,希望改个明了的名字,进入应用程序设计器中,在选择操作中,找开“消息” 找到 找到组:startcntr标识:inbxroutelbl在值中修改自己想要的值.或是后能登录数据库后,执行如下SQLupdate maxmessages set value=审批 where msggroup=startcntr and msgkey=inbxroutelbl重启服务后,解决问题MAXIMO 7。1 - 7。5解决收件箱任务默认按日期排序MAXIMO 7.1 7。5解决收件箱任务默认按日期排序:1、IBMSMPmaximoappl
3、icationsmaximopropertiescomponentregistry。xml找到component-descriptor name=”inboxportlet”。.。content.。/component-descriptor将其中的property name=sortattribute” /改为/property改为defaultvaluedesc/defaultvalue/property其中:duedate为排序字段,desc为排序方式。2、IBMSMPmaximoapplicationsmaximomaximouiwebwebmodulewebclientcomponen
4、tsinboxportlet.jsp在InboxPortlet portletBean = (InboxPortlet)control; 下面增加两行:portletBean。setProperty(”sortattribute”,component.getProperty(”sortattribute”));portletBean.setProperty(”sorttype,component.getProperty(”sorttype));(maximo7。5是 InboxPortlet portletControl = (InboxPortlet)control;)portletControl.setPortletCacheId(sortattribute”,component.getProperty(sortattribute”));portletControl。setPortletCacheId(”sorttype”,component。getProperty(”sorttype));打包重启。如果结果集排序,可直接在结果集的sql语句中直接进行排序。