记得上下班打卡 | git大法好,push需谨慎

Commit 09a9775e authored by jiangxiulong's avatar jiangxiulong

退积分四舍五入改成ROUND_DOWN

parent 3fa9c8f9
...@@ -274,7 +274,7 @@ public class KylinRefundsStatusServiceImpl { ...@@ -274,7 +274,7 @@ public class KylinRefundsStatusServiceImpl {
} }
} }
// 退积分 // 退积分
ResponseDto<String> de2111 = feignStoneIntegralClient.de2111(orderInfo.getUserId(), refundCallbackParam.getRefundPrice().setScale(0, BigDecimal.ROUND_HALF_UP).intValue(), "演出订单退款:".concat(orderInfo.getPerformanceTitle()).concat(":").concat(orderInfo.getOrderCode().substring(orderInfo.getOrderCode().length() - 10))); ResponseDto<String> de2111 = feignStoneIntegralClient.de2111(orderInfo.getUserId(), refundCallbackParam.getRefundPrice().setScale(0, BigDecimal.ROUND_DOWN).intValue(), "演出订单退款:".concat(orderInfo.getPerformanceTitle()).concat(":").concat(orderInfo.getOrderCode().substring(orderInfo.getOrderCode().length() - 10)));
log.info("订单退款回调退积分结果:[de2111={}]", de2111); log.info("订单退款回调退积分结果:[de2111={}]", de2111);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment