Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
one-certificate-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
one-certificate-system
Commits
c7ce01f3
Commit
c7ce01f3
authored
Sep 27, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/first' into first
parents
f5f2a794
0bb71a9b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
one-certificate-manager/src/main/java/com/mortals/xhx/module/child/service/impl/ChildLicenseServiceImpl.java
...hx/module/child/service/impl/ChildLicenseServiceImpl.java
+6
-0
one-certificate-manager/src/main/java/com/mortals/xhx/module/record/service/impl/RetainLogServiceImpl.java
.../xhx/module/record/service/impl/RetainLogServiceImpl.java
+2
-0
No files found.
one-certificate-manager/src/main/java/com/mortals/xhx/module/child/service/impl/ChildLicenseServiceImpl.java
View file @
c7ce01f3
...
...
@@ -72,6 +72,12 @@ public class ChildLicenseServiceImpl extends AbstractCRUDServiceImpl<ChildLicens
}
for
(
ChildLicenseEntity
child
:
oldChildList
)
{
child
.
setApplyId
(
applyLogEntity
.
getId
());
child
.
setMarketEntityName
(
applyLogEntity
.
getEnterpriseName
());
child
.
setLicenseCode
(
applyLogEntity
.
getCertificateCode
());
child
.
setLegalPersonName
(
applyLogEntity
.
getLegalPerson
());
child
.
setCreditCode
(
applyLogEntity
.
getSocialCode
());
child
.
setProductLicenseTime
(
applyLogEntity
.
getIssueTime
());
child
.
setCertQRCode
(
applyLogEntity
.
getQRCode
());
if
(
documentIdMap
.
size
()
>
0
&&
documentIdMap
.
containsKey
(
child
.
getDocumentId
()))
{
child
.
setChildStatus
(
StatusEnum
.
ENABLE
.
getValue
());
}
else
{
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/module/record/service/impl/RetainLogServiceImpl.java
View file @
c7ce01f3
...
...
@@ -109,6 +109,8 @@ public class RetainLogServiceImpl extends AbstractCRUDServiceImpl<RetainLogDao,
update
.
setSocialCode
(
applyLogEntity
.
getSocialCode
()+
"_zx"
);
update
.
setUpdateTime
(
new
Date
());
applyLogDao
.
update
(
update
);
List
<
ChildLicenseEntity
>
childLicenseEntityList
=
childLicenseService
.
find
(
new
ChildLicenseQuery
().
applyId
(
applyLogEntity
.
getId
()));
childLicenseService
.
removeList
(
childLicenseEntityList
,
context
);
}
}
}
...
...
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