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
7af024ff
Commit
7af024ff
authored
May 06, 2022
by
蔡镇泽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
费用结算
parent
cbdc7167
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
AccountController.java
...om/hungraim/ltc/account/controller/AccountController.java
+1
-1
SrvTaskMapper.java
...main/java/com/hungraim/ltc/account/dao/SrvTaskMapper.java
+3
-3
No files found.
account/account-service/src/main/java/com/hungraim/ltc/account/controller/AccountController.java
View file @
7af024ff
...
...
@@ -83,7 +83,7 @@ public class AccountController {
* @return 返回机构结当月算详情
*/
@GetMapping
(
"/expenseSettlement"
)
public
Result
<
List
<
ExpenseSettlementVo
>
>
expenseSettlement
(
ExpenseSettlementReq
req
)
{
public
Result
<
ExpenseVo
>
expenseSettlement
(
ExpenseSettlementReq
req
)
{
if
(
null
==
req
.
getSrvOrganId
()
||
null
==
req
.
getAccountsTime
())
{
return
Result
.
failed
(
ResultCode
.
REQUEST_PARAM_ERROR
);
}
...
...
account/account-service/src/main/java/com/hungraim/ltc/account/dao/SrvTaskMapper.java
View file @
7af024ff
...
...
@@ -36,13 +36,13 @@ public interface SrvTaskMapper extends BaseMapper<ChSrvTask> {
" LEFT JOIN ch_srv_task_detail t2 ON t1.srv_task_id = t2.srv_task_id "
+
" LEFT JOIN ch_disable_info t3 ON t1.disab_info_id = t3.disab_info_id "
+
" LEFT JOIN ch_srv_program t4 ON t1.program_id = t4.program_id"
+
" LEFT JOIN ch_fnd_srv_mode t5 ON t4.srv_mode_id = t
4
.srv_mode_id"
+
" LEFT JOIN ch_apr_report t6 ON t
5
.task_id = t1.srv_task_id"
+
" LEFT JOIN ch_fnd_srv_mode t5 ON t4.srv_mode_id = t
5
.srv_mode_id"
+
" LEFT JOIN ch_apr_report t6 ON t
6
.task_id = t1.srv_task_id"
+
" LEFT JOIN ch_srv_program_set t7 ON t7.set_id = t4.program_id and t7.is_conf = 1"
+
" LEFT JOIN ch_cfg_srv_item t8 ON t8.item_id = t7.item_id"
+
" LEFT JOIN ch_srv_organ t9 ON t9.srv_organ_id = t4.srv_organ_id"
+
"<where> "
+
" t4.srv_organ_id = #{req.srvOrganId} AND t4.PROG_STATUS =
'1' AND t2.srv_start_time <= #{req.accountsTime} AND t2.srv_end_time >= #{req.accountsTime}
"
+
" t4.srv_organ_id = #{req.srvOrganId} AND t4.PROG_STATUS =
1 AND (t2.srv_start_time <= to_date(#{req.accountsTime},'yyyy-MM') or t2.srv_end_time >= to_date(#{req.accountsTime},'yyyy-MM'))
"
+
"</where></script>"
)
Page
<
ExpenseSettlementInfoBo
>
getExpenseSettlementInfo
(
Page
<
ExpenseSettlementInfoBo
>
page
,
ExpenseSettlementReq
req
);
...
...
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