Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
40fc09fe
Commit
40fc09fe
authored
Jun 08, 2022
by
zhangsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
改bug
parent
9a91cd9b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
EquipmentSpecificSerivceImpl.java
...quipmanage/service/impl/EquipmentSpecificSerivceImpl.java
+11
-4
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentSpecificSerivceImpl.java
View file @
40fc09fe
...
@@ -1494,13 +1494,20 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
...
@@ -1494,13 +1494,20 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
finalVo
.
setInstanceId
(
finalVo
.
getBuildId
());
finalVo
.
setInstanceId
(
finalVo
.
getBuildId
());
}
else
{
}
else
{
WarehouseStructure
warehouseStructure
=
warehouseStructureMapper
.
selectById
(
finalVo
.
getParentId
());
WarehouseStructure
warehouseStructure
=
warehouseStructureMapper
.
selectById
(
finalVo
.
getParentId
());
warehouseStructure
=
getWarehouseStructure
(
warehouseStructure
);
finalVo
.
setInstanceId
(
String
.
valueOf
(
warehouseStructure
.
getSourceId
()));
finalVo
.
setBizOrgCode
(
warehouseStructure
.
getBizOrgCode
());
}
return
finalVo
;
}
public
WarehouseStructure
getWarehouseStructure
(
WarehouseStructure
warehouseStructure
)
{
if
(
0
==
warehouseStructure
.
getParentId
())
{
if
(
0
==
warehouseStructure
.
getParentId
())
{
finalVo
.
setInstanceId
(
finalVo
.
getParentId
())
;
return
warehouseStructure
;
}
else
{
}
else
{
finalVo
.
setInstanceId
(
String
.
valueOf
(
warehouseStructure
.
getParentId
()
));
warehouseStructure
=
warehouseStructureMapper
.
selectById
(
warehouseStructure
.
getParentId
(
));
}
return
getWarehouseStructure
(
warehouseStructure
);
}
}
return
finalVo
;
}
}
@Override
@Override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment