diff --git a/src_tenwa/com/tenwa/lease/flow/rent/rentreback/OtherPayMethod.java b/src_tenwa/com/tenwa/lease/flow/rent/rentreback/OtherPayMethod.java index 7cf101f29..eb7d4c7c3 100644 --- a/src_tenwa/com/tenwa/lease/flow/rent/rentreback/OtherPayMethod.java +++ b/src_tenwa/com/tenwa/lease/flow/rent/rentreback/OtherPayMethod.java @@ -50,6 +50,7 @@ public class OtherPayMethod { if(!"代偿".equals(coolectStatus)){ BizObject boLRI = JBOFactory.createBizObjectQuery(LC_RENT_INCOME.CLASS_NAME, "PLAN_ID=:ID").setParameter("ID", planID[i]).getSingleResult(false); chargeWay = boLRI.getAttribute("CHARGE_WAY")==null?"0":boLRI.getAttribute("CHARGE_WAY").toString(); + System.out.println("------------还款渠道:"+chargeWay+"------------"); } String serviceMoney = "0"; @@ -173,6 +174,7 @@ public class OtherPayMethod { String getServiceRatioSQL = "select rate from O where charge_way='"+serviceType+"' AND start_date<='"+currentDate+"' AND expiry_date>='"+currentDate+"'"; BizObject boRatio = lm.createQuery(getServiceRatioSQL).getSingleResult(false); String rate = boRatio.getAttribute("rate")==null?"0":boRatio.getAttribute("rate").toString(); + System.out.println("------------手续费费率:"+rate+"------------"); ratio = (new BigDecimal(rate)).divide(new BigDecimal("100"), 6, BigDecimal.ROUND_HALF_UP); } catch (Exception e) { e.printStackTrace();