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

Commit 19d31272 authored by jiangxiulong's avatar jiangxiulong

refund

parent 44888984
......@@ -22,7 +22,7 @@
<label>退款状态:</label>
<select name="status">
<option value="">全部</option>
<option value="0">请求退款</option>
<option value="888">请求退款</option>
<option value="2">取消退款</option>
<option value="1">一审审核通过</option>
<option value="5">一审驳回退款</option>
......
......@@ -444,10 +444,12 @@ public class KylinRefundsStatusServiceImpl {
if (!success) {
String msg = (String) hashMapResult.get("message");
log.info("退款pay返回失败" + msg);
return false;
// return false;
continue;
}
} catch (Exception e) {
log.info("退款请求pay失败e" + e.getMessage());
continue;
}
// 更新退款表
kylinOrderRefundsMapper.update(
......
......@@ -48,9 +48,12 @@
<if test="orderCode!=''">
AND b.order_code = #{orderCode}
</if>
<if test="status!=''">
<if test="status!='' and status != 888">
AND a.status = #{status}
</if>
<if test="status == 888">
AND a.status = 0
</if>
</where>
ORDER BY mid DESC
</select>
......
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