Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ocrmanage
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
班迪
ocrmanage
Merge requests
!197
update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update
feature/zhuxiang
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
zhuxiang
requested to merge
feature/zhuxiang
into
develop
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
1dda3a3b
1 commit,
1 year ago
1 file
+
19
−
0
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ServiceSite/src/main/java/com/seasky/seaskyocr/application/command/claimAudit/QDPServiceImpl.java
+
19
−
0
Options
@@ -82,6 +82,25 @@ public class QDPServiceImpl implements QDPService {
claimAuditOcrOut
.
setValue
(
subIndex
.
toString
());
subIndex
++;
}
// 第一页的部分goodsName跳到了第二页
if
(
j
==
0
&&
i
>
0
)
{
if
(
"goodsName"
.
equals
(
claimAuditOcrOut
.
getKey
()))
{
String
value
=
claimAuditOcrOut
.
getValue
();
if
(
value
.
indexOf
(
"*"
)
>
0
)
{
String
preValue
=
value
.
substring
(
0
,
value
.
indexOf
(
"*"
));
String
oughtValue
=
value
.
substring
(
value
.
indexOf
(
"*"
));
claimAuditOcrOut
.
setValue
(
oughtValue
);
Map
<
String
,
Object
>
mapTemp
=
rebuiltMap
.
get
(
index
-
1
);
List
<
List
<
ClaimAuditOcrOut
>>
claimAuditOcrDetailListTemp
=
(
List
<
List
<
ClaimAuditOcrOut
>>)
mapTemp
.
get
(
"detailList"
);
List
<
ClaimAuditOcrOut
>
claimAuditOcrListTemp
=
claimAuditOcrDetailListTemp
.
get
(
claimAuditOcrDetailListTemp
.
size
()
-
1
);
for
(
ClaimAuditOcrOut
claimAuditOcrOutTemp
:
claimAuditOcrListTemp
)
{
if
(
"goodsName"
.
equals
(
claimAuditOcrOutTemp
.
getKey
()))
{
claimAuditOcrOutTemp
.
setValue
(
claimAuditOcrOutTemp
.
getValue
()
+
preValue
);
}
}
}
}
}
}
}
}