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

Commit c76c85ad authored by jiangxiulong's avatar jiangxiulong

getTicketType 不对

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