From 8c0e2a363e2218547cd4db21068c441f8b48628c Mon Sep 17 00:00:00 2001 From: zhangbb Date: Fri, 18 Jan 2019 10:06:08 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=8F=90=E5=89=8D=E7=BB=93=E6=B8=85=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E5=8E=9F=E7=A7=9F=E9=87=91=E8=AE=A1=E5=88=92=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LoanSimulation_old/RentPlanList.jsp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/WebContent/Accounting/LoanSimulation_old/RentPlanList.jsp b/WebContent/Accounting/LoanSimulation_old/RentPlanList.jsp index d3b884b5f..495d2609a 100644 --- a/WebContent/Accounting/LoanSimulation_old/RentPlanList.jsp +++ b/WebContent/Accounting/LoanSimulation_old/RentPlanList.jsp @@ -1,22 +1,29 @@ <%@ page contentType="text/html; charset=GBK"%> <%@ include file="/Frame/resources/include/include_begin_list.jspf"%><% String paymentnumber = CurPage.getParameter("plannumber"); - ASObjectModel doTemp = new ASObjectModel("LCRentPlanList"); - ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); - String ishistory=CurPage.getParameter("IsHistory"); - String nodeNo=CurPage.getParameter("NodeNo"); + String ishistory= CurPage.getParameter("IsHistory"); + String flowunid = CurPage.getParameter("FlowUnid"); + String modelName = "LCRentPlanList"; + String parm = paymentnumber; if(null!=ishistory&&ishistory.equals("true")){ //doTemp.setDataQueryClass("com.tenwa.flow.flowHistory.FlowDataListHistory");//如果是历史则新显示历史数据 + modelName = "LCRentPlanListHis"; + parm = flowunid; isShowButton=false; }else{ isShowButton=true; } + ASObjectModel doTemp = new ASObjectModel(modelName); + ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); + + String nodeNo=CurPage.getParameter("NodeNo"); + dwTemp.ShowSummary="1"; //汇总 dwTemp.Style="1"; dwTemp.ReadOnly = "1"; dwTemp.setPageSize(100); - dwTemp.genHTMLObjectWindow(paymentnumber); + dwTemp.genHTMLObjectWindow(parm); String sButtons[][] = { };