Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
long-tern-care-service
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
hubin
long-tern-care-service
Commits
b961ed35
Commit
b961ed35
authored
Mar 15, 2023
by
zhangwanglin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev_20230309_66_69_70问题优化_zxl' into dev_ch_master
parents
92003f8c
708e63a1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
TaskServiceImpl.java
...n/java/com/hungraim/ltc/service/impl/TaskServiceImpl.java
+2
-1
ChDisableEvaluateMapper.xml
...ice/src/main/resources/mapper/ChDisableEvaluateMapper.xml
+1
-1
No files found.
assessment/assessment-service/src/main/java/com/hungraim/ltc/service/impl/TaskServiceImpl.java
View file @
b961ed35
...
...
@@ -91,6 +91,7 @@ public class TaskServiceImpl implements TaskService {
* @param daysRemaining 评定剩余天数
* @param taskStatus 任务状态
* @param isReturn 是否退回
* @param type 0-评定任务分配检索 1-评定报告录入查询失能人员 2-评定任务查询检索
*/
@Override
public
Page
<
TaskDistributionVO
>
taskDistributionList
(
Page
<
TaskDistributionVO
>
page
,
String
organId
,
String
provincial
,
String
city
,
...
...
@@ -101,7 +102,7 @@ public class TaskServiceImpl implements TaskService {
organIds
=
Arrays
.
asList
(
organId
.
split
(
","
));
}
int
aprType
=
0
;
if
(
type
==
1
){
if
(
type
!=
2
){
if
(
StrUtil
.
isNotBlank
(
realName
)||
StrUtil
.
isNotBlank
(
certiCode
))
{
int
count
=
taskMapper
.
queryApplyCount
(
realName
,
certiCode
,
2
,
2
);
aprType
=
count
>
0
?
1
:
0
;
//count>0 复评已过,查询复评数据,反之查询初评数据。
...
...
assessment/assessment-service/src/main/resources/mapper/ChDisableEvaluateMapper.xml
View file @
b961ed35
...
...
@@ -67,7 +67,7 @@
left join ch_refuse_reason reason on push.refuse_reason = reason.refuse_reason_id
left join CH_FND_ORGAN fndOrgan on task.ORGAN_ID = fndOrgan.ORGAN_ID
<where>
<if
test=
"aprType != null and type
== 1
"
>
<if
test=
"aprType != null and type
!= 2
"
>
and task.APR_TYPE = #{aprType}
</if>
<if
test=
"organIds != null"
>
...
...
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