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
9e04b10f
Commit
9e04b10f
authored
May 09, 2022
by
蔡镇泽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
费用结算
parent
843c7e5d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
SrvTaskMapper.java
...main/java/com/hungraim/ltc/account/dao/SrvTaskMapper.java
+1
-1
AccountServiceImpl.java
...hungraim/ltc/account/service/impl/AccountServiceImpl.java
+4
-1
ExpenseVo.java
...main/java/com/hungraim/ltc/pojo/vo/account/ExpenseVo.java
+5
-1
No files found.
account/account-service/src/main/java/com/hungraim/ltc/account/dao/SrvTaskMapper.java
View file @
9e04b10f
...
...
@@ -38,7 +38,7 @@ public interface SrvTaskMapper extends BaseMapper<ChSrvTask> {
" 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 = t5.srv_mode_id"
+
" LEFT JOIN ch_apr_report t6 ON t6.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_srv_program_set t7 ON t7.
program
_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> "
+
...
...
account/account-service/src/main/java/com/hungraim/ltc/account/service/impl/AccountServiceImpl.java
View file @
9e04b10f
...
...
@@ -346,8 +346,11 @@ public class AccountServiceImpl extends ServiceImpl<ChDisabAccountsMapper, ChDis
totalVo
.
setCarePayable
(
carePayable
.
doubleValue
());
totalVo
.
setTotalAmountDue
(
totalAmountDue
.
doubleValue
());
ExpenseVo
expenseVo
=
new
ExpenseVo
();
expenseVo
.
setTotal
(
expenseSettlementInfo
.
getTotal
());
expenseVo
.
setCurrent
(
expenseSettlementInfo
.
getCurrent
());
expenseVo
.
setSize
(
expenseSettlementInfo
.
getSize
());
expenseVo
.
setExpenseSettlements
(
vos
);
expenseVo
.
setTotal
(
totalVo
);
expenseVo
.
setTotal
Vo
(
totalVo
);
return
expenseVo
;
}
return
new
ExpenseVo
();
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/account/ExpenseVo.java
View file @
9e04b10f
...
...
@@ -7,6 +7,10 @@ import java.util.List;
@Data
public
class
ExpenseVo
{
private
long
total
;
private
long
size
;
private
long
current
;
/**
* 费用结算
*/
...
...
@@ -16,6 +20,6 @@ public class ExpenseVo {
/**
* 合计
*/
private
ExpenseSettlementTotalVo
total
;
private
ExpenseSettlementTotalVo
total
Vo
;
}
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