Commit da581850 by ping.wu

积分抵扣描述修改

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