123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827 |
- <template>
- <!-- <div class="main-contain outpatientChargesManagement">
- <div class="position">
- <bread-crumb :crumbs='crumbs'></bread-crumb>
- </div> -->
- <div>
- <div style="display: flex;justify-content: space-between;margin-bottom:10px;">
- <div>
- <!--<el-button size="small" style="margin-left:10px;" class="filter-item" type="primary"-->
- <!--@click="Action">-->
- <!--导出-->
- <!--</el-button>-->
- <el-input size="small" style="width:150px;" v-model="keywords" @input="searchAction"
- @keyup.enter.native='searchAction'
- placeholder="请输入患者姓名"
- class="filter-item"/>
- <el-select size="small" v-model="item_type" placeholder="请选择"
- style="width:150px;margin-left:10px;" @change="changeItem">
- <el-option
- label="全部"
- value="0">
- </el-option>
- <el-option
- v-for="item,index in items"
- :key="index"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- <el-date-picker
- v-model="chargeDate"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="开始日期"
- @change="handleDateChange"
- end-placeholder="结束日期">
- </el-date-picker>
- <!--<el-radio v-model="radio" label="1">明细</el-radio>-->
- <!--<el-radio v-model="radio" label="2">汇总</el-radio>-->
- </div>
- <div>
- <!-- <el-popover
- placement="bottom"
- width="210"
- trigger="click">
- <el-button size="small" ref="button_two" @click="open(1)">打印清单</el-button>
- <el-button size="small" ref="button_six" @click="open(2)">打印汇总</el-button>
- <el-button slot="reference" style="margin:0 10px;" type="primary" size="small">打印</el-button>
-
- </el-popover> -->
- <el-button size="small" type="primary" @click="export_detail">报表下载</el-button>
- </div>
- </div>
- <el-table :data="tableData" border :row-style="{ color: '#303133' }" ref="table"
- :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
- :span-method="merge"
- show-summary
- :summary-method="getTotal"
- max-height="600"
-
- v-loading="detail_loading"
- highlight-current-row>
-
- <el-table-column align="center" prop="name" label="患者名字">
- <template slot-scope="scope">{{ scope.row.name }}</template>
- </el-table-column>
- <!--<el-table-column align="center" prop="name" label="患者类型">-->
- <!--<template slot-scope="scope"></template>-->
- <!--</el-table-column>-->
-
- <el-table-column align="center" prop="name" label="项目名称">
- <template slot-scope="scope">{{scope.row.item_name}}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="规格">
- <template slot-scope="scope">{{scope.row.item_spec}}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="数量">
- <template slot-scope="scope">{{scope.row.count}}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="单价">
- <template slot-scope="scope">{{scope.row.price.toFixed(2)}}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="费用">
- <template slot-scope="scope">
- <div>{{((scope.row.price*scope.row.count).toFixed(2))}}</div>
- </template>
- </el-table-column>
-
- <el-table-column align="center" prop="total" label="费用总额">
- <template slot-scope="scope">
- <div>{{scope.row.total.toFixed(2)}}</div>
- </template>
- </el-table-column>
-
- </el-table>
- </div>
-
- <!-- </div> -->
- </template>
-
-
- <script>
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import { GetSummaryDetail } from '@/api/his/his'
- import { uParseTime } from '@/utils/tools'
- import axios from 'axios'
- import pako from 'pako';
- // import NewStatementPrint from './newStatementPrint'
- const moment = require('moment')
- export default {
- components: {
- BreadCrumb
-
- },
- data() {
- return {
- pickerOptions: {
- disabledDate(time) {
- // 获取当前日期
- const now = new Date();
-
- // 设置一个月后的日期
- const oneMonthLater = new Date();
- oneMonthLater.setMonth(oneMonthLater.getMonth() + 1);
-
- // 如果当前日期在一个月后之后,则禁用
- return time.getTime() > oneMonthLater.getTime() || time.getTime() < now.getTime();
- },
- },
- detail_loading: false,
- tempArr: [],
- pos: 0,
-
- sameRowArr: [],
- keywords: '',
- tableData: [],
- chargeDate: [moment(new Date()).add('year', 0).format('YYYY-MM-DD'), moment(new Date()).add('year', 0).format('YYYY-MM-DD')],
- item_type: '0',
- items: [
- { id: 1, name: '药品' },
- { id: 2, name: '项目' },
- { id: 3, name: '耗材' }
-
- ]
-
- }
- },
- methods: {
- handleDateChangetwo(value) {
- this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
- confirmButtonText: '确 定',
- cancelButtonText: '取 消',
- type: 'warning'
- }).then(() => {
-
-
- }).catch(() => {
- })
-
- // let start_time = this.chargeDate[0]
- // let end_time = this.chargeDate[1]
- // const dateObj1 = new Date(start_time);
- // const dateObj2 = new Date(end_time);
- //
- // // 计算两个日期之间的月份差
- // const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
- // (dateObj2.getMonth() - dateObj1.getMonth());
- // if (monthDifference >= 1){
- // this.$message.error("时间间隔不能超出一个月")
- // return
- // }else{
- // this.getSummaryDetailList()
- // }
-
- },
-
- handleDateChange(value) {
- // let start_time = this.chargeDate[0]
- // let end_time = this.chargeDate[1]
- // const dateObj1 = new Date(start_time);
- // const dateObj2 = new Date(end_time);
- //
- // // 计算两个日期之间的月份差
- // const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
- // (dateObj2.getMonth() - dateObj1.getMonth());
- // if (monthDifference >= 1){
- // this.$message.error("时间间隔不能超出一个月")
- // return
- // }else{
- // this.getSummaryDetailListtwo()
- // }
- this.getSummaryDetailList()
-
-
- },
- Action(){
- var that = this
- axios.get('http://127.0.0.1:9531/handelExcel', {
- params: {}
- })
- .then(function(response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg)
-
-
- return false
- } else {
-
- var list = []
- for(let i = 0; i < response.data.data.list.length; i++){
- let team = response.data.data.list[i]
- for(let b = 0; b < team.list.length; b++){
- let name = ""
- if(team.list[b].type == 2){
- name = team.list[b].project.project_name
- }else{
-
- name = team.list[b].good_info.good_name
-
- }
-
- let obj = {
- '客户组合编码': team.id,
- '客户组合名称': team.project_team,
- '客户单项编码': team.list[b].id,
- '客户单项名称': name,
- '中心组合编码': '',
- '中心组合名称': '',
- '中心单项编码': '',
- '中心单项名称': '',
- }
-
- list.push(obj)
- }
- }
-
- import('@/vendor/Export2Excel').then(excel => {
- const tHeader = [ '客户组合编码', '客户组合名称', '客户单项编码', '客户单项名称', '中心组合编码', '中心组合名称', '中心单项编码', '中心单项名称']
- const filterVal = [ '客户组合编码', '客户组合名称', '客户单项编码', '客户单项名称', '中心组合编码', '中心组合名称', '中心单项编码', '中心单项名称']
- const data = that.formatJson(filterVal, list)
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: "消费明细"
- })
- })
-
-
- }
- })
- .catch(function(error) {
-
- })
-
-
-
-
- },formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]))
- },
- objectSpanMethod({ row, column, rowIndex, columnIndex }) {
- if (columnIndex === 0) {
- if (rowIndex % 2 === 0) {
- return {
- rowspan: 2,
- colspan: 1
- }
- } else {
- return {
- rowspan: 0,
- colspan: 0
- }
- }
- }
- },
- unique(arr) {
- const res = new Map()
- return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
- },
- uniquepid(arr) {
- const res = new Map()
- return arr.filter((arr) => !res.has(arr.p_id) && res.set(arr.p_id, 1))
- },
- changeDate() {
- this.getSummaryDetailList()
- },
- changeItem() {
- this.getSummaryDetailList()
- },
- searchAction() {
- this.item_type = '0'
- this.getSummaryDetailList()
-
- }, getSummaryDetailListtwo() {
- this.detail_loading = true
- let start_time = this.chargeDate[0]
- let end_time = this.chargeDate[1]
- let params = {
- start_time: start_time,
- end_time: end_time,
- type: this.item_type,
- keyword: this.keywords
- }
- GetSummaryDetail(params).then(response => {
- if (response.data.state == 0) {
- this.detail_loading = false
-
- this.$message.error(response.data.msg)
- return false
- } else {
- this.detail_loading = false
-
- this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
- confirmButtonText: '确 定',
- cancelButtonText: '取 消',
- type: 'warning'
- }).then(() => {
-
-
- }).catch(() => {
- })
-
-
- }
-
-
-
-
- //
- // console.log('去重前')
- // console.log(advice)
- // console.log(project)
- // //
- // //
-
- // //
- // console.log('去重后')
- //
- // console.log(advice.length)
- // console.log(project.length)
- //
- // for (let i = 0; i < project.length; i++) {
- // let obj = {}
- // let count = 0
- // for (let a = 0; a < tempPatientsTwo.length; a++) {
- // if (project[i].patient_id == tempPatientsTwo[a].patient_id && project[i].item_id == tempPatientsTwo[a].item_id && project[i].price == tempPatientsTwo[a].price) {
- // count = count + tempPatientsTwo[a].count
- // obj['count'] = count
- //
- // }
- // obj['price'] = project[i].price
- // obj['type'] = project[i].type
- // obj['item_name'] = project[i].item_name
- // obj['item_id'] = project[i].item_id
- // obj['name'] = project[i].name
- // obj['patient_id'] = project[i].patient_id
- // obj['count'] = count
- // this.tableData.push(obj)
- // }
- // }
- //
- //
- // for (let i = 0; i < advice.length; i++) {
- // let obj = {}
- // let count = 0
- // for (let a = 0; a < tempPatientsTwo.length; a++) {
- // if (advice[i].patient_id == tempPatientsTwo[a].patient_id && advice[i].item_id == tempPatientsTwo[a].item_id && advice[i].price == tempPatientsTwo[a].price) {
- // count = count + tempPatientsTwo[a].count
- // obj['count'] = count
- //
- // }
- // obj['price'] = advice[i].price
- // obj['type'] = advice[i].type
- // obj['item_name'] = advice[i].item_name
- // obj['item_id'] = advice[i].item_id
- // obj['name'] = advice[i].name
- // obj['patient_id'] = advice[i].patient_id
- // this.tableData.push(obj)
- // }
- // }
- // console.log(this.tableData.length)
- // this.tableData = this.sort(this.tableData)
-
- })
- },
- getSummaryDetailList() {
- this.detail_loading = true
- let start_time = this.chargeDate[0]
- let end_time = this.chargeDate[1]
- let params = {
- start_time: start_time,
- end_time: end_time,
- type: this.item_type,
- keyword: this.keywords
- }
- GetSummaryDetail(params).then(response => {
- if (response.data.state == 0) {
- this.detail_loading = false
-
- this.$message.error(response.data.msg)
- return false
- } else {
-
-
- this.detail_loading = false
-
- this.tableData = []
- let tempPatients = []
- let tempPatientsTwo = []
- //
- let tempData = response.data
- let allData = response.data
- tempData = this.uniquepid(tempData)
- //
- let order_infos = []
- //
- for (let i = 0; i < tempData.length; i++) {
- let obj = {
- patient_id: tempData[i].p_id,
- name: tempData[i].p_name,
- orders: []
- }
- for (let b = 0; b < allData.length; b++) {
- if (tempData[i].p_id == allData[b].p_id) {
- obj.orders = obj.orders.concat(allData[b])
- }
- }
- tempPatients.push(obj)
- }
- console.log(tempPatients)
- //
- for (let i = 0; i < tempPatients.length; i++) {
- let obj = {
- patient_id: tempPatients[i].patient_id,
- name: tempPatients[i].name,
- order_info: []
- }
- let orders = tempPatients[i].orders
-
- for (let c = 0; c < orders.length; c++) {
- let newObj = {}
- newObj['count'] = orders[c].cnt
- newObj['price'] = orders[c].pric
- newObj['item_total'] = orders[c].det_item_fee_sumamt
-
- if (orders[c].advice_id > 0 && orders[c].project_id == 0) {
- newObj['type'] = 1
- newObj['item_name'] = orders[c].item_name
- newObj['item_id'] = orders[c].item_id
-
- if (orders[c].min_unit != orders[c].dose_unit) {
- newObj['item_spec'] = orders[c].dose + orders[c].dose_unit + '*' + orders[c].min_number + orders[c].min_unit + '/' + orders[c].max_unit
- } else {
-
- newObj['item_spec'] = ''
- }
-
- }
- if (orders[c].advice_id == 0 && orders[c].project_id > 0) {
- newObj['type'] = 2
- newObj['item_id'] = orders[c].item_id
-
- if (orders[c].p_type == 2) {
- newObj['item_spec'] =""
- newObj['item_name'] = orders[c].item_name
-
-
- } else if (orders[c].p_type == 3) {
- newObj['item_spec'] = orders[c].specification_name
- newObj['item_name'] = orders[c].item_name
-
-
- }
- }
- obj.order_info.push(newObj)
- order_infos.push(orders.order_info)
- }
- tempPatientsTwo.push(obj)
- }
- console.log(tempPatientsTwo)
-
- //
- for (let d = 0; d < tempPatientsTwo.length; d++) {
- tempPatientsTwo[d]['new_order_info'] = []
- let project = []
- let advice = []
- for (let b = 0; b < tempPatientsTwo[d].order_info.length; b++) {
- if (tempPatientsTwo[d].order_info[b].type == 1) {
- advice.push(tempPatientsTwo[d].order_info[b])
- } else {
- project.push(tempPatientsTwo[d].order_info[b])
- }
- }
- project = this.uniqueProjectAndAdvice(project)
- advice = this.uniqueProjectAndAdvice(advice)
-
- for (let i = 0; i < project.length; i++) {
- let obj = {}
- let count = 0
- for (let a = 0; a < tempPatientsTwo[d].order_info.length; a++) {
- if (project[i].item_id == tempPatientsTwo[d].order_info[a].item_id && project[i].price == tempPatientsTwo[d].order_info[a].price) {
- count = count + tempPatientsTwo[d].order_info[a].count
- }
- }
-
-
-
- obj['price'] = project[i].price
- obj['type'] = project[i].type
- obj['item_name'] = project[i].item_name
- obj['item_spec'] = project[i].item_spec
- obj['item_total'] = project[i].item_total
-
- obj['item_id'] = project[i].item_id
- obj['name'] = tempPatientsTwo[d].name
- obj['patient_id'] = tempPatientsTwo[d].patient_id
- obj['count'] = count
- tempPatientsTwo[d].new_order_info.push(obj)
- }
-
- for (let i = 0; i < advice.length; i++) {
- let obj = {}
- let count = 0
- for (let a = 0; a < tempPatientsTwo[d].order_info.length; a++) {
- if (advice[i].item_id == tempPatientsTwo[d].order_info[a].item_id && advice[i].price == tempPatientsTwo[d].order_info[a].price) {
- count = count + tempPatientsTwo[d].order_info[a].count
- }
- }
-
- obj['price'] = advice[i].price
- obj['type'] = advice[i].type
- obj['item_name'] = advice[i].item_name
- obj['item_spec'] = advice[i].item_spec
- obj['item_id'] = advice[i].item_id
- obj['name'] = tempPatientsTwo[d].name
- obj['item_total'] = advice[i].item_total
- obj['patient_id'] = tempPatientsTwo[d].patient_id
- obj['count'] = count
- tempPatientsTwo[d].new_order_info.push(obj)
- }
-
- }
- for (let i = 0; i < tempPatientsTwo.length; i++) {
- let total = 0
- for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
- let new_name = tempPatientsTwo[i].new_order_info[b].item_name
- if (new_name != undefined){
- if (new_name.length != 0) {
- total = parseFloat(total) + parseFloat((parseFloat(tempPatientsTwo[i].new_order_info[b].count.toString()) * parseFloat(tempPatientsTwo[i].new_order_info[b].price.toString())).toFixed(2))
- }
-
-
-
- }
-
-
- }
- tempPatientsTwo[i]['total'] = total
- }
- for (let i = 0; i < tempPatientsTwo.length; i++) {
- // console.log(111,tempPatientsTwo[i].total)
- if (tempPatientsTwo[i].new_order_info.length > 0) {
-
- for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
- // let new_name = tempPatientsTwo[i].new_order_info[b].item_name
- // console.log('2 ' + new_name)
- //
- // new_name = new_name.replace('( ', '')
- // new_name = new_name.replace(' )', '')
-
- let obj = {
- name: tempPatientsTwo[i].name,
- patient_id: tempPatientsTwo[i].patient_id,
- price: tempPatientsTwo[i].new_order_info[b].price,
- type: tempPatientsTwo[i].new_order_info[b].type,
- item_name: tempPatientsTwo[i].new_order_info[b].item_name,
- item_id: tempPatientsTwo[i].new_order_info[b].item_id,
- count: tempPatientsTwo[i].new_order_info[b].count,
- item_spec: tempPatientsTwo[i].new_order_info[b].item_spec
- }
-
-
- // if(b == 0){
- obj['total'] = tempPatientsTwo[i].total
- // }else{
- // obj['total'] = 0
- // }
- this.tableData.push(obj)
-
-
-
-
- }
- }
- }
- console.log( this.tableData)
- this.handleSpanTempArr()
- // this.tableData = tempPatientsTwo
-
- // console.log(tempPatientsTwo.length)
- //
- let advices = []
- let projects = []
- let goods = []
- for(let i = 0; i < order_infos.length; i++){
- if(order_infos[i].advice_id > 0 && order_infos[i].project_id == 0){
- advices.push(order_infos[i].advice)
- }
- if(order_infos[i].advice_id == 0 && order_infos[i].project_id > 0){
- if(order_infos[i].project.type == 3){
- goods.push(order_infos[i].project)
- }
- }
- if(order_infos[i].advice_id == 0 && order_infos[i].project_id > 0){
- if(order_infos[i].project.type == 2){
- projects.push(order_infos[i].project)
- }
- }
- }
-
- }
-
-
-
-
- //
- // console.log('去重前')
- // console.log(advice)
- // console.log(project)
- // //
- // //
-
- // //
- // console.log('去重后')
- //
- // console.log(advice.length)
- // console.log(project.length)
- //
- // for (let i = 0; i < project.length; i++) {
- // let obj = {}
- // let count = 0
- // for (let a = 0; a < tempPatientsTwo.length; a++) {
- // if (project[i].patient_id == tempPatientsTwo[a].patient_id && project[i].item_id == tempPatientsTwo[a].item_id && project[i].price == tempPatientsTwo[a].price) {
- // count = count + tempPatientsTwo[a].count
- // obj['count'] = count
- //
- // }
- // obj['price'] = project[i].price
- // obj['type'] = project[i].type
- // obj['item_name'] = project[i].item_name
- // obj['item_id'] = project[i].item_id
- // obj['name'] = project[i].name
- // obj['patient_id'] = project[i].patient_id
- // obj['count'] = count
- // this.tableData.push(obj)
- // }
- // }
- //
- //
- // for (let i = 0; i < advice.length; i++) {
- // let obj = {}
- // let count = 0
- // for (let a = 0; a < tempPatientsTwo.length; a++) {
- // if (advice[i].patient_id == tempPatientsTwo[a].patient_id && advice[i].item_id == tempPatientsTwo[a].item_id && advice[i].price == tempPatientsTwo[a].price) {
- // count = count + tempPatientsTwo[a].count
- // obj['count'] = count
- //
- // }
- // obj['price'] = advice[i].price
- // obj['type'] = advice[i].type
- // obj['item_name'] = advice[i].item_name
- // obj['item_id'] = advice[i].item_id
- // obj['name'] = advice[i].name
- // obj['patient_id'] = advice[i].patient_id
- // this.tableData.push(obj)
- // }
- // }
- // console.log(this.tableData.length)
- // this.tableData = this.sort(this.tableData)
-
- })
- }, uniqueProjectAndAdvice(array) {
- // res用来存储结果
- var res = []
- for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
- for (var j = 0, resLen = res.length; j < resLen; j++) {
- if (array[i].item_id === res[j].item_id && array[i].price === res[j].price) {
- break
- }
- }
- // 如果array[i]是唯一的,那么执行完循环,j等于resLen
- if (j === resLen) {
- res.push(array[i])
- }
- }
- return res
- }, sort(arr) {
- for (var i = 0; i < arr.length - 1; i++) {
- for (var j = 0; j < arr.length - i - 1; j++) {
- if (arr[j].patient_id > arr[j + 1].patient_id) {// 相邻元素两两对比
- var hand = arr[j]
- arr[j] = arr[j + 1]
- arr[j + 1] = hand
-
- }
- }
- }
- return arr
- }, handleSpanTempArr() {
- this.tempArr = []
-
- for (let i = 0; i < this.tableData.length; i++) {
- if (i === 0) {
- this.tempArr.push(1)
- this.pos = 0
- } else {
- // 判断当前元素与上一个元素是否相同
- if (this.tableData[i].patient_id === this.tableData[i - 1].patient_id) {
- this.tempArr[this.pos] += 1
- this.tempArr.push(0)
- } else {
- this.tempArr.push(1)
- this.pos = i
- }
- }
- }
-
- let sameRowArr = [], sIdx = 0
- this.tableData.forEach((item, index) => {
- item.index = index
- if (index === 0) {
- sameRowArr.push([index])
- } else {
- if (item.patient_id === this.tableData[index - 1].patient_id) {
- sameRowArr[sIdx].push(index)
- } else {
- sIdx = sIdx + 1
- sameRowArr.push([index])
- }
- }
- })
- this.sameRowArr = sameRowArr
- }, merge({ row, column, rowIndex, columnIndex }) {
- if (columnIndex === 0 || columnIndex === 6) {
- const _row = this.tempArr[rowIndex]
- const _col = _row > 0 ? 1 : 0
- return {
- rowspan: _row,
- colspan: _col
- }
- }
- }, export_detail() {
-
- let list = []
- for (let i = 0; i < this.tableData.length; i++) {
- let order = this.tableData[i]
- let name = order.name
- let item_name = order.item_name
- let count = order.count
- let price = order.price.toFixed(2)
- let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
- let total = order.total.toFixed(2)
-
- let obj = {
- '患者姓名': name,
- '项目名称': item_name,
- '数量': count,
- '单价': price,
- '费用': pay_sumamt,
- '费用总额': total
- }
- list.push(obj)
- }
- import('@/vendor/Export2Excel').then(excel => {
- const tHeader = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
- const filterVal = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
- const data = this.formatJson(filterVal, list)
- excel.export_json_to_excel1({
- header: tHeader,
- data,
- filename: '明细',
- ref: this.$refs['table'].$el
- })
- })
-
- }, formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]))
- }, getTotal(param) {
- const { columns, data } = param
- const sums = []
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = '合计'
- return
- }
- const values = data.map(item => Number(item[column.property]))
- if (column.property === 'total') {
- // sums[index] = values.reduce((prev, curr) => {
- // const value = Number(curr)
- // if (!isNaN(value)) {
- // return prev + curr
- // } else {
- // return prev
- // }
- // }, 0)
- // sums[index] = sums[index].toFixed(2)
- let num = 0
- data.map(item => {
- num += item.price.toFixed(2) * item.count
- })
- sums[index] = num.toFixed(2)
- } else {
- sums[index] = ''
- }
- })
-
- return sums
- }
- },
- created() {
- this.getSummaryDetailList()
-
- }
- }
- </script>
|