1.限额增加为空的判断。
This commit is contained in:
parent
1cb5db7be2
commit
7e34dfe6d9
@ -1018,19 +1018,19 @@ function saveRecord(sPostEvents){
|
||||
var productCleanLeaseMoneyRatioMin = eval(calcRules["fund"]["CLEAN_LEASE_MONEY"]["LeaseMoneyRatio"]["min"]);//贷款比例下限
|
||||
var productCleanLeaseMoneyMax = eval(calcRules["fund"]["CLEAN_LEASE_MONEY"]["max"]);//融资额上限
|
||||
var productCleanLeaseMoneyMin = eval(calcRules["fund"]["CLEAN_LEASE_MONEY"]["min"]);//融资额下限
|
||||
if(LeaseMoneyRatio<=productCleanLeaseMoneyRatioMin){
|
||||
if((LeaseMoneyRatio<=productCleanLeaseMoneyRatioMin)&&(productCleanLeaseMoneyRatioMin!=null)&&(productCleanLeaseMoneyRatioMin!="")){
|
||||
AsDebug.showMessage("提示","综合融资额比例不能小于"+productCleanLeaseMoneyRatioMin+"%","","",true);
|
||||
return ;
|
||||
}
|
||||
if(LeaseMoneyRatio=>productCleanLeaseMoneyRatioMax){
|
||||
if((LeaseMoneyRatio=>productCleanLeaseMoneyRatioMax)&&(productCleanLeaseMoneyRatioMax!=null)&&(productCleanLeaseMoneyRatioMax!="")){
|
||||
AsDebug.showMessage("提示","综合融资额比例不能大于"+productCleanLeaseMoneyRatioMax+"%","","",true);
|
||||
return ;
|
||||
}
|
||||
if(cleanLeaseMoney<=productCleanLeaseMoneyMin){
|
||||
if((cleanLeaseMoney<=productCleanLeaseMoneyMin)&&(productCleanLeaseMoneyMin!=null)&&(productCleanLeaseMoneyMin!="")){
|
||||
AsDebug.showMessage("提示","融资额不能小于"+productCleanLeaseMoneyMin,"","",true);
|
||||
return ;
|
||||
}
|
||||
if(cleanLeaseMoney=>productCleanLeaseMoneyMax){
|
||||
if((cleanLeaseMoney=>productCleanLeaseMoneyMax)&&(productCleanLeaseMoneyMax!=null)&&(productCleanLeaseMoneyMax!="")){
|
||||
AsDebug.showMessage("提示","融资额不能大于"+productCleanLeaseMoneyMax,"","",true);
|
||||
return ;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user