Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
孙海亮
bims
Commits
3e031f45
Commit
3e031f45
authored
2 years ago
by
wangyongyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
账单报表增加保险卡、客户生日、账龄
parent
ba851e2f
master
ECCS-3108
test
1 merge request
!39
WIP: Eccs 2215-【商保系统】-账单报表增加保险卡、客户生日、账龄 && ECCS2212【商保系统】-回款管理账单关联优化
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
9 deletions
+25
-9
index.vue
src/views/charge-query/index.vue
+5
-2
returnedMoney.vue
src/views/report/returnedMoney.vue
+9
-4
collection.vue
src/views/verification/collection.vue
+1
-1
collectionDetail.vue
src/views/verification/collectionDetail.vue
+10
-2
No files found.
src/views/charge-query/index.vue
View file @
3e031f45
...
...
@@ -16,7 +16,7 @@
</a-col>
<a-col
:xl=
"6"
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"保险公司"
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择保险公司"
allowClear
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择保险公司"
allowClear
mode=
"multiple"
>
<a-select-option
v-for=
"item in companyOptions"
:key=
"item.corpCode"
:value=
"item.id"
>
{{
item
.
longName
}}
</a-select-option>
...
...
@@ -150,6 +150,8 @@ export default {
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
width
:
180
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
200
},
{
title
:
"
保险卡
"
,
dataIndex
:
"
cardNo
"
,
width
:
200
},
{
title
:
"
客户生日
"
,
dataIndex
:
"
birthday
"
,
width
:
200
},
{
title
:
"
就诊医生
"
,
dataIndex
:
"
doctorName
"
,
width
:
150
},
{
title
:
"
是否已关联寄送单
"
,
dataIndex
:
"
isSend
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isSend
"
}
},
{
title
:
"
是否已回款
"
,
dataIndex
:
"
isEobBack
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isEobBack
"
}
},
...
...
@@ -163,6 +165,7 @@ export default {
{
title
:
"
保险欠费
"
,
dataIndex
:
"
insuranceArrearsAmount
"
,
width
:
180
},
{
title
:
"
个人欠费
"
,
dataIndex
:
"
arrearsAmount
"
,
width
:
180
},
{
title
:
"
未清余额
"
,
dataIndex
:
"
residueBackAmount
"
,
width
:
180
},
{
title
:
"
账龄
"
,
dataIndex
:
"
diffDay
"
,
width
:
180
},
{
title
:
"
操作
"
,
key
:
"
operation
"
,
width
:
"
175px
"
,
fixed
:
"
right
"
,
scopedSlots
:
{
customRender
:
"
operation
"
},
align
:
"
center
"
},
];
return
{
...
...
@@ -174,7 +177,7 @@ export default {
patientName
:
""
,
mrnNo
:
""
,
paymentCode
:
""
,
payorId
:
0
,
payorId
:
[]
,
visitTimeEnd
:
""
,
visitTimeStart
:
""
,
receiptType
:
""
,
...
...
This diff is collapsed.
Click to expand it.
src/views/report/returnedMoney.vue
View file @
3e031f45
...
...
@@ -67,7 +67,7 @@
:data-source=
"dataList"
:scroll=
"
{ x: true }"
:pagination="false"
:rowKey="
'id'
"
:rowKey="
record => {record.id+record.backMoneyNo}
"
>
<template
slot=
"index"
slot-scope=
"text, record, index"
>
{{
index
+
1
}}
...
...
@@ -89,14 +89,18 @@ export default {
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
width
:
120
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
120
},
{
title
:
"
客户生日
"
,
dataIndex
:
"
birthday
"
,
width
:
120
},
{
title
:
"
保险卡号
"
,
dataIndex
:
"
cardNo
"
,
width
:
120
},
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
width
:
120
},
{
title
:
"
账单日期
"
,
dataIndex
:
"
receiptDate
"
,
width
:
120
},
{
title
:
"
收银
"
,
dataIndex
:
"
receiptTellerName
"
,
width
:
120
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
actualAmount
"
,
width
:
120
},
{
title
:
"
回款金额
"
,
dataIndex
:
"
paidAmountEob
"
,
width
:
120
},
{
title
:
"
回款日期
"
,
dataIndex
:
"
eobBackDate
"
,
width
:
120
},
{
title
:
"
回款编号
"
,
dataIndex
:
"
backMoneyNo
"
,
width
:
120
},
{
title
:
"
EOB号
"
,
dataIndex
:
"
eobNo
"
,
width
:
120
},
{
title
:
"
EOB名称
"
,
dataIndex
:
"
eobName
"
,
width
:
120
},
{
title
:
"
EOB备注
"
,
dataIndex
:
"
eobName
"
,
width
:
120
},
{
title
:
"
账龄
"
,
dataIndex
:
"
diffDay
"
,
width
:
120
},
];
return
{
columns
,
...
...
@@ -118,8 +122,8 @@ export default {
pagination
:
{
pageNum
:
1
,
pageSize
:
10
,
total
:
0
},
total
:
0
};
},
components
:
{
...
...
@@ -139,7 +143,8 @@ export default {
this
.
$apis
.
backMoneyReport
(
data
).
then
((
res
)
=>
{
let
content
=
res
.
content
||
{};
this
.
dataList
=
content
.
list
||
[];
this
.
total
=
content
.
total
||
0
;
this
.
pagination
.
total
=
content
.
total
||
0
;
});
},
// 获取保险公司下拉选项
...
...
This diff is collapsed.
Click to expand it.
src/views/verification/collection.vue
View file @
3e031f45
...
...
@@ -156,7 +156,7 @@ export default {
dateRange
:
[],
//创建时间范围
startDate
:
""
,
endDate
:
""
,
backStatus
:
""
,
backStatus
:
"
0
"
,
backAmountCny
:
""
,
// 回款金额
backMoneyNo
:
""
,
// 回款编号
},
...
...
This diff is collapsed.
Click to expand it.
src/views/verification/collectionDetail.vue
View file @
3e031f45
...
...
@@ -132,6 +132,8 @@
v-model=
"form.payorCode"
placeholder=
"请选择保险公司"
allow-clear
show-search
:filter-option=
"filterOption"
:disabled=
"!isEdit"
@
change=
"changePayor"
>
...
...
@@ -430,14 +432,16 @@ export default {
width
:
150
,
customRender
:
(
val
,
row
)
=>
{
return
(
<
a
-
input
-
number
<
a
-
input
-
number
v
-
model
=
{
row
.
backAmount
}
allow
-
clear
allow
-
clear
disabled
=
{
!
this
.
isEdit
}
style
=
{{
"
color
"
:
row
.
backAmount
==
row
.
currentReceiptAmount
?
''
:
'
red
'
}}
onBlur
=
{()
=>
{
changeAmount
(
row
);
}}
/>
);
},
};
...
...
@@ -818,6 +822,10 @@ export default {
this
.
$apis
.
EXPORTBACKRECEIPTLIST
(
filter
).
then
(
res
=>
{
exportFile
(
res
,
'
已关联账单.xls
'
);
})
},
// 保险公司支持输入搜索
filterOption
(
input
,
option
)
{
return
option
.
componentOptions
.
children
[
0
].
text
.
indexOf
(
input
)
>=
0
}
},
};
...
...
This diff is collapsed.
Click to expand it.
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