记得上下班打卡 | git大法好,push需谨慎

Commit c76c85ad authored by jiangxiulong's avatar jiangxiulong

getTicketType 不对

parent 0349b364
...@@ -737,16 +737,17 @@ public class DataUtils { ...@@ -737,16 +737,17 @@ public class DataUtils {
// 快递地址 // 快递地址
public OrderRefundAddress getRefundAddress(String getTicketType) { public OrderRefundAddress getRefundAddress(String getTicketType) {
if (getTicketType.equals("express")) { // 快递票 log.info("getRefundAddress getTicketType[{}]", getTicketType);
return null; // if (getTicketType.equals("express")) { // 快递票
} else { // 电子票 // return null;
// } else { // 电子票
Object obj = redisUtil.get(KylinRedisConst.ORDER_REFUND_ADDRESS); Object obj = redisUtil.get(KylinRedisConst.ORDER_REFUND_ADDRESS);
if (obj == null) { if (obj == null) {
return null; return null;
} else { } else {
return (OrderRefundAddress) obj; return (OrderRefundAddress) obj;
} }
} // }
} }
// 快递票退款物流信息 // 快递票退款物流信息
......
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