28 lines
1.5 KiB
Plaintext
28 lines
1.5 KiB
Plaintext
<%@ page contentType="text/html; charset=GBK"%><%@
|
|
include file="/IncludeBegin.jsp"%><%
|
|
/*
|
|
页面说明: 左右框架页面
|
|
*/
|
|
String sObjectNo = CurPage.getParameter("CustomerID"); //对象编号 暂时为客户号
|
|
String sObjectType = CurPage.getParameter("ObjectType");
|
|
String sReportDate = CurPage.getParameter("ReportDate");
|
|
String sRole = CurPage.getParameter("Role");
|
|
String sRecordNo = CurPage.getParameter("RecordNo");
|
|
String sReportScope = CurPage.getParameter("ReportScope");
|
|
String sEditable = CurPage.getParameter("Editable");
|
|
|
|
//将空值转化为空字符串
|
|
if(sObjectNo == null) sObjectNo = "";
|
|
if(sObjectType == null) sObjectType = "";
|
|
if(sReportDate == null) sReportDate = "";
|
|
if(sRole == null) sRole = "";
|
|
if(sRecordNo == null) sRecordNo = "";
|
|
if(sReportScope == null) sReportScope = "";
|
|
if(sEditable == null) sEditable = "";
|
|
%><%@include file="/Resources/CodeParts/Frame03.jsp"%>
|
|
<script type="text/javascript">
|
|
setDialogTitle("财务报表详情");
|
|
AsControl.OpenView("/Common/FinanceReport/FinanceReportTab.jsp","Role=<%=sRole%>&RecordNo=<%=sRecordNo%>&ObjectType=<%=sObjectType%>&CustomerID=<%=sObjectNo%>&ReportDate=<%=sReportDate%>&ReportScope=<%=sReportScope%>&Editable=<%=sEditable%>","frameleft");
|
|
AsControl.OpenView("/Common/FinanceReport/ReportShowFrame.jsp","Role=<%=sRole%>&ObjectType=<%=sObjectType%>&CustomerID=<%=sObjectNo%>&ReportDate=<%=sReportDate%>&ReportScope=<%=sReportScope%>&Editable=false","frameright");
|
|
</script>
|
|
<%@ include file="/IncludeEnd.jsp"%> |