|
@@ -124,10 +124,10 @@
|
124
|
124
|
<!-- </el-button-->
|
125
|
125
|
<!-- >-->
|
126
|
126
|
|
127
|
|
- <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>
|
|
127
|
+<!-- <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
|
128
|
128
|
<!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
|
129
|
129
|
<!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
|
130
|
|
- <el-button size="small" type="primary" @click="export_detail_six">报表下载9</el-button>
|
|
130
|
+<!-- <el-button size="small" type="primary" @click="export_detail_six">报表下载9</el-button>-->
|
131
|
131
|
<!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
|
132
|
132
|
<!-- <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
|
133
|
133
|
|
|
@@ -2677,6 +2677,7 @@ export default {
|
2677
|
2677
|
治疗费:0,
|
2678
|
2678
|
材料费:0,
|
2679
|
2679
|
中成药费:0,
|
|
2680
|
+ 护理费:0,
|
2680
|
2681
|
备注: "就诊日期:" + this.getTimes(order.settle_accounts_date) + " 医保报销: "+order.fund_pay_sumamt + " 现金:"+order.psn_cash_pay,
|
2681
|
2682
|
}
|
2682
|
2683
|
let xiyaoPrice = 0
|
|
@@ -2685,6 +2686,8 @@ export default {
|
2685
|
2686
|
let zhiLiaoPrice = 0
|
2686
|
2687
|
let cailiaoPrice = 0
|
2687
|
2688
|
let zhongchengyaoPrice = 0
|
|
2689
|
+ let huliPrice = 0
|
|
2690
|
+
|
2688
|
2691
|
|
2689
|
2692
|
for (let b = 0; b < order.info.length; b++) {
|
2690
|
2693
|
if(order.info[b].med_chrgitm_type == '09'){
|
|
@@ -2705,6 +2708,10 @@ export default {
|
2705
|
2708
|
if(order.info[b].med_chrgitm_type == '11'){
|
2706
|
2709
|
zhongchengyaoPrice = zhongchengyaoPrice + order.info[b].det_item_fee_sumamt
|
2707
|
2710
|
}
|
|
2711
|
+
|
|
2712
|
+ if(order.info[b].med_chrgitm_type == '07'){
|
|
2713
|
+ huliPrice = huliPrice + order.info[b].det_item_fee_sumamt
|
|
2714
|
+ }
|
2708
|
2715
|
}
|
2709
|
2716
|
obj.西药费 = xiyaoPrice
|
2710
|
2717
|
obj.化验费 = huaYanPrice
|
|
@@ -2712,6 +2719,8 @@ export default {
|
2712
|
2719
|
obj.治疗费 = zhiLiaoPrice
|
2713
|
2720
|
obj.材料费 = cailiaoPrice
|
2714
|
2721
|
obj.中成药费 = zhongchengyaoPrice
|
|
2722
|
+ obj.护理费 = huliPrice
|
|
2723
|
+
|
2715
|
2724
|
|
2716
|
2725
|
|
2717
|
2726
|
list.push(obj)
|
|
@@ -2727,6 +2736,8 @@ export default {
|
2727
|
2736
|
"治疗费",
|
2728
|
2737
|
"材料费",
|
2729
|
2738
|
"中成药费",
|
|
2739
|
+ "护理费",
|
|
2740
|
+
|
2730
|
2741
|
"备注",
|
2731
|
2742
|
];
|
2732
|
2743
|
const filterVal = [
|
|
@@ -2738,6 +2749,7 @@ export default {
|
2738
|
2749
|
"治疗费",
|
2739
|
2750
|
"材料费",
|
2740
|
2751
|
"中成药费",
|
|
2752
|
+ "护理费",
|
2741
|
2753
|
"备注",
|
2742
|
2754
|
];
|
2743
|
2755
|
const data = this.formatJson(filterVal, list);
|