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
e373168d
Commit
e373168d
authored
Sep 10, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refeat(jyjc): 报检规则4.0开发
1.报检规则联调自测,报检申请表未写入对接单位code
parent
5a6a5bf6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
JyjcInspectionApplicationServiceImpl.java
...iz/service/impl/JyjcInspectionApplicationServiceImpl.java
+3
-2
JyjcInspectionResultServiceImpl.java
...yjc/biz/service/impl/JyjcInspectionResultServiceImpl.java
+1
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/JyjcInspectionApplicationServiceImpl.java
View file @
e373168d
...
...
@@ -835,7 +835,7 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
LambdaQueryWrapper
<
JyjcOpeningApplication
>
queryWrapper
=
new
LambdaQueryWrapper
<>();
queryWrapper
.
eq
(
JyjcOpeningApplication:
:
getUnitCode
,
applicationModel
.
getInspectionUnitCode
());
queryWrapper
.
eq
(
JyjcOpeningApplication:
:
getStatus
,
FlowStatusEnum
.
TO_BE_FINISHED
.
getName
());
queryWrapper
.
select
(
JyjcOpeningApplication:
:
getResultType
,
BaseEntity:
:
getSequenceNbr
);
queryWrapper
.
select
(
JyjcOpeningApplication:
:
getResultType
,
BaseEntity:
:
getSequenceNbr
,
JyjcOpeningApplication:
:
getDockingUnitCode
);
queryWrapper
.
orderByDesc
(
JyjcOpeningApplication:
:
getRecDate
);
queryWrapper
.
last
(
"limit 1"
);
List
<
JyjcOpeningApplication
>
applicationList
=
jyjcOpeningApplicationService
.
list
(
queryWrapper
);
...
...
@@ -1365,7 +1365,7 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
private
void
replaceNull2EmptyString
(
JSONObject
dto2
)
{
dto2
.
forEach
((
k
,
v
)->{
if
(
v
==
null
){
if
(
v
==
null
||
"null"
.
equals
(
v
)
){
dto2
.
put
(
k
,
""
);
}
});
...
...
@@ -1528,6 +1528,7 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
dto2
.
put
(
EQU_STATE
,
status
);
}
dto2
.
put
(
"record"
,
dto2
.
get
(
SEQUENCE_NBR
));
replaceNull2EmptyString
(
dto2
);
list
.
add
(
dto2
);
}
// 填充地址
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/JyjcInspectionResultServiceImpl.java
View file @
e373168d
...
...
@@ -217,6 +217,7 @@ public class JyjcInspectionResultServiceImpl extends BaseService<JyjcInspectionR
}
v
.
setSourceResult
(
ResultTypeEnum
.
getNameByCode
(
v
.
getResultType
()));
v
.
setIdentity
(
identity
);
v
.
setUseInnerCode
(
"null"
.
equals
(
v
.
getUseInnerCode
())
?
""
:
v
.
getUseInnerCode
());
});
return
resultPage
;
}
...
...
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