diff --git a/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp b/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp index 2e6e5bd13..73503aa0f 100644 --- a/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp +++ b/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp @@ -31,8 +31,15 @@ $(function(){ }); function lendingType(){ var lendingType = getItemValue(0, 0, "LENDING_TYPE"); + var carType = getItemValue(0, 0, "CAR_TYPE"); if(lendingType==null||lendingType==""){ - setItemValue(0, 0, "LENDING_TYPE", "FIRST"); + if(carType=="used_car"){ + setItemValue(0, 0, "LENDING_TYPE", "AFTER"); + setItemDisabled(0,0,"LENDING_TYPE",true); + }else{ + setItemValue(0, 0, "LENDING_TYPE", "FIRST"); + } + } }