|
|
|
@ -149,7 +149,14 @@ public class AuditServiceImpl implements AuditService { |
|
|
|
|
|
|
|
}else if (order.getType()==2) { //退款 |
|
|
|
//对非强制退款订单进行退红包校验 |
|
|
|
if (order.getAuditStatus()!=4&&price!= null&&linkId!= null){ |
|
|
|
if (price== null&&linkId== null) |
|
|
|
{ |
|
|
|
String logMsg="旧版订单暂不支持退款,请联系工作人员进行操作"; |
|
|
|
log.error(logMsg); |
|
|
|
AuditContext.setFailMsg(logMsg); |
|
|
|
return false; |
|
|
|
} |
|
|
|
if (order.getAuditStatus()!=4){ |
|
|
|
try { |
|
|
|
redService.checkRed(price, linkId); |
|
|
|
} catch (RedCheckException e) { |
|
|
|
|