Commit 625acc73 by caiyt

修复商品分类排序调整问题

parent 1cac5c58
......@@ -137,22 +137,22 @@ public class GoodsCategoryServiceImpl implements IGoodsCategoryService
int size = goodsCategories.size();
for(int i=0;i<size;i++){
GoodsCategory goodsCategory = goodsCategories.get(i);
if(id.equals(goodsCategory.getId())){
if("1".equals(pointer)){
int index = i-1;
if(index<0){
lastId =id;
}else{
lastId = goodsCategories.get(index).getId().toString();
}
}else if("2".equals(pointer)){
int index=i+1;
if(index>=size){
lastId =id;
}else{
lastId = goodsCategories.get(index).getId().toString();
}
}
if (id.equals(goodsCategory.getId().toString())) {
if ("1".equals(pointer)) {
int lastIdx = i - 1;
if (lastIdx < 0) {
lastId = id;
} else {
lastId = goodsCategories.get(lastIdx).getId().toString();
}
} else if ("2".equals(pointer)) {
int lastIdx = i + 1;
if (lastIdx >= size) {
lastId = id;
} else {
lastId = goodsCategories.get(lastIdx).getId().toString();
}
}
}
}
......
......@@ -262,8 +262,6 @@ public class MachineApiServiceImpl {
}
machine.setState(status);
return machineMapper.updateMachine(machine);
}
public void updateOrder(Order order) {
......
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