apzl_leasing/WebContent/Tenwa/Lease/Flow/Comm/baseShowInfoFormal.jspf
2018-06-03 22:26:41 +08:00

13 lines
650 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%
String isShowForaml=CurPage.getParameter("IsShowFormal");
if(isShowForaml==null){isShowForaml="false";}
if(isShowForaml.equals("true")){
String queryStr="select O.FORMALCLASS,O.QUERYCONDITION from O where O.NODEID=:nodeId";
BizObjectQuery bq = JBOFactory.createBizObjectQuery("jbo.prd.PRD_NODEINFO", queryStr).setParameter("nodeId",nodeNo);
BizObject nodeObject = bq.getSingleResult(false);//²éѯ»ñÈ¡³Ð×âÈËList
String formalClass=nodeObject.getAttribute("FORMALCLASS").getString();
String className=doTemp.getJboClass();
String classPath=className.substring(0, className.lastIndexOf(".")+1);
doTemp.setJboClass(classPath+formalClass);
}
%>