Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

detail.vue 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. <template>
  2. <!-- <div class="main-contain outpatientChargesManagement">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div> -->
  6. <div>
  7. <div style="display: flex;justify-content: space-between;margin-bottom:10px;">
  8. <div>
  9. <!--<el-button size="small" style="margin-left:10px;" class="filter-item" type="primary"-->
  10. <!--@click="Action">-->
  11. <!--导出-->
  12. <!--</el-button>-->
  13. <el-input size="small" style="width:150px;" v-model="keywords" @input="searchAction"
  14. @keyup.enter.native='searchAction'
  15. placeholder="请输入患者姓名"
  16. class="filter-item"/>
  17. <el-select size="small" v-model="item_type" placeholder="请选择"
  18. style="width:150px;margin-left:10px;" @change="changeItem">
  19. <el-option
  20. label="全部"
  21. value="0">
  22. </el-option>
  23. <el-option
  24. v-for="item,index in items"
  25. :key="index"
  26. :label="item.name"
  27. :value="item.id">
  28. </el-option>
  29. </el-select>
  30. <el-date-picker
  31. v-model="chargeDate"
  32. type="daterange"
  33. value-format="yyyy-MM-dd"
  34. range-separator="至"
  35. start-placeholder="开始日期"
  36. @change="handleDateChange"
  37. end-placeholder="结束日期">
  38. </el-date-picker>
  39. <!--<el-radio v-model="radio" label="1">明细</el-radio>-->
  40. <!--<el-radio v-model="radio" label="2">汇总</el-radio>-->
  41. </div>
  42. <div>
  43. <!-- <el-popover
  44. placement="bottom"
  45. width="210"
  46. trigger="click">
  47. <el-button size="small" ref="button_two" @click="open(1)">打印清单</el-button>
  48. <el-button size="small" ref="button_six" @click="open(2)">打印汇总</el-button>
  49. <el-button slot="reference" style="margin:0 10px;" type="primary" size="small">打印</el-button>
  50. </el-popover> -->
  51. <el-button size="small" type="primary" @click="export_detail">报表下载</el-button>
  52. </div>
  53. </div>
  54. <el-table :data="tableData" border :row-style="{ color: '#303133' }" ref="table"
  55. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  56. :span-method="merge"
  57. show-summary
  58. :summary-method="getTotal"
  59. max-height="600"
  60. v-loading="detail_loading"
  61. highlight-current-row>
  62. <el-table-column align="center" prop="name" label="患者名字">
  63. <template slot-scope="scope">{{ scope.row.name }}</template>
  64. </el-table-column>
  65. <!--<el-table-column align="center" prop="name" label="患者类型">-->
  66. <!--<template slot-scope="scope"></template>-->
  67. <!--</el-table-column>-->
  68. <el-table-column align="center" prop="name" label="项目名称">
  69. <template slot-scope="scope">{{scope.row.item_name}}</template>
  70. </el-table-column>
  71. <el-table-column align="center" prop="name" label="规格">
  72. <template slot-scope="scope">{{scope.row.item_spec}}</template>
  73. </el-table-column>
  74. <el-table-column align="center" prop="name" label="数量">
  75. <template slot-scope="scope">{{scope.row.count}}</template>
  76. </el-table-column>
  77. <el-table-column align="center" prop="name" label="单价">
  78. <template slot-scope="scope">{{scope.row.price.toFixed(2)}}</template>
  79. </el-table-column>
  80. <el-table-column align="center" prop="name" label="费用">
  81. <template slot-scope="scope">
  82. <div>{{((scope.row.price*scope.row.count).toFixed(2))}}</div>
  83. </template>
  84. </el-table-column>
  85. <el-table-column align="center" prop="total" label="费用总额">
  86. <template slot-scope="scope">
  87. <div>{{scope.row.total.toFixed(2)}}</div>
  88. </template>
  89. </el-table-column>
  90. </el-table>
  91. </div>
  92. <!-- </div> -->
  93. </template>
  94. <script>
  95. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  96. import { GetSummaryDetail } from '@/api/his/his'
  97. import { uParseTime } from '@/utils/tools'
  98. import axios from 'axios'
  99. import pako from 'pako';
  100. // import NewStatementPrint from './newStatementPrint'
  101. const moment = require('moment')
  102. export default {
  103. components: {
  104. BreadCrumb
  105. },
  106. data() {
  107. return {
  108. pickerOptions: {
  109. disabledDate(time) {
  110. // 获取当前日期
  111. const now = new Date();
  112. // 设置一个月后的日期
  113. const oneMonthLater = new Date();
  114. oneMonthLater.setMonth(oneMonthLater.getMonth() + 1);
  115. // 如果当前日期在一个月后之后,则禁用
  116. return time.getTime() > oneMonthLater.getTime() || time.getTime() < now.getTime();
  117. },
  118. },
  119. detail_loading: false,
  120. tempArr: [],
  121. pos: 0,
  122. sameRowArr: [],
  123. keywords: '',
  124. tableData: [],
  125. chargeDate: [moment(new Date()).add('year', 0).format('YYYY-MM-DD'), moment(new Date()).add('year', 0).format('YYYY-MM-DD')],
  126. item_type: '0',
  127. items: [
  128. { id: 1, name: '药品' },
  129. { id: 2, name: '项目' },
  130. { id: 3, name: '耗材' }
  131. ]
  132. }
  133. },
  134. methods: {
  135. handleDateChangetwo(value) {
  136. this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
  137. confirmButtonText: '确 定',
  138. cancelButtonText: '取 消',
  139. type: 'warning'
  140. }).then(() => {
  141. }).catch(() => {
  142. })
  143. // let start_time = this.chargeDate[0]
  144. // let end_time = this.chargeDate[1]
  145. // const dateObj1 = new Date(start_time);
  146. // const dateObj2 = new Date(end_time);
  147. //
  148. // // 计算两个日期之间的月份差
  149. // const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
  150. // (dateObj2.getMonth() - dateObj1.getMonth());
  151. // if (monthDifference >= 1){
  152. // this.$message.error("时间间隔不能超出一个月")
  153. // return
  154. // }else{
  155. // this.getSummaryDetailList()
  156. // }
  157. },
  158. handleDateChange(value) {
  159. // let start_time = this.chargeDate[0]
  160. // let end_time = this.chargeDate[1]
  161. // const dateObj1 = new Date(start_time);
  162. // const dateObj2 = new Date(end_time);
  163. //
  164. // // 计算两个日期之间的月份差
  165. // const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
  166. // (dateObj2.getMonth() - dateObj1.getMonth());
  167. // if (monthDifference >= 1){
  168. // this.$message.error("时间间隔不能超出一个月")
  169. // return
  170. // }else{
  171. // this.getSummaryDetailListtwo()
  172. // }
  173. this.getSummaryDetailList()
  174. },
  175. Action(){
  176. var that = this
  177. axios.get('http://127.0.0.1:9531/handelExcel', {
  178. params: {}
  179. })
  180. .then(function(response) {
  181. if (response.data.state == 0) {
  182. that.$message.error(response.data.msg)
  183. return false
  184. } else {
  185. var list = []
  186. for(let i = 0; i < response.data.data.list.length; i++){
  187. let team = response.data.data.list[i]
  188. for(let b = 0; b < team.list.length; b++){
  189. let name = ""
  190. if(team.list[b].type == 2){
  191. name = team.list[b].project.project_name
  192. }else{
  193. name = team.list[b].good_info.good_name
  194. }
  195. let obj = {
  196. '客户组合编码': team.id,
  197. '客户组合名称': team.project_team,
  198. '客户单项编码': team.list[b].id,
  199. '客户单项名称': name,
  200. '中心组合编码': '',
  201. '中心组合名称': '',
  202. '中心单项编码': '',
  203. '中心单项名称': '',
  204. }
  205. list.push(obj)
  206. }
  207. }
  208. import('@/vendor/Export2Excel').then(excel => {
  209. const tHeader = [ '客户组合编码', '客户组合名称', '客户单项编码', '客户单项名称', '中心组合编码', '中心组合名称', '中心单项编码', '中心单项名称']
  210. const filterVal = [ '客户组合编码', '客户组合名称', '客户单项编码', '客户单项名称', '中心组合编码', '中心组合名称', '中心单项编码', '中心单项名称']
  211. const data = that.formatJson(filterVal, list)
  212. excel.export_json_to_excel({
  213. header: tHeader,
  214. data,
  215. filename: "消费明细"
  216. })
  217. })
  218. }
  219. })
  220. .catch(function(error) {
  221. })
  222. },formatJson(filterVal, jsonData) {
  223. return jsonData.map(v => filterVal.map(j => v[j]))
  224. },
  225. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  226. if (columnIndex === 0) {
  227. if (rowIndex % 2 === 0) {
  228. return {
  229. rowspan: 2,
  230. colspan: 1
  231. }
  232. } else {
  233. return {
  234. rowspan: 0,
  235. colspan: 0
  236. }
  237. }
  238. }
  239. },
  240. unique(arr) {
  241. const res = new Map()
  242. return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
  243. },
  244. uniquepid(arr) {
  245. const res = new Map()
  246. return arr.filter((arr) => !res.has(arr.p_id) && res.set(arr.p_id, 1))
  247. },
  248. changeDate() {
  249. this.getSummaryDetailList()
  250. },
  251. changeItem() {
  252. this.getSummaryDetailList()
  253. },
  254. searchAction() {
  255. this.item_type = '0'
  256. this.getSummaryDetailList()
  257. }, getSummaryDetailListtwo() {
  258. this.detail_loading = true
  259. let start_time = this.chargeDate[0]
  260. let end_time = this.chargeDate[1]
  261. let params = {
  262. start_time: start_time,
  263. end_time: end_time,
  264. type: this.item_type,
  265. keyword: this.keywords
  266. }
  267. GetSummaryDetail(params).then(response => {
  268. if (response.data.state == 0) {
  269. this.detail_loading = false
  270. this.$message.error(response.data.msg)
  271. return false
  272. } else {
  273. this.detail_loading = false
  274. this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
  275. confirmButtonText: '确 定',
  276. cancelButtonText: '取 消',
  277. type: 'warning'
  278. }).then(() => {
  279. }).catch(() => {
  280. })
  281. }
  282. //
  283. // console.log('去重前')
  284. // console.log(advice)
  285. // console.log(project)
  286. // //
  287. // //
  288. // //
  289. // console.log('去重后')
  290. //
  291. // console.log(advice.length)
  292. // console.log(project.length)
  293. //
  294. // for (let i = 0; i < project.length; i++) {
  295. // let obj = {}
  296. // let count = 0
  297. // for (let a = 0; a < tempPatientsTwo.length; a++) {
  298. // if (project[i].patient_id == tempPatientsTwo[a].patient_id && project[i].item_id == tempPatientsTwo[a].item_id && project[i].price == tempPatientsTwo[a].price) {
  299. // count = count + tempPatientsTwo[a].count
  300. // obj['count'] = count
  301. //
  302. // }
  303. // obj['price'] = project[i].price
  304. // obj['type'] = project[i].type
  305. // obj['item_name'] = project[i].item_name
  306. // obj['item_id'] = project[i].item_id
  307. // obj['name'] = project[i].name
  308. // obj['patient_id'] = project[i].patient_id
  309. // obj['count'] = count
  310. // this.tableData.push(obj)
  311. // }
  312. // }
  313. //
  314. //
  315. // for (let i = 0; i < advice.length; i++) {
  316. // let obj = {}
  317. // let count = 0
  318. // for (let a = 0; a < tempPatientsTwo.length; a++) {
  319. // if (advice[i].patient_id == tempPatientsTwo[a].patient_id && advice[i].item_id == tempPatientsTwo[a].item_id && advice[i].price == tempPatientsTwo[a].price) {
  320. // count = count + tempPatientsTwo[a].count
  321. // obj['count'] = count
  322. //
  323. // }
  324. // obj['price'] = advice[i].price
  325. // obj['type'] = advice[i].type
  326. // obj['item_name'] = advice[i].item_name
  327. // obj['item_id'] = advice[i].item_id
  328. // obj['name'] = advice[i].name
  329. // obj['patient_id'] = advice[i].patient_id
  330. // this.tableData.push(obj)
  331. // }
  332. // }
  333. // console.log(this.tableData.length)
  334. // this.tableData = this.sort(this.tableData)
  335. })
  336. },
  337. getSummaryDetailList() {
  338. this.detail_loading = true
  339. let start_time = this.chargeDate[0]
  340. let end_time = this.chargeDate[1]
  341. let params = {
  342. start_time: start_time,
  343. end_time: end_time,
  344. type: this.item_type,
  345. keyword: this.keywords
  346. }
  347. GetSummaryDetail(params).then(response => {
  348. if (response.data.state == 0) {
  349. this.detail_loading = false
  350. this.$message.error(response.data.msg)
  351. return false
  352. } else {
  353. this.detail_loading = false
  354. this.tableData = []
  355. let tempPatients = []
  356. let tempPatientsTwo = []
  357. //
  358. let tempData = response.data
  359. let allData = response.data
  360. tempData = this.uniquepid(tempData)
  361. //
  362. let order_infos = []
  363. //
  364. for (let i = 0; i < tempData.length; i++) {
  365. let obj = {
  366. patient_id: tempData[i].p_id,
  367. name: tempData[i].p_name,
  368. orders: []
  369. }
  370. for (let b = 0; b < allData.length; b++) {
  371. if (tempData[i].p_id == allData[b].p_id) {
  372. obj.orders = obj.orders.concat(allData[b])
  373. }
  374. }
  375. tempPatients.push(obj)
  376. }
  377. console.log(tempPatients)
  378. //
  379. for (let i = 0; i < tempPatients.length; i++) {
  380. let obj = {
  381. patient_id: tempPatients[i].patient_id,
  382. name: tempPatients[i].name,
  383. order_info: []
  384. }
  385. let orders = tempPatients[i].orders
  386. for (let c = 0; c < orders.length; c++) {
  387. let newObj = {}
  388. newObj['count'] = orders[c].cnt
  389. newObj['price'] = orders[c].pric
  390. newObj['item_total'] = orders[c].det_item_fee_sumamt
  391. if (orders[c].advice_id > 0 && orders[c].project_id == 0) {
  392. newObj['type'] = 1
  393. newObj['item_name'] = orders[c].item_name
  394. newObj['item_id'] = orders[c].item_id
  395. if (orders[c].min_unit != orders[c].dose_unit) {
  396. newObj['item_spec'] = orders[c].dose + orders[c].dose_unit + '*' + orders[c].min_number + orders[c].min_unit + '/' + orders[c].max_unit
  397. } else {
  398. newObj['item_spec'] = ''
  399. }
  400. }
  401. if (orders[c].advice_id == 0 && orders[c].project_id > 0) {
  402. newObj['type'] = 2
  403. newObj['item_id'] = orders[c].item_id
  404. if (orders[c].p_type == 2) {
  405. newObj['item_spec'] =""
  406. newObj['item_name'] = orders[c].item_name
  407. } else if (orders[c].p_type == 3) {
  408. newObj['item_spec'] = orders[c].specification_name
  409. newObj['item_name'] = orders[c].item_name
  410. }
  411. }
  412. obj.order_info.push(newObj)
  413. order_infos.push(orders.order_info)
  414. }
  415. tempPatientsTwo.push(obj)
  416. }
  417. console.log(tempPatientsTwo)
  418. //
  419. for (let d = 0; d < tempPatientsTwo.length; d++) {
  420. tempPatientsTwo[d]['new_order_info'] = []
  421. let project = []
  422. let advice = []
  423. for (let b = 0; b < tempPatientsTwo[d].order_info.length; b++) {
  424. if (tempPatientsTwo[d].order_info[b].type == 1) {
  425. advice.push(tempPatientsTwo[d].order_info[b])
  426. } else {
  427. project.push(tempPatientsTwo[d].order_info[b])
  428. }
  429. }
  430. project = this.uniqueProjectAndAdvice(project)
  431. advice = this.uniqueProjectAndAdvice(advice)
  432. for (let i = 0; i < project.length; i++) {
  433. let obj = {}
  434. let count = 0
  435. for (let a = 0; a < tempPatientsTwo[d].order_info.length; a++) {
  436. if (project[i].item_id == tempPatientsTwo[d].order_info[a].item_id && project[i].price == tempPatientsTwo[d].order_info[a].price) {
  437. count = count + tempPatientsTwo[d].order_info[a].count
  438. }
  439. }
  440. obj['price'] = project[i].price
  441. obj['type'] = project[i].type
  442. obj['item_name'] = project[i].item_name
  443. obj['item_spec'] = project[i].item_spec
  444. obj['item_total'] = project[i].item_total
  445. obj['item_id'] = project[i].item_id
  446. obj['name'] = tempPatientsTwo[d].name
  447. obj['patient_id'] = tempPatientsTwo[d].patient_id
  448. obj['count'] = count
  449. tempPatientsTwo[d].new_order_info.push(obj)
  450. }
  451. for (let i = 0; i < advice.length; i++) {
  452. let obj = {}
  453. let count = 0
  454. for (let a = 0; a < tempPatientsTwo[d].order_info.length; a++) {
  455. if (advice[i].item_id == tempPatientsTwo[d].order_info[a].item_id && advice[i].price == tempPatientsTwo[d].order_info[a].price) {
  456. count = count + tempPatientsTwo[d].order_info[a].count
  457. }
  458. }
  459. obj['price'] = advice[i].price
  460. obj['type'] = advice[i].type
  461. obj['item_name'] = advice[i].item_name
  462. obj['item_spec'] = advice[i].item_spec
  463. obj['item_id'] = advice[i].item_id
  464. obj['name'] = tempPatientsTwo[d].name
  465. obj['item_total'] = advice[i].item_total
  466. obj['patient_id'] = tempPatientsTwo[d].patient_id
  467. obj['count'] = count
  468. tempPatientsTwo[d].new_order_info.push(obj)
  469. }
  470. }
  471. for (let i = 0; i < tempPatientsTwo.length; i++) {
  472. let total = 0
  473. for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
  474. let new_name = tempPatientsTwo[i].new_order_info[b].item_name
  475. if (new_name != undefined){
  476. if (new_name.length != 0) {
  477. total = parseFloat(total) + parseFloat((parseFloat(tempPatientsTwo[i].new_order_info[b].count.toString()) * parseFloat(tempPatientsTwo[i].new_order_info[b].price.toString())).toFixed(2))
  478. }
  479. }
  480. }
  481. tempPatientsTwo[i]['total'] = total
  482. }
  483. for (let i = 0; i < tempPatientsTwo.length; i++) {
  484. // console.log(111,tempPatientsTwo[i].total)
  485. if (tempPatientsTwo[i].new_order_info.length > 0) {
  486. for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
  487. // let new_name = tempPatientsTwo[i].new_order_info[b].item_name
  488. // console.log('2 ' + new_name)
  489. //
  490. // new_name = new_name.replace('( ', '')
  491. // new_name = new_name.replace(' )', '')
  492. let obj = {
  493. name: tempPatientsTwo[i].name,
  494. patient_id: tempPatientsTwo[i].patient_id,
  495. price: tempPatientsTwo[i].new_order_info[b].price,
  496. type: tempPatientsTwo[i].new_order_info[b].type,
  497. item_name: tempPatientsTwo[i].new_order_info[b].item_name,
  498. item_id: tempPatientsTwo[i].new_order_info[b].item_id,
  499. count: tempPatientsTwo[i].new_order_info[b].count,
  500. item_spec: tempPatientsTwo[i].new_order_info[b].item_spec
  501. }
  502. // if(b == 0){
  503. obj['total'] = tempPatientsTwo[i].total
  504. // }else{
  505. // obj['total'] = 0
  506. // }
  507. this.tableData.push(obj)
  508. }
  509. }
  510. }
  511. console.log( this.tableData)
  512. this.handleSpanTempArr()
  513. // this.tableData = tempPatientsTwo
  514. // console.log(tempPatientsTwo.length)
  515. //
  516. let advices = []
  517. let projects = []
  518. let goods = []
  519. for(let i = 0; i < order_infos.length; i++){
  520. if(order_infos[i].advice_id > 0 && order_infos[i].project_id == 0){
  521. advices.push(order_infos[i].advice)
  522. }
  523. if(order_infos[i].advice_id == 0 && order_infos[i].project_id > 0){
  524. if(order_infos[i].project.type == 3){
  525. goods.push(order_infos[i].project)
  526. }
  527. }
  528. if(order_infos[i].advice_id == 0 && order_infos[i].project_id > 0){
  529. if(order_infos[i].project.type == 2){
  530. projects.push(order_infos[i].project)
  531. }
  532. }
  533. }
  534. }
  535. //
  536. // console.log('去重前')
  537. // console.log(advice)
  538. // console.log(project)
  539. // //
  540. // //
  541. // //
  542. // console.log('去重后')
  543. //
  544. // console.log(advice.length)
  545. // console.log(project.length)
  546. //
  547. // for (let i = 0; i < project.length; i++) {
  548. // let obj = {}
  549. // let count = 0
  550. // for (let a = 0; a < tempPatientsTwo.length; a++) {
  551. // if (project[i].patient_id == tempPatientsTwo[a].patient_id && project[i].item_id == tempPatientsTwo[a].item_id && project[i].price == tempPatientsTwo[a].price) {
  552. // count = count + tempPatientsTwo[a].count
  553. // obj['count'] = count
  554. //
  555. // }
  556. // obj['price'] = project[i].price
  557. // obj['type'] = project[i].type
  558. // obj['item_name'] = project[i].item_name
  559. // obj['item_id'] = project[i].item_id
  560. // obj['name'] = project[i].name
  561. // obj['patient_id'] = project[i].patient_id
  562. // obj['count'] = count
  563. // this.tableData.push(obj)
  564. // }
  565. // }
  566. //
  567. //
  568. // for (let i = 0; i < advice.length; i++) {
  569. // let obj = {}
  570. // let count = 0
  571. // for (let a = 0; a < tempPatientsTwo.length; a++) {
  572. // if (advice[i].patient_id == tempPatientsTwo[a].patient_id && advice[i].item_id == tempPatientsTwo[a].item_id && advice[i].price == tempPatientsTwo[a].price) {
  573. // count = count + tempPatientsTwo[a].count
  574. // obj['count'] = count
  575. //
  576. // }
  577. // obj['price'] = advice[i].price
  578. // obj['type'] = advice[i].type
  579. // obj['item_name'] = advice[i].item_name
  580. // obj['item_id'] = advice[i].item_id
  581. // obj['name'] = advice[i].name
  582. // obj['patient_id'] = advice[i].patient_id
  583. // this.tableData.push(obj)
  584. // }
  585. // }
  586. // console.log(this.tableData.length)
  587. // this.tableData = this.sort(this.tableData)
  588. })
  589. }, uniqueProjectAndAdvice(array) {
  590. // res用来存储结果
  591. var res = []
  592. for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
  593. for (var j = 0, resLen = res.length; j < resLen; j++) {
  594. if (array[i].item_id === res[j].item_id && array[i].price === res[j].price) {
  595. break
  596. }
  597. }
  598. // 如果array[i]是唯一的,那么执行完循环,j等于resLen
  599. if (j === resLen) {
  600. res.push(array[i])
  601. }
  602. }
  603. return res
  604. }, sort(arr) {
  605. for (var i = 0; i < arr.length - 1; i++) {
  606. for (var j = 0; j < arr.length - i - 1; j++) {
  607. if (arr[j].patient_id > arr[j + 1].patient_id) {// 相邻元素两两对比
  608. var hand = arr[j]
  609. arr[j] = arr[j + 1]
  610. arr[j + 1] = hand
  611. }
  612. }
  613. }
  614. return arr
  615. }, handleSpanTempArr() {
  616. this.tempArr = []
  617. for (let i = 0; i < this.tableData.length; i++) {
  618. if (i === 0) {
  619. this.tempArr.push(1)
  620. this.pos = 0
  621. } else {
  622. // 判断当前元素与上一个元素是否相同
  623. if (this.tableData[i].patient_id === this.tableData[i - 1].patient_id) {
  624. this.tempArr[this.pos] += 1
  625. this.tempArr.push(0)
  626. } else {
  627. this.tempArr.push(1)
  628. this.pos = i
  629. }
  630. }
  631. }
  632. let sameRowArr = [], sIdx = 0
  633. this.tableData.forEach((item, index) => {
  634. item.index = index
  635. if (index === 0) {
  636. sameRowArr.push([index])
  637. } else {
  638. if (item.patient_id === this.tableData[index - 1].patient_id) {
  639. sameRowArr[sIdx].push(index)
  640. } else {
  641. sIdx = sIdx + 1
  642. sameRowArr.push([index])
  643. }
  644. }
  645. })
  646. this.sameRowArr = sameRowArr
  647. }, merge({ row, column, rowIndex, columnIndex }) {
  648. if (columnIndex === 0 || columnIndex === 6) {
  649. const _row = this.tempArr[rowIndex]
  650. const _col = _row > 0 ? 1 : 0
  651. return {
  652. rowspan: _row,
  653. colspan: _col
  654. }
  655. }
  656. }, export_detail() {
  657. let list = []
  658. for (let i = 0; i < this.tableData.length; i++) {
  659. let order = this.tableData[i]
  660. let name = order.name
  661. let item_name = order.item_name
  662. let count = order.count
  663. let price = order.price.toFixed(2)
  664. let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
  665. let total = order.total.toFixed(2)
  666. let obj = {
  667. '患者姓名': name,
  668. '项目名称': item_name,
  669. '数量': count,
  670. '单价': price,
  671. '费用': pay_sumamt,
  672. '费用总额': total
  673. }
  674. list.push(obj)
  675. }
  676. import('@/vendor/Export2Excel').then(excel => {
  677. const tHeader = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
  678. const filterVal = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
  679. const data = this.formatJson(filterVal, list)
  680. excel.export_json_to_excel1({
  681. header: tHeader,
  682. data,
  683. filename: '明细',
  684. ref: this.$refs['table'].$el
  685. })
  686. })
  687. }, formatJson(filterVal, jsonData) {
  688. return jsonData.map(v => filterVal.map(j => v[j]))
  689. }, getTotal(param) {
  690. const { columns, data } = param
  691. const sums = []
  692. columns.forEach((column, index) => {
  693. if (index === 0) {
  694. sums[index] = '合计'
  695. return
  696. }
  697. const values = data.map(item => Number(item[column.property]))
  698. if (column.property === 'total') {
  699. // sums[index] = values.reduce((prev, curr) => {
  700. // const value = Number(curr)
  701. // if (!isNaN(value)) {
  702. // return prev + curr
  703. // } else {
  704. // return prev
  705. // }
  706. // }, 0)
  707. // sums[index] = sums[index].toFixed(2)
  708. let num = 0
  709. data.map(item => {
  710. num += item.price.toFixed(2) * item.count
  711. })
  712. sums[index] = num.toFixed(2)
  713. } else {
  714. sums[index] = ''
  715. }
  716. })
  717. return sums
  718. }
  719. },
  720. created() {
  721. this.getSummaryDetailList()
  722. }
  723. }
  724. </script>