Merge remote-tracking branch 'origin/ap007' into ap007

This commit is contained in:
zhanglei 2023-09-08 14:06:16 +08:00
commit 201f7b9d8a
3 changed files with 30 additions and 3 deletions

View File

@ -62,7 +62,7 @@
String sButtons[][] = {
{"ReadOnly".equals(rightType)?"false":"true","","Button","괏닸","괏닸","save()","","","","btn_icon_saveNew",""},
{"true","","Button","栗죕헌데","栗죕헌데","openFileList('1')","","","","btn_icon_saveNew",""},
{("BusinessApplyFlow".equals(FlowNo)||"BusinessChangeFlow".equals(FlowNo))&&("0020".equals(sPhaseNo)||"0030".equals(sPhaseNo))?"true":"false","","Button","信审资料","信审资料","openFileList('2')","","","","btn_icon_saveNew",""}
{("BusinessApplyFlow".equals(FlowNo)||"BusinessChangeFlow".equals(FlowNo))&&("0030".equals(sPhaseNo)||"0040".equals(sPhaseNo)||"0050".equals(sPhaseNo)||"0060".equals(sPhaseNo)||"0070".equals(sPhaseNo))?"true":"false","","Button","ÐÅÉó×ÊÁÏ","ÐÅÉó×ÊÁÏ","openFileList('2')","","","","btn_icon_saveNew",""}
};
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
@ -215,7 +215,7 @@
function getRequestParamOfCredit(){
let code = 'ECM0002';
if(("<%=FlowNo%>"=="BusinessApplyFlow"||"<%=FlowNo%>"=="BusinessChangeFlow")&&("<%=sPhaseNo%>"=="0020"||"<%=sPhaseNo%>"=="0030")&&"ReadOnly"!="<%=rightType%>"){
if(("<%=FlowNo%>"=="BusinessApplyFlow"||"<%=FlowNo%>"=="BusinessChangeFlow")&&("0030"=="<%=sPhaseNo%>" ||"0040"=="<%=sPhaseNo%>"||"0050"=="<%=sPhaseNo%>"||"0060"=="<%=sPhaseNo%>"||"0070"=="<%=sPhaseNo%>")&&"ReadOnly"!="<%=rightType%>"){
code = 'ECM0001';
}
let busiNo="<%=projectNo%>";

View File

@ -243,6 +243,29 @@ public class CustomerInfo {
@XStreamAlias("GUARNUM")
private String guarNum;
@XStreamAlias("QUERYREASON")
private String queryReason;
public void setAgeInYear(Integer ageInYear) {
this.ageInYear = ageInYear;
}
public void setRepeatedApplicantFlag(Integer repeatedApplicantFlag) {
this.repeatedApplicantFlag = repeatedApplicantFlag;
}
public void setAgeInMonth(Integer ageInMonth) {
this.ageInMonth = ageInMonth;
}
public String getQueryReason() {
return queryReason;
}
public void setQueryReason(String queryReason) {
this.queryReason = queryReason;
}
public String getGuarNum() {
return guarNum;
}

View File

@ -496,6 +496,7 @@ public class AmpServiceImpl extends EsbCommon implements AmpService {
ci.setIdCardTermEndDate(CardTermEndDate);
ci.setOpenBankMobileNo(openBankMobileNo);
ci.setNationId(nationId);
ci.setQueryReason("23");
return ci;
}
public Coborrowers getCoborrowers() throws JBOException {
@ -656,6 +657,8 @@ public class AmpServiceImpl extends EsbCommon implements AmpService {
co.setRelationshipCode(relationshipCode);
//共借人编号(目前系统只有一个共借人默认填1)
co.setBorrowerId("1");
//征信查询原因
co.setQueryReason("23");
return co;
}
public GuarantorInfo getGuarantorInfo() throws JBOException {
@ -839,7 +842,8 @@ public class AmpServiceImpl extends EsbCommon implements AmpService {
gr.setCensusRegAddr(censusRegAddr);
//与主借人关系
gr.setRelationshipCode(relationshipCode);
//征信查询原因
gr.setQueryReason("23");
return gr;
}
public ContInfo getContInfo() throws JBOException {