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
90a78eaf
Commit
90a78eaf
authored
Dec 16, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop_tzs_main' into develop_tzs_main
parents
31f19a0d
aabcc608
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
JgUseRegistrationMapper.xml
...api/src/main/resources/mapper/JgUseRegistrationMapper.xml
+8
-8
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+6
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/resources/mapper/JgUseRegistrationMapper.xml
View file @
90a78eaf
...
@@ -1495,14 +1495,14 @@
...
@@ -1495,14 +1495,14 @@
FROM
FROM
privilege_company pc
privilege_company pc
INNER JOIN tz_base_enterprise_info bi ON bi.supervise_org_code LIKE CONCAT ( pc.org_code, '%' )
INNER JOIN tz_base_enterprise_info bi ON bi.supervise_org_code LIKE CONCAT ( pc.org_code, '%' )
INNER JOIN tzs_jg_use_registration ur ON
ur.use_unit_credit_code = bi.use_unit_code
INNER JOIN tzs_jg_use_registration tjur ON tj
ur.use_unit_credit_code = bi.use_unit_code
AND ur.status = '已完成'
AND
tj
ur.status = '已完成'
INNER JOIN tzs_jg_use_registration_eq t
e ON te.equip_transfer_id =
ur.sequence_nbr
INNER JOIN tzs_jg_use_registration_eq t
jure ON tjure.equip_transfer_id = tj
ur.sequence_nbr
INNER JOIN idx_biz_jg_register_info jri ON te.equ_id = jri.record
INNER JOIN idx_biz_jg_register_info jri ON t
jur
e.equ_id = jri.record
WHERE pc.company_code = #{cityCode}
and (ur.audit_pass_date between #{beginDate} and #{endDate})
WHERE pc.company_code = #{cityCode}
and
ur.is_delete = 0
and
(tjur.audit_pass_date between #{beginDate} and #{endDate})
GROUP BY
and tjur.is_delete = 0
jri.equ_category
GROUP BY
jri.equ_category
</select>
</select>
<select
id=
"getUseRegisterCount"
resultType=
"java.util.Map"
>
<select
id=
"getUseRegisterCount"
resultType=
"java.util.Map"
>
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
View file @
90a78eaf
...
@@ -4070,10 +4070,14 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -4070,10 +4070,14 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
workflowResultDto
.
setNextTaskCode
(
"已完成"
);
workflowResultDto
.
setNextTaskCode
(
"已完成"
);
workflowResultDto
.
setNextTaskId
(
jgUseRegistration
.
getNextTaskId
());
workflowResultDto
.
setNextTaskId
(
jgUseRegistration
.
getNextTaskId
());
workflowResultDto
.
setNextExecutorUserIds
(
jgUseRegistration
.
getNextExecuteUserIds
());
workflowResultDto
.
setNextExecutorUserIds
(
jgUseRegistration
.
getNextExecuteUserIds
());
JSONObject
jsonObject
=
Optional
.
ofNullable
(
jgRegistrationHistoryService
.
queryLatestRegistrationHistory
(
jgUseRegistration
.
getSequenceNbr
()))
.
map
(
JgRegistrationHistory:
:
getChangeData
)
.
map
(
JSON:
:
parseObject
)
.
orElse
(
new
JSONObject
());
if
(
jgUseRegistration
.
getManageType
().
equals
(
"unit"
))
{
if
(
jgUseRegistration
.
getManageType
().
equals
(
"unit"
))
{
this
.
updateUseRegUnitData
(
jgUseRegistration
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
false
,
null
);
this
.
updateUseRegUnitData
(
jgUseRegistration
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
false
,
jsonObject
);
}
else
{
}
else
{
this
.
updateData
(
jgUseRegistration
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
null
,
false
,
null
);
this
.
updateData
(
jgUseRegistration
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
null
,
false
,
jsonObject
);
}
}
});
});
}
}
...
...
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