This commit is contained in:
58261 2018-10-11 18:19:23 +08:00
commit 90d4129a50
9 changed files with 19 additions and 16 deletions

View File

@ -14,20 +14,17 @@ body{
height:88px;
width:230px;
background:url(logo_amarsoft.png);
margin-top:267px;
margin-top:270px;
margin-left:90px;
display: inline;
}
.logo_slogan{
float:left;
width:213px;
text-align:center;
color:#333333;
font-family: ΢ÈíÑźÚ;
font-size: 12px;
margin-top:20px;
margin-left:90px;
display: inline;
float:right;
height:20px;
width:137px;
background-image:url(logon.png);
/* margin-top:5px; */
margin-right:125px;
}
.logon_body{background:url(logon_bg2.gif) repeat-x top;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -12,7 +12,7 @@
//获得页面参数
String pOrgId="xxxdd";
String showType="Channel";
if(CurUser.hasRole("099")||CurUser.hasRole("299")||CurUser.hasRole("399")){
if(CurUser.hasRole("099")||CurUser.hasRole("299")||CurUser.hasRole("399")||CurUser.hasRole("800R00000024")){
pOrgId="8";
}else if(CurUser.hasRole("401"))
{

View File

@ -241,9 +241,9 @@
if(name.length > 0){
if(certid.length > 0){
if(certid.length!=18){
parent.parent.openDWDialog();
// parent.parent.openDWDialog();
setErrorTips("certid","身份证必须是18位");
parent.parent.resetDWDialog("配偶身份证信息错误!",false);
// parent.parent.resetDWDialog("配偶身份证信息错误!",false);
return false;
}
if(CheckLicense(certid)){
@ -257,9 +257,9 @@
// return false;
// }
else{
parent.parent.openDWDialog();
// parent.parent.openDWDialog();
setErrorTips("certid","身份证格式错误!");
parent.parent.resetDWDialog("配偶身份证信息错误!",false);
// parent.parent.resetDWDialog("配偶身份证信息错误!",false);
return false;
}
}

View File

@ -47,7 +47,7 @@
</div>
</div>
<div class="logo_pic"></div>
<div class="logo_slogan">现代金融租赁服务企业</div>
<div class="logo_slogan"></div>
</div>
<div class="logon_footer">
<div></div>

View File

@ -331,6 +331,7 @@ public class CmbToPayController extends BaseFlowStartAction {
pay_detail.setBUSNAR(BUSNAR);
pay_detail.setCRTACC(CRTACC);
pay_detail.setCRTNAM(CRTNAM);
pay_detail.setCRTBNK(BANK_NAME);
pay_detail.setBNKFLG(BNKFLG);
pay_detail.setTRSTYP(TRSTYP);
pay_detail.setRCVCHK(RCVCHK);
@ -355,6 +356,7 @@ public class CmbToPayController extends BaseFlowStartAction {
pay_detail_bo.setAttributeValue("BUSNAR", BUSNAR);
pay_detail_bo.setAttributeValue("CRTACC", CRTACC);
pay_detail_bo.setAttributeValue("CRTNAM", CRTNAM);
pay_detail_bo.setAttributeValue("CRTBNK", BANK_NAME);
pay_detail_bo.setAttributeValue("BNKFLG", BNKFLG);
pay_detail_bo.setAttributeValue("TRSTYP", TRSTYP);
pay_detail_bo.setAttributeValue("RCVCHK", RCVCHK);

View File

@ -459,6 +459,7 @@ public class PayController extends BaseFlowStartAction {
pay_detail.setBUSNAR(BUSNAR);
pay_detail.setCRTACC(CRTACC);
pay_detail.setCRTNAM(CRTNAM);
pay_detail.setCRTBNK(BANK_NAME);
pay_detail.setBNKFLG(BNKFLG);
pay_detail.setTRSTYP(TRSTYP);
pay_detail.setRCVCHK(RCVCHK);
@ -488,6 +489,7 @@ public class PayController extends BaseFlowStartAction {
pay_detail_bo.setAttributeValue("NUSAGE", NUSAGE);
pay_detail_bo.setAttributeValue("CRTACC", CRTACC);
pay_detail_bo.setAttributeValue("CRTNAM", CRTNAM);
pay_detail_bo.setAttributeValue("CRTBNK", BANK_NAME);
pay_detail_bo.setAttributeValue("BNKFLG", BNKFLG);
pay_detail_bo.setAttributeValue("TRSTYP", TRSTYP);
pay_detail_bo.setAttributeValue("RCVCHK", RCVCHK);

View File

@ -289,6 +289,7 @@ public class HttpRequest {
String DBTBNK = (String) propPayResult.get("DBTBNK");
String CRTACC = (String) propPayResult.get("CRTACC");
String CRTNAM = (String) propPayResult.get("CRTNAM");
String CRTBNK = (String) propPayResult.get("CRTBNK");
String CCYNBR = (String) propPayResult.get("CCYNBR");
String TRSAMT = (String) propPayResult.get("TRSAMT");
String YURREF = (String) propPayResult.get("YURREF");
@ -305,6 +306,7 @@ public class HttpRequest {
detail_one.setDBTBNK(DBTBNK);
detail_one.setCRTACC(CRTACC);
detail_one.setCRTNAM(CRTNAM);
detail_one.setCRTBNK(CRTBNK);
detail_one.setCCYNBR(CCYNBR);
detail_one.setTRSAMT(TRSAMT);
detail_one.setYURREF(YURREF);