fix: 异常加上状态码
parent
985778eb03
commit
3b9484ddaf
|
@ -1502,7 +1502,7 @@ public class StoreOrderServiceImpl extends ServiceImpl<StoreOrderMapper, StoreOr
|
|||
rechargeGearDOList.forEach(rechargeGearDO -> {
|
||||
Boolean flag = phoneRecordService.verifyPhone(request.getUserPhone(), rechargeGearDO.getRefundAmount().intValue() + "");
|
||||
if (flag) {
|
||||
throw new ServiceException(200, "该挡位:" + rechargeGearDO.getName() + "你已购买,一年内无法再次办理同套餐");
|
||||
throw new ServiceException(200, rechargeGearDO.getName() + ",已办理套餐,一年内无法重复办理");
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -1516,7 +1516,7 @@ public class StoreOrderServiceImpl extends ServiceImpl<StoreOrderMapper, StoreOr
|
|||
Map<Long, List<PhoneRecordDO>> collect1 = infoDOS.stream().collect(Collectors.groupingBy(PhoneRecordDO::getRechargeGearId));
|
||||
orderInfos.forEach(info -> {
|
||||
if (!CollectionUtils.isEmpty(collect1.get(info.getGearId()))) {
|
||||
throw new ServiceException(200, "该挡位:" + info.getName() + "你已购买,一年内无法再次办理同套餐");
|
||||
throw new ServiceException(200, info.getName() + ",已办理套餐,一年内无法重复办理");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue