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

Commit faa13d00 authored by 胡佳晨's avatar 胡佳晨

积分商品 分类列表 1000分页 增加库存-999无限库存

parent 33e52415
...@@ -124,9 +124,9 @@ public class StoneScoreItemsServiceImpl implements IStoneScoreItemsService { ...@@ -124,9 +124,9 @@ public class StoneScoreItemsServiceImpl implements IStoneScoreItemsService {
int scoreStatus = 2; int scoreStatus = 2;
int limitStatus = 2; int limitStatus = 2;
//判断库存 //判断库存
if (restCount <= 0) { if (restCount <= 0 && restCount != -999) {
data.setStatus(8); data.setStatus(8);
} else if (restCount <= 50) { } else if (restCount <= 50 && restCount != -999) {
data.setStatus(9); data.setStatus(9);
} }
//判断积分是否够 //判断积分是否够
......
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