fix: 异常加上状态码

pull/3/head
tangqian 2023-05-29 21:23:49 +08:00
parent eddde958a5
commit 8ee487046c
1 changed files with 2 additions and 2 deletions

View File

@ -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("该挡位:" + 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("该挡位:" + info.getName() + "你已购买,请勿重复操作");
throw new ServiceException(200, "该挡位:" + info.getName() + "你已购买,请勿重复操作");
}
});
}