From 8bca251806334c37b46f54658aaa4b205ff6c200 Mon Sep 17 00:00:00 2001 From: liuzhao Date: Fri, 10 Aug 2018 14:38:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E8=BD=A6=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Lease/Flow/CarManage/CarReclaim/CarReclaimApplyList.jsp | 6 ++++-- .../Lease/Flow/CarManage/CarReclaim/CarReclaimInfoTemp.jsp | 3 +++ .../com/tenwa/lease/flow/carmanage/CarManageAction.java | 5 ++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimApplyList.jsp b/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimApplyList.jsp index 37b1411c3..f107fdfaa 100644 --- a/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimApplyList.jsp +++ b/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimApplyList.jsp @@ -18,11 +18,13 @@ function newApply() var customerid=sReturn[3]; var customername=sReturn[4]; var license_plate_number=sReturn[5]; + var over_list=sReturn[8]; + var over_days=sReturn[9]; + var over_money=sReturn[10]; var ProjectName=frame_number+"-"+customername; var sParams = "ApplyType=<%=sApplyType%>,CurUserID=<%=CurUser.getUserID()%>"; - sParams =sParams+",ContractId="+contractid+",FlowKey="+contractnumber+",ProjectName="+ProjectName+",customerid="+customerid+",customername="+customername+",frame_number="+frame_number+",license_plate_number="+license_plate_number+",ApplyType=<%=sApplyType%>"; + sParams =sParams+",ContractId="+contractid+",FlowKey="+contractnumber+",ProjectName="+ProjectName+",customerid="+customerid+",customername="+customername+",frame_number="+frame_number+",license_plate_number="+license_plate_number+",over_list="+over_list+",over_days="+over_days+",over_money="+over_money+",ApplyType=<%=sApplyType%>"; var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.carmanage.CarReclaimApplyStartAction","initFLow",sParams); - if(typeof(sReturnInfo)=="undefined" || sReturnInfo=="" || sReturnInfo=="_CANCEL_") return; var sReturnInfos=sReturnInfo.split("@"); if(sReturnInfos[0]=="success") diff --git a/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimInfoTemp.jsp b/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimInfoTemp.jsp index 9df9c1925..4a22bf979 100644 --- a/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimInfoTemp.jsp +++ b/WebContent/Tenwa/Lease/Flow/CarManage/CarReclaim/CarReclaimInfoTemp.jsp @@ -38,6 +38,9 @@ setItemValue(0,0,"LESSEE",sReturn[3]); setItemValue(0,0,"LESSEE_NAME",sReturn[4]); setItemValue(0,0,"LICENSE_PLATE_NUMBER",sReturn[5]); + setItemValue(0,0,"over_list",sReturn[6]); + setItemValue(0,0,"over_days",sReturn[7]); + setItemValue(0,0,"over_money",sReturn[8]); } function save(){ diff --git a/src_tenwa/com/tenwa/lease/flow/carmanage/CarManageAction.java b/src_tenwa/com/tenwa/lease/flow/carmanage/CarManageAction.java index d547c66b7..b3b81f63e 100644 --- a/src_tenwa/com/tenwa/lease/flow/carmanage/CarManageAction.java +++ b/src_tenwa/com/tenwa/lease/flow/carmanage/CarManageAction.java @@ -50,7 +50,10 @@ public class CarManageAction { String customerid=m.get("customerid"); //³Ð×âÈËid String customername=m.get("customername"); //³Ð×âÈËÐÕÃû String license_plate_number=m.get("license_plate_number"); //³µÅƺŠ- return frame_number+","+contractid+","+contract_number+","+customerid+","+customername+","+license_plate_number; + String over_list=m.get("over_list"); + String over_days=m.get("over_days"); + String over_money=m.get("over_money"); + return frame_number+","+contractid+","+contract_number+","+customerid+","+customername+","+license_plate_number+","+over_list+","+over_days+","+over_money; } public static String getContractNumber(String contractid) throws JBOException{