|
@@ -93,6 +93,7 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
TbLocation location = selectTbLocationById(id);
|
|
|
TreeSelect treeSelect = new TreeSelect();
|
|
|
treeSelect.setId(location.getId());
|
|
|
+ treeSelect.setNumber(location.getNumber());
|
|
|
treeSelect.setLabel(location.getName());
|
|
|
treeSelects.add(treeSelect);
|
|
|
} else {
|
|
@@ -102,6 +103,7 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
for (TbLocation tbLocation : locations) {
|
|
|
TreeSelect treeSelect = new TreeSelect();
|
|
|
treeSelect.setId(tbLocation.getId());
|
|
|
+ treeSelect.setNumber(tbLocation.getNumber());
|
|
|
treeSelect.setLabel(tbLocation.getName());
|
|
|
treeSelects.add(treeSelect);
|
|
|
}
|
|
@@ -122,6 +124,7 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
for (TbLocation tbLocation : locations) {
|
|
|
TreeSelect childrenTreeSelect = new TreeSelect();
|
|
|
childrenTreeSelect.setId(tbLocation.getId());
|
|
|
+ childrenTreeSelect.setNumber(tbLocation.getNumber());
|
|
|
childrenTreeSelect.setLabel(tbLocation.getName());
|
|
|
List<TreeSelect> treeSelectList = buildChildrenSelect(childrenTreeSelect);
|
|
|
childrenTreeSelect.setChildren(treeSelectList);
|