diff --git a/WebContent/Tenwa/Lease/Flow/Fund/FundCollection/LCEbankTempInfo.jsp b/WebContent/Tenwa/Lease/Flow/Fund/FundCollection/LCEbankTempInfo.jsp index 128f4fc6f..2a063eda4 100644 --- a/WebContent/Tenwa/Lease/Flow/Fund/FundCollection/LCEbankTempInfo.jsp +++ b/WebContent/Tenwa/Lease/Flow/Fund/FundCollection/LCEbankTempInfo.jsp @@ -8,6 +8,7 @@ */ String sPrevUrl = CurPage.getParameter("PrevUrl"); String ishistory = CurPage.getParameter("IsHistory"); + String flowUnid = CurPage.getParameter("FlowUnid"); //FlowKey中存的是EBANK_SN网银流水号 String ebankSn = CurPage.getParameter("FlowKey"); if(sPrevUrl == null) sPrevUrl = ""; @@ -18,10 +19,20 @@ dwTemp.Style = "2";//freeform dwTemp.ReadOnly = "1";//只读模式 - dwTemp.genHTMLObjectWindow(CurPage.getParameter("FlowUnid")); + dwTemp.genHTMLObjectWindow(flowUnid); IsNullCheck inc = new IsNullCheck(); inc.setEBANK_SN(ebankSn); + inc.setFlowUnid(flowUnid); String result = inc.CustomerIdIsNullCheck(); + String resultTemp = inc.CustomerIdIsNullCheckTemp(); + String customerId=""; + String customerName=""; + if(!"N".equals(inc.getCustomerId())){ + String [] customer = inc.getCustomerId().split("@"); + customerId = customer[0]; + customerName = customer[1]; + } + String flag; if(result=="Y"){ flag="true"; @@ -36,9 +47,19 @@