Commit 33d06947 by ping.wu

积分抵扣描述修改

parent ceeeb53f
......@@ -1051,8 +1051,8 @@ public class OrderAdapter {
if (OrderAccountType.CUSTOMER_SUB.getCode().equals(accountBean.getType())) {
customerScoreAmount = accountBean.getPrice() < 0 ? 0 - accountBean.getPrice() : accountBean.getPrice();
DecimalFormat decimalFormat = new DecimalFormat("#.00");
String customerScoreAmountStr = decimalFormat.format(customerScoreAmount / 100.0);
customerScorePrompt = "积分抵扣-¥" + customerScoreAmountStr;
customerScorePrompt = decimalFormat.format(customerScoreAmount / 100.0);
// customerScorePrompt = "积分抵扣-¥" + customerScoreAmountStr;
}
}
}
......
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