润乾报表参数不同展现报表不同
应用场景
用户有多张报表,根据输入的参数不同,展现的报表也不同
润乾报表是很容易实现的,在展现报表的 jsp 页面中,做一下判断就可以了。
下面是 jsp 页面的例子
<%@ page contentType=“text/html;charset=GBK” %>
<%@ page import=“java.sql.*”%>
<%@ page import=“java.util.Hashtable”%>
<%@ taglib uri=“/WEB-INF/runqianReport4.tld” prefix=“report” %>
<%
String reportParamsId = request.getParameter(“reportParamsId”);
Hashtable params = null;
if(!"".equals(reportParamsId) && reportParamsId != null){
params = com.runqian.report4.view.ParamsPool.get(reportParamsId);
}
String reportName = “test1.raq”;
if(params != null){
String paramValue = (String) params.get(“arg1”);
if(“xrq1”.equals(paramValue)){
reportName = “test1.raq”;
}else if (“xrq2”.equals(paramValue)){
reportName = “test2.raq”;
}else if (“xrq3”.equals(paramValue)){
reportName = “test3.raq”;
}
}
%>
needSubmit=“no”
/>