diff --git a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResult.jsp b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResult.jsp index 7926b58d1..fe98f2bfc 100644 --- a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResult.jsp +++ b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResult.jsp @@ -20,7 +20,7 @@ String customertype = CurPage.getParameter("customertype"); String userll=null; // userll="/Tenwa/Lease/Flow/Project/BusinessApplication/CustomerInfo.jsp?CompClientID="; - userll="/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail2.jsp?CompClientID="; + userll= "/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail.jsp"; String sTempletNo = "queryScoreResult";//--模板号-- ASObjectModel doTemp = new ASObjectModel(sTempletNo); ASObjectWindowCalc dwTemp = new ASObjectWindowCalc(CurPage, doTemp,request); @@ -39,13 +39,18 @@ %><%@ include file="/Frame/resources/include/ui/include_info.jspf"%> diff --git a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail.jsp b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail.jsp index 2c3afdb14..630551c99 100644 --- a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail.jsp +++ b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail.jsp @@ -1,79 +1,55 @@ +<%@ page import="jbo.oti.RC_SCORE_RESULT_DETAIL" %> +<%@ page import="org.apache.commons.collections.CollectionUtils" %> <%@ page contentType="text/html; charset=GBK"%> -<%@ include file="/Frame/resources/include/include_begin_list.jspf"%><% - /* - Author: undefined 2018-07-12 - Content: - History Log: - */ - String sFlowUnid = CurPage.getParameter("FlowUnid");//流程编号 - String SubjectId = CurPage.getParameter("SubjectId");//主体编号 - String flowNo = CurPage.getParameter("FlowNo");//主体编号 - String custTypeParam = "CustomerType"; - if ("BusinessChangeFlow".equals(flowNo)) { - custTypeParam = "customertype"; - } - String customertype = CurPage.getParameter(custTypeParam); - String SubjectIdtemp = Sqlca.getString("select SubjectId from lb_project_info_temp where flowunid='"+sFlowUnid+"'"); - if(SubjectId ==null ){ - SubjectId = SubjectIdtemp; - } - String orgName = CurUser.getOrgName(); - String userName = CurUser.getUserName(); - ASObjectModel doTemp = new ASObjectModel("VI_LB_IDENTITY_CHECK"); - ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); - dwTemp.Style="1"; //--设置为Grid风格-- - dwTemp.ReadOnly = "1"; //只读模式 - dwTemp.setPageSize(10); - dwTemp.MultiSelect = true; //添加多选框 - dwTemp.genHTMLObjectWindow(sFlowUnid); +<%@include file="/IncludeBegin.jsp"%><% + String flowId = CurPage.getParameter("flowId");//流程编号 + System.out.println("flowId=" + flowId); + String projectNo = CurPage.getParameter("projectNo");//业务编号 + System.out.println("projectNo=" + projectNo); + BizObjectManager rcScoreResultDetail = JBOFactory.getBizObjectManager(RC_SCORE_RESULT_DETAIL.CLASS_NAME); + List rcScoreResultDetailBizObjectList = rcScoreResultDetail.createQuery("project_no=:project_no").setParameter("project_no", projectNo).getResultList(false); + if(CollectionUtils.isNotEmpty(rcScoreResultDetailBizObjectList)){ +%> + + + + + + + + +<% + for(BizObject rcScoreResultDetailBizObject : rcScoreResultDetailBizObjectList){ + String person_type = rcScoreResultDetailBizObject.getAttribute("person_type").toString(); + String person_name = rcScoreResultDetailBizObject.getAttribute("person_name").toString(); + String third_result_url = rcScoreResultDetailBizObject.getAttribute("third_result_url").toString(); + String pboc_result_url = rcScoreResultDetailBizObject.getAttribute("pboc_result_url").toString(); + String update_time = rcScoreResultDetailBizObject.getAttribute("update_time").toString(); - //0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标,CSS层叠样式 10、风格 - String sButtons[][] = { - {"true","","Button","详情","详情","viewAndEdit()","","","","btn_icon_detail",""}, - {"true","","Button","身份校验","身份校验","identitycheck()","","","","btn_icon_detail",""} - }; -%><%@include file="/Frame/resources/include/ui/include_list.jspf"%> +%> + + + + + + + +<% + } + }else { + %> +
当前结果明细为空,请先执行评分请求或查询评分结果
+ <% + } + %> + -<%@ include file="/Frame/resources/include/include_end.jspf"%> \ No newline at end of file + +<%@include file="/IncludeEnd.jsp"%> \ No newline at end of file diff --git a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail2.jsp b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail2.jsp deleted file mode 100644 index 19166b9e0..000000000 --- a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/RCScoreResultDetail2.jsp +++ /dev/null @@ -1,54 +0,0 @@ -<%@ page import="jbo.oti.RC_SCORE_RESULT_DETAIL" %> -<%@ page import="org.apache.commons.collections.CollectionUtils" %> -<%@ page contentType="text/html; charset=GBK"%> -<%@include file="/IncludeBegin.jsp"%><% - String flowId = CurPage.getParameter("flowId");//流程编号 - System.out.println("flowId=" + flowId); - String projectNo = CurPage.getParameter("projectNo");//业务编号 - System.out.println("projectNo=" + projectNo); - BizObjectManager rcScoreResultDetail = JBOFactory.getBizObjectManager(RC_SCORE_RESULT_DETAIL.CLASS_NAME); - List rcScoreResultDetailBizObjectList = rcScoreResultDetail.createQuery("project_no=:project_no").setParameter("project_no", projectNo).getResultList(false); - if(CollectionUtils.isNotEmpty(rcScoreResultDetailBizObjectList)){ -%> -
用户类型用户名称三方报告征信报告更新时间
<%=person_type%><%=person_name%>三方报告征信报告<%=update_time%>
- - - - - - - -<% - for(BizObject rcScoreResultDetailBizObject : rcScoreResultDetailBizObjectList){ - String person_type = rcScoreResultDetailBizObject.getAttribute("person_type").toString(); - String person_name = rcScoreResultDetailBizObject.getAttribute("person_name").toString(); - String third_result_url = rcScoreResultDetailBizObject.getAttribute("third_result_url").toString(); - String pboc_result_url = rcScoreResultDetailBizObject.getAttribute("pboc_result_url").toString(); - String update_time = rcScoreResultDetailBizObject.getAttribute("update_time").toString(); - -%> - - - - - - - -<% - } - }else { - %> -
当前结果明细为空,请先执行评分请求或查询评分结果
- <% - } - %> - - - -<%@include file="/IncludeEnd.jsp"%> \ No newline at end of file
用户类型用户名称三方报告征信报告更新时间
<%=person_type%><%=person_name%>三方报告征信报告<%=update_time%>