Authored by chenchao

fix tips

... ... @@ -110,9 +110,9 @@ public class ShoppingSupport {
if (Objects.nonNull(shipFeeDetail = chargeResult.getShipFeeDetail())){
if (shipFeeDetail.getCutAmount()>0D){
expressFormula.setPromotionAside(OrderConstant.DELIVERY_DESC_ASIDE);
String normalShipFee = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(shipFeeDetail.getAmount());
expressFormula.setNormalAmount(normalShipFee);
}
String normalShipFee = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(shipFeeDetail.getAmount());
expressFormula.setNormalAmount(normalShipFee);
//
shipFee = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(shipFeeDetail.getFinalAmount());
}else{
... ... @@ -128,9 +128,10 @@ public class ShoppingSupport {
tariffFormula.setPromotion(OrderConstant.TAX_DESC);
if (tariffFee.getCutAmount()>0D){
tariffFormula.setPromotionAside(OrderConstant.TAX_DESC_ASIDE);
String tariffAmountDesc = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(tariffAmount);
tariffFormula.setNormalAmount(tariffAmountDesc);
}
String tariffAmountDesc = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(tariffAmount);
tariffFormula.setNormalAmount(tariffAmountDesc);
//
String finalTariffAmountDesc = OrderConstant.PLUS_SIGN + MathUtils.formatCurrencyStr(tariffFee.getFinalAmount());
tariffFormula.setPromotionAmount(finalTariffAmountDesc);
... ...