更新了商品管理模块
This commit is contained in:
parent
68f73228fe
commit
34fe9e395d
|
@ -93,7 +93,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
|||
if (ObjectUtils.isEmpty(inventory) || inventory < 1) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "库存量不能小于1");
|
||||
}
|
||||
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) {
|
||||
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder < 0) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误");
|
||||
}
|
||||
if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) < 0) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user