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
68fa8fc2
Commit
68fa8fc2
authored
Sep 01, 2021
by
zhangch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化添加失能申请逻辑、优化查询可以进行复评申请的列表的SQL
parent
aa2209e4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
6 deletions
+30
-6
DisableController.java
...n/java/com/hungraim/ltc/controller/DisableController.java
+1
-2
DisableService.java
...rc/main/java/com/hungraim/ltc/service/DisableService.java
+2
-1
DisableServiceImpl.java
...ava/com/hungraim/ltc/service/impl/DisableServiceImpl.java
+25
-2
ChDisableEvaluateMapper.xml
...ice/src/main/resources/mapper/ChDisableEvaluateMapper.xml
+2
-1
No files found.
apply/apply-service/src/main/java/com/hungraim/ltc/controller/DisableController.java
View file @
68fa8fc2
...
...
@@ -292,8 +292,7 @@ public class DisableController {
if
(
chDisableApply
.
getMedicalType
()
==
null
)
{
return
Result
.
failed
(
"医保类型不能为空!"
);
}
disableService
.
addDisable
(
chDisableApply
);
return
Result
.
success
();
return
disableService
.
addDisable
(
chDisableApply
);
}
/**
...
...
apply/apply-service/src/main/java/com/hungraim/ltc/service/DisableService.java
View file @
68fa8fc2
...
...
@@ -3,6 +3,7 @@ package com.hungraim.ltc.service;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.hungraim.ltc.pojo.entity.disable.*
;
import
com.hungraim.ltc.pojo.vo.disable.*
;
import
com.hungraim.ltc.util.Result
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
...
...
@@ -28,7 +29,7 @@ public interface DisableService {
*/
DisableExamineInfoVO
disableExamineInfo
(
String
applyId
);
void
addDisable
(
ChDisableApply
chDisableApply
);
Result
addDisable
(
ChDisableApply
chDisableApply
);
void
disableExamine
(
String
applyId
,
String
checkName
,
Short
applyStatus
,
String
checkRemark
);
...
...
apply/apply-service/src/main/java/com/hungraim/ltc/service/impl/DisableServiceImpl.java
View file @
68fa8fc2
...
...
@@ -2,6 +2,7 @@ package com.hungraim.ltc.service.impl;
import
cn.hutool.core.bean.BeanUtil
;
import
cn.hutool.core.util.StrUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.hungraim.ltc.api.AttachFeignService
;
...
...
@@ -114,11 +115,33 @@ public class DisableServiceImpl implements DisableService {
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Override
public
void
addDisable
(
ChDisableApply
chDisableApply
)
{
public
Result
addDisable
(
ChDisableApply
chDisableApply
)
{
// 先查询当前人员有没有进行过首次申请,如果进行过就返回错误,如果当前人员有不是审核通过的复评申请,同样返回错误
// 姓名和身份证号相同视为同一个人
Short
applyMethod
=
chDisableApply
.
getApplyMethod
();
if
(
Objects
.
equals
(
Short
.
valueOf
(
"1"
),
applyMethod
))
{
// 首次申请校验
List
<
ChDisableApply
>
chDisableApplies
=
disableApplyMapper
.
selectList
(
new
LambdaQueryWrapper
<
ChDisableApply
>()
.
eq
(
ChDisableApply:
:
getRealName
,
chDisableApply
.
getRealName
())
.
eq
(
ChDisableApply:
:
getCertiCode
,
chDisableApply
.
getCertiCode
())
.
eq
(
ChDisableApply:
:
getApplyMethod
,
1
));
if
(
chDisableApplies
.
size
()
>
0
)
{
return
Result
.
failed
(
"该人员已经进行了首次申请"
);
}
}
else
if
(
Objects
.
equals
(
Short
.
valueOf
(
"1"
),
applyMethod
))
{
// 复评申请校验
List
<
ChDisableApply
>
chDisableApplies
=
disableApplyMapper
.
selectList
(
new
LambdaQueryWrapper
<
ChDisableApply
>()
.
eq
(
ChDisableApply:
:
getRealName
,
chDisableApply
.
getRealName
())
.
eq
(
ChDisableApply:
:
getCertiCode
,
chDisableApply
.
getCertiCode
())
.
eq
(
ChDisableApply:
:
getApplyMethod
,
2
).
ne
(
ChDisableApply:
:
getApplyStatus
,
2
));
if
(
chDisableApplies
.
size
()
>
0
)
{
return
Result
.
failed
(
"该人员有尚未审核通过的复评申请"
);
}
}
chDisableApply
.
setEffTime
(
new
Date
());
disableApplyMapper
.
insert
(
chDisableApply
);
this
.
updateAttachs
(
chDisableApply
);
return
Result
.
success
();
}
/**
...
...
assessment/assessment-service/src/main/resources/mapper/ChDisableEvaluateMapper.xml
View file @
68fa8fc2
...
...
@@ -349,7 +349,8 @@
apply.BIRTHDAY birthday,
apply.certi_code certiCode,
apply.tel tel
from CH_APR_TASK task
from CH_DISABLE_INFO info
left join CH_APR_TASK task ON info.LAST_TASK_ID = task.id
--适用机构
left join CH_FND_ORGAN fndOrgan on task.ORGAN_ID = fndOrgan.ORGAN_ID
--失能申请表
...
...
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