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

Commit 939c980d authored by jiangxiulong's avatar jiangxiulong

add try applyrefund

parent 6508d91a
......@@ -93,6 +93,7 @@ public class KylinOrderRefundsServiceImpl extends ServiceImpl<KylinOrderRefundsM
private MongoConverter mongoConverter;
public ResponseDto refundApply(RefundApplyParam refundApplyParam, String authId, String authName) {
try {
String orderTicketsId = refundApplyParam.getOrderTicketsId();
List<String> ticketEntityIds = refundApplyParam.getTicketEntityIds();
List<BigDecimal> entitiesPrice = refundApplyParam.getEntitiesPrice();
......@@ -222,6 +223,10 @@ public class KylinOrderRefundsServiceImpl extends ServiceImpl<KylinOrderRefundsM
} else {
return ResponseDto.failure("操作失败");
}
} catch (Exception e) {
log.error("orderApplyException e[{}]", e);
return ResponseDto.failure("操作失败");
}
}
public ResponseDto refundCheckStatus(RefundApplyParam refundApplyParam, String authId, String authName) {
......
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