|
@@ -13,6 +13,8 @@ import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
|
import com.ruoyi.asset.domain.TbLocation;
|
|
|
import com.ruoyi.asset.service.ITbLocationService;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
/**
|
|
|
* 所属位置Service业务层处理
|
|
|
*
|
|
@@ -22,7 +24,7 @@ import com.ruoyi.asset.service.ITbLocationService;
|
|
|
@Service
|
|
|
public class TbLocationServiceImpl implements ITbLocationService
|
|
|
{
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private TbLocationMapper tbLocationMapper;
|
|
|
|
|
|
/**
|
|
@@ -49,6 +51,37 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
return tbLocationMapper.selectTbLocationList(tbLocation);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<TbLocation> selectTree(Long id) {
|
|
|
+ List<TbLocation> locations = new ArrayList<>();
|
|
|
+ if (id != null) {
|
|
|
+ TbLocation location = selectTbLocationById(id);
|
|
|
+ locations.add(location);
|
|
|
+ } else {
|
|
|
+ TbLocation location = new TbLocation();
|
|
|
+ location.setParentId(0L);
|
|
|
+ locations = selectTbLocationList(location);
|
|
|
+ }
|
|
|
+ for (TbLocation location : locations) {
|
|
|
+ List<TbLocation> tbLocations = buildChildren(location);
|
|
|
+ location.setChildren(tbLocations);
|
|
|
+ }
|
|
|
+ return locations;
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<TbLocation> buildChildren(TbLocation location) {
|
|
|
+ TbLocation sunLocation = new TbLocation();
|
|
|
+ sunLocation.setParentId(location.getId());
|
|
|
+ List<TbLocation> locations = selectTbLocationList(sunLocation);
|
|
|
+ if (locations != null && !locations.isEmpty()) {
|
|
|
+ for (TbLocation tbLocation : locations) {
|
|
|
+ List<TbLocation> tbLocations = buildChildren(tbLocation);
|
|
|
+ tbLocation.setChildren(tbLocations);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return locations;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 新增所属位置
|
|
|
*
|
|
@@ -59,11 +92,16 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
public int insertTbLocation(TbLocation tbLocation)
|
|
|
{
|
|
|
Long parentId = tbLocation.getParentId();
|
|
|
- if (selectTbLocationById(parentId) == null) {
|
|
|
- return 0;
|
|
|
+ if (parentId == null || parentId == 0) {
|
|
|
+ tbLocation.setParentId(0L);
|
|
|
+ } else {
|
|
|
+ if (selectTbLocationById(parentId) == null) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
String dateTimeId = DateUtils.dateTimeNow("yyyyMMddHHmmssSSS");
|
|
|
- String orderNumber = "PD" + dateTimeId;
|
|
|
+ String orderNumber = "WZ" + dateTimeId;
|
|
|
|
|
|
tbLocation.setNumber(orderNumber);
|
|
|
tbLocation.setCreateTime(DateUtils.getNowDate());
|