| | |
| | | package com.yeshi.fanli.util.activity;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | | import com.yeshi.fanli.util.taobao.TaoBaoUtil;
|
| | |
|
| | | public class ActivityUtil {
|
| | |
|
| | | public static String getGoodsShowPrice(TaoBaoGoodsBrief tb) {
|
| | | if (tb != null)
|
| | | return "券后价:¥" + TaoBaoUtil.getAfterUseCouplePrice(tb);
|
| | | else
|
| | | return "";
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.util.activity; |
| | | |
| | | import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief; |
| | | import com.yeshi.fanli.util.taobao.TaoBaoUtil; |
| | | |
| | | public class ActivityUtil { |
| | | |
| | | public static String getGoodsShowPrice(TaoBaoGoodsBrief tb) { |
| | | if (tb != null) |
| | | return "券后价:¥" + TaoBaoUtil.getCouponPrice(tb); |
| | | else |
| | | return ""; |
| | | } |
| | | |
| | | } |