|
|
package com.yohoufo.order.service.support;
|
|
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.yohobuy.ufo.model.order.constants.OrderDetailDesc;
|
|
|
import com.yohoufo.common.helper.ImageUrlAssist;
|
|
|
import com.yohoufo.dal.order.model.SellerOrderGoods;
|
|
|
import com.yohobuy.ufo.model.order.constants.OrderConstant;
|
...
|
...
|
@@ -128,12 +129,18 @@ public class ShoppingSupport { |
|
|
if (damagedPrice == null){
|
|
|
return "";
|
|
|
}
|
|
|
StringBuilder damagesDesc = new StringBuilder();
|
|
|
damagesDesc.append(OrderConstant.DAMAGES_DESC);
|
|
|
damagesDesc.append(OrderConstant.MONEY_SIGN);
|
|
|
damagesDesc.append(damagedPrice);
|
|
|
damagesDesc.append(OrderConstant.MONEY_UNIT);
|
|
|
return damagesDesc.toString();
|
|
|
/*
|
|
|
温馨提示:
|
|
|
1.付款后,若卖家原因超时未发货或者商品查验未通过而导致交易失败,除了全额退款外,您还将获得卖家赔偿金¥xxxxx元;
|
|
|
2.UFO平台的商品价格根据市场规律波动较大,请您按心理价位购买;
|
|
|
3..UFO平台出售的商品多为卖家个人二手闲置物品,存在商品数量有限等情况,故不适用七日无理由退货。非商品质量问题平台不支持退换货服务,但买家可在平台上再次出售。
|
|
|
具体退换货规则详见《买家须知》
|
|
|
|
|
|
*/
|
|
|
String damagesDesc =
|
|
|
new String(OrderDetailDesc.PaymentTips.DAMAGES_DESC.toCharArray());
|
|
|
|
|
|
return String.format(damagesDesc, damagedPrice.toPlainString());
|
|
|
|
|
|
}
|
|
|
} |
...
|
...
|
|