Commit 69c878c5 by 周晓航

新增逻辑, 黑名单用户 不可使用 积分抵扣/支付

parent d229222d
......@@ -64,7 +64,7 @@ public class MemberBlacklistHandler {
// orderBlacklistResp.setSurplusAmount(surplusAmount < 0 ? 0L : surplusAmount);
// return orderBlacklistResp;
// 您的消费额度还有3元,暂无法支付,如有疑问,详询客服热线4008899096
long amount = surplusAmount < 0L ? 0L : surplusAmount * 100;
long amount = surplusAmount < 0L ? 0L : surplusAmount / 100;
sb.append("您的消费额度还有")
.append(amount)
.append("元,暂无法支付,如有疑问,详询客服热线")
......
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