Commit 91837fd8 authored by 周健威's avatar 周健威

Merge remote-tracking branch 'origin/dev' into dev

parents 7d12bf98 9c8a4d66
...@@ -1078,10 +1078,12 @@ public class OrderInfoBiz extends BaseBiz<OrderInfoMapper, OrderInfo> { ...@@ -1078,10 +1078,12 @@ public class OrderInfoBiz extends BaseBiz<OrderInfoMapper, OrderInfo> {
old.setPayType(3); old.setPayType(3);
old.setPayTime(new Date()); old.setPayTime(new Date());
old.setAuditStatus(1); old.setAuditStatus(1);
old.setPayStatus(2);
old.setStatus(OrderStatusEnum.ORDER_SEND.getType()); old.setStatus(OrderStatusEnum.ORDER_SEND.getType());
updateSelectiveByIdRe(old); updateSelectiveByIdRe(old);
} else { } else {
old.setAuditStatus(2); old.setAuditStatus(2);
old.setPayStatus(1);
old.setAuditReason(orderInfo.getAuditReason()); old.setAuditReason(orderInfo.getAuditReason());
updateSelectiveByIdRe(old); updateSelectiveByIdRe(old);
} }
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<if test="sortType == 2"> <if test="sortType == 2">
order by ni.rank DESC order by ni.rank DESC
</if> </if>
<if test="sortType != 3"> <if test="sortType == 3">
order by ni.upd_time DESC order by ni.upd_time DESC
</if> </if>
</select> </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