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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
EquipmentSpecificSerivceImpl.java
...quipmanage/service/impl/EquipmentSpecificSerivceImpl.java
+12
-5
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,15 +1494,22 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
finalVo
.
setInstanceId
(
finalVo
.
getBuildId
());
}
else
{
WarehouseStructure
warehouseStructure
=
warehouseStructureMapper
.
selectById
(
finalVo
.
getParentId
());
if
(
0
==
warehouseStructure
.
getParentId
())
{
finalVo
.
setInstanceId
(
finalVo
.
getParentId
());
}
else
{
finalVo
.
setInstanceId
(
String
.
valueOf
(
warehouseStructure
.
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
())
{
return
warehouseStructure
;
}
else
{
warehouseStructure
=
warehouseStructureMapper
.
selectById
(
warehouseStructure
.
getParentId
());
return
getWarehouseStructure
(
warehouseStructure
);
}
}
@Override
public
String
getEquipSpeTypeByQrcode
(
String
qrCode
)
{
List
<
EquipmentCategory
>
list
=
this
.
baseMapper
.
getEquipSpeTypeByQrcode
(
qrCode
);
...
...
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