|
@@ -153,23 +153,8 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
return flag;
|
|
|
}
|
|
|
|
|
|
- HashSet<Long> set = new HashSet<>();
|
|
|
-
|
|
|
- while (parentId != null && parentId > 0) {
|
|
|
- TbLocation location = selectTbLocationById(parentId);
|
|
|
- set.add(location.getId());
|
|
|
- parentId = location.getParentId();
|
|
|
- }
|
|
|
-
|
|
|
- StringBuilder stringBuilder = new StringBuilder("");
|
|
|
- if (!set.isEmpty()) {
|
|
|
- for (Long id : set) {
|
|
|
- stringBuilder.append(id);
|
|
|
- stringBuilder.append(",");
|
|
|
- }
|
|
|
- }
|
|
|
- stringBuilder.append(tbLocation.getId());
|
|
|
- tbLocation.setSequence(stringBuilder.toString());
|
|
|
+ String sequence = getSequence(parentId, tbLocation.getId());
|
|
|
+ tbLocation.setSequence(sequence);
|
|
|
return tbLocationMapper.updateTbLocation(tbLocation);
|
|
|
}
|
|
|
|
|
@@ -183,9 +168,32 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
public int updateTbLocation(TbLocation tbLocation)
|
|
|
{
|
|
|
tbLocation.setUpdateTime(DateUtils.getNowDate());
|
|
|
+ Long parentId = tbLocation.getParentId();
|
|
|
+
|
|
|
+ String sequence = getSequence(parentId, tbLocation.getId());
|
|
|
+ tbLocation.setSequence(sequence);
|
|
|
return tbLocationMapper.updateTbLocation(tbLocation);
|
|
|
}
|
|
|
|
|
|
+ private String getSequence(Long parentId, Long locationId) {
|
|
|
+ HashSet<Long> set = new HashSet<>();
|
|
|
+ while (parentId != null && parentId > 0) {
|
|
|
+ TbLocation location = selectTbLocationById(parentId);
|
|
|
+ set.add(location.getId());
|
|
|
+ parentId = location.getParentId();
|
|
|
+ }
|
|
|
+
|
|
|
+ StringBuilder stringBuilder = new StringBuilder("");
|
|
|
+ if (!set.isEmpty()) {
|
|
|
+ for (Long id : set) {
|
|
|
+ stringBuilder.append(id);
|
|
|
+ stringBuilder.append(",");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ stringBuilder.append(locationId);
|
|
|
+ return stringBuilder.toString();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 批量删除所属位置
|
|
|
*
|