newSettleDetail.vue 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. <template>
  2. <div class="main-contain outpatientChargesManagement">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <div
  8. style="
  9. display: flex;
  10. justify-content: space-between;
  11. margin-bottom: 10px;
  12. ">
  13. </div>
  14. <div style="margin-bottom: 10px;">
  15. <el-date-picker
  16. size="small"
  17. v-model="start_time"
  18. prefix-icon="el-icon-date"
  19. @change="handleStartTimeChange"
  20. :editable="false"
  21. :clearable="false"
  22. style="width: 196px; "
  23. type="date"
  24. placeholder="选择开始日期"
  25. format="yyyy-MM-dd"
  26. value-format="yyyy-MM-dd"
  27. align="right"
  28. ></el-date-picker>
  29. <span style="text-align: center;">-</span>
  30. <el-date-picker
  31. size="small"
  32. v-model="end_time"
  33. prefix-icon="el-icon-date"
  34. @change="handleEndTimeChange"
  35. :editable="false"
  36. :clearable="false"
  37. style="width: 196px; "
  38. type="date"
  39. placeholder="选择结束日期"
  40. format="yyyy-MM-dd"
  41. value-format="yyyy-MM-dd"
  42. align="right"
  43. ></el-date-picker>
  44. <el-button size="small" type="primary"
  45. @click="query">查询
  46. </el-button>
  47. <el-button size="small" type="primary"
  48. @click="auth">认证
  49. </el-button>
  50. </div>
  51. <el-table
  52. :data="tableData"
  53. border
  54. style="width: 100%"
  55. :row-style="{ color: '#303133' }"
  56. @selection-change="handleSelectionChange"
  57. :header-cell-style="{
  58. backgroundColor: 'rgb(245, 247, 250)',
  59. color: '#606266',
  60. }"
  61. highlight-current-row
  62. >
  63. <el-table-column align="center" type="selection" width="55"></el-table-column>
  64. <el-table-column
  65. prop="date"
  66. label="序号"
  67. width="60"
  68. align="center"
  69. type="index"
  70. >
  71. </el-table-column>
  72. <el-table-column align="center" width="90" prop="name" label="患者名字">
  73. <template slot-scope="scope">{{ scope.row.patient.name }}</template>
  74. </el-table-column>
  75. <el-table-column align="center" width="90" prop="name" label="患者性别">
  76. <template slot-scope="scope">{{ scope.row.patient.gender == 1 ? '男':'女' }}</template>
  77. </el-table-column>
  78. <el-table-column align="center" width="90" prop="name" label="处方类型">
  79. <template slot-scope="scope">
  80. <div>{{ getMedType(scope.row.med_type) }}</div>
  81. </template>
  82. </el-table-column>
  83. <el-table-column align="center" width="90" prop="name" label="结算类型">
  84. <template slot-scope="scope">
  85. <div v-if="scope.row.his_patient.balance_accounts_type != 2">
  86. 医保
  87. </div>
  88. <div v-if="scope.row.his_patient.balance_accounts_type == 2">
  89. 自费
  90. </div>
  91. </template>
  92. </el-table-column>
  93. <el-table-column align="center" width="90" prop="name" label="就诊凭证类型">
  94. <template slot-scope="scope">
  95. <div v-if="scope.row.his_patient.id_card_type == 1">
  96. 社会保障卡
  97. </div>
  98. <div v-if="scope.row.his_patient.id_card_type == 2">
  99. 居民身份证
  100. </div>
  101. <div v-if="scope.row.his_patient.id_card_type == 4">
  102. 医保电子凭证
  103. </div>
  104. </template>
  105. </el-table-column>
  106. <el-table-column
  107. align="center"
  108. width="100"
  109. prop="name"
  110. label="处方日期"
  111. >
  112. <template slot-scope="scope">
  113. {{getTimes(scope.row.settle_accounts_date) }}
  114. </template>
  115. </el-table-column>
  116. <el-table-column
  117. align="center"
  118. width="100"
  119. prop="name"
  120. label="收费时间"
  121. >
  122. <template slot-scope="scope">
  123. {{
  124. scope.row.setl_time
  125. ? scope.row.setl_time
  126. : getTimes(scope.row.settle_accounts_date)
  127. }}
  128. </template>
  129. </el-table-column>
  130. <el-table-column align="center" width="90" prop="name" label="收费员">
  131. <template slot-scope="scope">
  132. {{getName(scope.row.creator)}}
  133. </template>
  134. </el-table-column>
  135. <el-table-column align="center" prop="name" label="操作">
  136. <template slot-scope="scope">
  137. <el-button v-if="scope.row.result.id == 0" size="mini" type="primary"
  138. @click="blue()">
  139. 开票
  140. </el-button>
  141. <el-button v-if="scope.row.result.id > 0 && scope.row.result.is_red_washed == 0" size="mini" type="primary"
  142. @click="hongchong(scope.row)">
  143. 红冲
  144. </el-button>
  145. <el-button size="mini" type="primary" v-if="scope.row.result.id > 0 && scope.row.result.is_red_washed == 0"
  146. @click="yulan(scope.row)">
  147. 预览
  148. </el-button>
  149. <el-button size="mini" type="primary" @click="download(scope.row)" v-if="scope.row.result.id > 0 && scope.row.result.is_red_washed == 0">
  150. 下载
  151. </el-button>
  152. </template>
  153. </el-table-column>
  154. </el-table>
  155. <el-pagination
  156. @size-change="handleSizeChange"
  157. @current-change="handleCurrentChange"
  158. :page-sizes="[10, 50, 100]"
  159. :page-size="10"
  160. :current-page.sync="page"
  161. background
  162. style="margin-top: 20px; float: right"
  163. layout="total, sizes, prev, pager, next, jumper"
  164. :total="total"
  165. >
  166. </el-pagination>
  167. </div>
  168. </div>
  169. </template>
  170. <script>
  171. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  172. import { getDoctorList, getExportConsumeDetailList, getHisOrderList, Refund } from '@/api/his/his'
  173. import { ModifyFapiaoCode } from '@/api/his/his_tools'
  174. // import NewStatementPrint from './newStatementPrint'
  175. import { adminMainView} from "@/api/role/admin";
  176. import { fetchAllAdminUsers } from '@/api/doctor'
  177. import axios from 'axios'
  178. import { jsGetAge, uParseTime } from '@/utils/tools'
  179. import {
  180. getOrderFapiaoList, OpenBlueFapiao, OpenRedFapiao
  181. } from '../../api/fapiao'
  182. import { getDialysisRecordInitData } from '@/api/dialysis_record'
  183. import { number } from 'echarts/lib/export'
  184. import QRCode from 'qrcodejs2'
  185. const moment = require('moment')
  186. export default {
  187. name: 'newSettleDetail',
  188. components: {
  189. BreadCrumb,
  190. },
  191. props: {
  192. patient_id: number
  193. },
  194. data() {
  195. return {
  196. staff:"",
  197. admins:[],
  198. orderObj: {},
  199. batchOrderObj: {},
  200. fapiao_number:"",
  201. med_options: [
  202. { id: 0, text: '全部' },
  203. { id: 11, text: '普通门诊' },
  204. { id: 14, text: '门诊特殊病' }
  205. ],
  206. zone_options: [
  207. { id: 0, text: '全部分区' }
  208. ],
  209. statementListVisible: false,
  210. statementVisible: false,
  211. batchStatementVisible: false,
  212. statementVisible9504: false,
  213. orderObj9504: {},
  214. crumbs: [
  215. { path: false, name: '门诊收费' },
  216. { path: false, name: '项目消费明细汇总' }
  217. ],
  218. tableData: [],
  219. tableData2:[],
  220. selecting_schs: [],
  221. dialogfapiaoVisible:false,
  222. targeOrderId:0,
  223. targeObj:{},
  224. limit: 10,
  225. page: 1,
  226. keywords: '',
  227. sch_type: '0',//班次
  228. zoneVal: 0,//分区
  229. medTypeVal: 0,
  230. start_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  231. end_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  232. pay_time:"",
  233. total: '',
  234. doctors: [],
  235. sort_type: 1,
  236. sort_types: [
  237. { value: 1, label: '处方时间' },
  238. { value: 2, label: '结算时间' }
  239. ],
  240. admin_user_id: '',
  241. listVisible: false,
  242. allListVisible: false,
  243. adminUserOptions: [],
  244. invoiceVisible: false,
  245. paramsObj: {},
  246. invoiceParams: {},
  247. settlementVisible: false,
  248. settlementObj: {},
  249. accounts_click_vi:false,
  250. }
  251. },
  252. created() {
  253. this.getInitData()
  254. this.fetchAllAdminUsers()
  255. // this.getDoctorList()
  256. this.getHisOrderList()
  257. // this.getAllstaff()
  258. },
  259. methods: {
  260. hongchong(row){
  261. var id = row.result.id
  262. let params = {
  263. "id":id,
  264. "admin_user_id":this.$store.getters.xt_user.user.id,
  265. }
  266. var that = this;
  267. axios.get('http://127.0.0.1:9532/api/fapiao/red',{params:params}).then(function(response) {
  268. if (response.data.state == 0) {
  269. that.$message.error(response.data.data.msg);
  270. return false
  271. } else {
  272. if(response.data.data.failed_code == -10){
  273. that.$confirm(response.data.data.msg, '错误信息', {
  274. confirmButtonText: '确 定',
  275. type: 'warning'
  276. }).then(() => {
  277. }).catch(() => {
  278. })
  279. }else{
  280. that.$message.success(response.data.msg)
  281. that.getHisOrderList()
  282. }
  283. }
  284. }).catch(function(error) {
  285. })
  286. },
  287. blue(){
  288. var order_ids = ""
  289. for(let i = 0; i < this.selecting_schs.length;i++){
  290. if(order_ids.length == 0){
  291. order_ids = this.selecting_schs[i].id
  292. }else{
  293. order_ids =order_ids + ","+this.selecting_schs[i].id
  294. }
  295. }
  296. let params = {
  297. "order_ids":order_ids,
  298. "admin_user_id":this.$store.getters.xt_user.user.id,
  299. }
  300. var that = this;
  301. axios.get('http://127.0.0.1:9532/api/fapiao/blue',{params:params}).then(function(response) {
  302. if (response.data.state == 0) {
  303. that.$message.error(response.data.data.msg);
  304. return false
  305. } else {
  306. if(response.data.data.failed_code == -10){
  307. that.$confirm(response.data.data.msg, '错误信息', {
  308. confirmButtonText: '确 定',
  309. type: 'warning'
  310. }).then(() => {
  311. }).catch(() => {
  312. })
  313. }else{
  314. that.$message.success(response.data.data.msg)
  315. that.getHisOrderList()
  316. }
  317. }
  318. }).catch(function(error) {
  319. })
  320. },
  321. getData(patient_id){
  322. this.patient_id = patient_id
  323. this.getHisOrderList()
  324. },
  325. auth(){
  326. var that = this;
  327. let params = {
  328. "admin_user_id":this.$store.getters.xt_user.user.id,
  329. }
  330. axios.get('http://127.0.0.1:9532/api/fapiao/qrcode/get',{params:params}).then(function(response) {
  331. if (response.data.state == 0) {
  332. that.$message.error(response.data.data.msg);
  333. return false
  334. } else {
  335. if(response.data.data.failed_code == -10){
  336. that.$confirm(response.data.data.msg, '错误信息', {
  337. confirmButtonText: '确 定',
  338. type: 'warning'
  339. }).then(() => {
  340. }).catch(() => {
  341. })
  342. }else{
  343. if(response.data.data.cus_status == 1){
  344. this.$nextTick(() =>{
  345. var qrcode = new QRCode(that.$refs.qrCodeUrl, {
  346. text: response.data.data.qr_code, // 需要转换为二维码的内容
  347. width: 120,
  348. height: 120,
  349. colorDark: '#000000',
  350. colorLight: '#ffffff',
  351. correctLevel: QRCode.CorrectLevel.H
  352. })
  353. })
  354. this.qr_dialogVisible =true
  355. }else if(response.data.data.cus_status == -1){
  356. // this.$message.error(response.data.msg)/* */
  357. that
  358. .$confirm(response.data.data.msg, '信息', {
  359. confirmButtonText: '确 定',
  360. type: 'warning'
  361. })
  362. .then(() => {
  363. })
  364. .catch(() => {
  365. })
  366. }else if(response.data.data.cus_status == 2){
  367. // this.$message.error(response.data.data.msg)
  368. that
  369. .$confirm(response.data.data.msg, '信息', {
  370. confirmButtonText: '确 定',
  371. type: 'warning'
  372. })
  373. .then(() => {
  374. })
  375. .catch(() => {
  376. })
  377. }else if(response.data.data.cus_status == -3){
  378. // this.$message.error(response.data.data.msg)
  379. that
  380. .$confirm(response.data.data.msg, '信息', {
  381. confirmButtonText: '确 定',
  382. type: 'warning'
  383. })
  384. .then(() => {
  385. })
  386. .catch(() => {
  387. })
  388. }else if(response.data.data.cus_status == -4){
  389. // this.$message.error(response.data.data.msg)
  390. that
  391. .$confirm(response.data.data.msg, '信息', {
  392. confirmButtonText: '确 定',
  393. type: 'warning'
  394. })
  395. .then(() => {
  396. })
  397. .catch(() => {
  398. })
  399. }
  400. }
  401. }
  402. }).catch(function(error) {
  403. })
  404. },
  405. query(){
  406. },download(){
  407. },
  408. yulan(row){
  409. },
  410. getAllstaff(){
  411. adminMainView()
  412. .then(rs => {
  413. var resp = rs.data;
  414. if (resp.state === 1) {
  415. var adminData = resp.data.admins
  416. this.admins.push(...adminData);
  417. } else {
  418. this.$message.error(resp.msg);
  419. }
  420. })
  421. .catch(err => {
  422. this.$message.error(err);
  423. });
  424. },
  425. handleSelectionChange(val) {
  426. this.selecting_schs = val
  427. },
  428. handleSchType(val) {
  429. this.sch_type = val
  430. this.getHisOrderList()
  431. }, handleMedChange() {
  432. this.getHisOrderList()
  433. },
  434. handleZoneChange(val) {
  435. this.zoneVal = val
  436. this.getHisOrderList()
  437. },
  438. getInitData: function() {
  439. getDialysisRecordInitData().then((rs) => {
  440. var resp = rs.data
  441. if (resp.state == 1) {
  442. var zones = resp.data.zones
  443. var zone_options = [{ id: 0, text: '全部' }]
  444. for (let z_i = 0; z_i < zones.length; z_i++) {
  445. const zone = zones[z_i]
  446. zone_options.push({ id: zone.id, text: zone.name })
  447. }
  448. this.zone_options = zone_options
  449. } else {
  450. this.$message.error(resp.msg)
  451. }
  452. })
  453. },
  454. getMedType(med_type) {
  455. var med_type = parseInt(med_type)
  456. switch (med_type) {
  457. case 11:
  458. return '普通门诊'
  459. break
  460. case 12:
  461. return '门诊挂号'
  462. break
  463. case 13:
  464. return '急诊'
  465. break
  466. case 14:
  467. return '门诊特殊病'
  468. break
  469. case 15:
  470. return '门诊统筹'
  471. break
  472. case 16:
  473. return '门诊慢性病'
  474. break
  475. case 21:
  476. return '普通住院'
  477. break
  478. case 140104:
  479. return '城乡门诊特殊病(140104)'
  480. break
  481. case 992102:
  482. return '单病种(992102)'
  483. break
  484. }
  485. },
  486. fetchAllAdminUsers() {
  487. fetchAllAdminUsers().then((response) => {
  488. if (response.data.state == 1) {
  489. this.adminUserOptions = response.data.data.users
  490. }
  491. })
  492. },
  493. getName(admin_user_id) {
  494. for (let i = 0; i < this.adminUserOptions.length; i++) {
  495. if (this.adminUserOptions[i].id == admin_user_id) {
  496. return this.adminUserOptions[i].name
  497. }
  498. }
  499. },
  500. handleSizeChange(limit) {
  501. this.limit = limit
  502. this.getHisOrderList()
  503. },
  504. handleCurrentChange(page) {
  505. this.page = page
  506. this.getHisOrderList()
  507. },
  508. handleStartTimeChange() {
  509. this.page = 1
  510. this.keywords = ''
  511. this.getHisOrderList()
  512. },
  513. handleEndTimeChange() {
  514. this.page = 1
  515. this.keywords = ''
  516. this.getHisOrderList()
  517. },
  518. getTimes(time) {
  519. return uParseTime(time, '{y}-{m}-{d}')
  520. },
  521. getTime(value, temp) {
  522. if (value != undefined) {
  523. return uParseTime(value, temp)
  524. }
  525. return ''
  526. },
  527. getHisOrderList() {
  528. let params = {
  529. page: this.page,
  530. limit: this.limit,
  531. keywords: this.keywords,
  532. start_time: this.start_time,
  533. end_time: this.end_time,
  534. sort_type: this.sort_type,
  535. patient_id: this.patient_id,
  536. }
  537. getOrderFapiaoList(params).then((response) => {
  538. if (response.data.state == 0) {
  539. this.$message.error(response.data.msg)
  540. return false
  541. } else {
  542. this.tableData = response.data.data.order
  543. this.total = response.data.data.total
  544. }
  545. })
  546. },
  547. getDoctorList() {
  548. getDoctorList().then((response) => {
  549. if (response.data.state == 0) {
  550. this.$message.error(response.data.msg)
  551. return false
  552. } else {
  553. this.doctors = response.data.data.doctors
  554. }
  555. })
  556. },
  557. open(index) {
  558. if (index == 1) {
  559. this.listVisible = true
  560. } else if (index == 2) {
  561. this.allListVisible = true
  562. }
  563. }, unique(array) {
  564. // res用来存储结果
  565. var res = []
  566. for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
  567. for (var j = 0, resLen = res.length; j < resLen; j++) {
  568. if (array[i].id === res[j].id && array[i].price === res[j].price) {
  569. break
  570. }
  571. }
  572. // 如果array[i]是唯一的,那么执行完循环,j等于resLen
  573. if (j === resLen) {
  574. res.push(array[i])
  575. }
  576. }
  577. return res
  578. },camcleModifyFaPiaoCode(){
  579. this.dialogfapiaoVisible = false
  580. this.invoiceVisible = true
  581. var obj = this.targeObj
  582. let paramsObj = {
  583. order_id: obj.id,
  584. patient_id: obj.patient_id,
  585. number: obj.mdtrt_id,
  586. name: obj.patient.name,
  587. age: obj.age,
  588. gend: obj.patient.gender,
  589. setl_time: obj.setl_time,
  590. chargeName: this.getName(obj.creator)
  591. }
  592. this.dialogfapiaoVisible = false
  593. this.invoiceParams = paramsObj
  594. this.invoiceVisible = true
  595. },modifyFaPiaoCode(){
  596. let params = {
  597. id:this.targeOrderId,
  598. fapiao_number: this.fapiao_number
  599. }
  600. modifyFapiaoCodetwo(params).then((response) => {
  601. if (response.data.state == 0) {
  602. this.$message.error(response.data.msg)
  603. return false
  604. } else {
  605. var obj = this.targeObj
  606. let paramsObj = {
  607. order_id: obj.id,
  608. patient_id: obj.patient_id,
  609. number: obj.mdtrt_id,
  610. name: obj.patient.name,
  611. age: obj.age,
  612. gend: obj.patient.gender,
  613. setl_time: obj.setl_time,
  614. chargeName: this.getName(obj.creator)
  615. }
  616. this.dialogfapiaoVisible = false
  617. this.invoiceParams = paramsObj
  618. this.invoiceVisible = true
  619. this.getHisOrderList()
  620. }
  621. })
  622. },
  623. invoicePrint(obj) {
  624. if(this.$store.getters.xt_user.org_id == 10480 || this.$store.getters.xt_user.org_id == 0){
  625. this.fapiao_number = obj.fa_piao_number
  626. this.dialogfapiaoVisible = true
  627. this.targeOrderId = obj.id
  628. this.targeObj = obj
  629. }else{
  630. let paramsObj = {
  631. order_id: obj.id,
  632. patient_id: obj.patient_id,
  633. number: obj.mdtrt_id,
  634. name: obj.patient.name,
  635. age: obj.age,
  636. gend: obj.patient.gender,
  637. setl_time: obj.setl_time,
  638. chargeName: this.getName(obj.creator)
  639. }
  640. this.dialogfapiaoVisible = false
  641. this.invoiceParams = paramsObj
  642. this.invoiceVisible = true
  643. }
  644. }
  645. }
  646. }
  647. </script>
  648. <style lang="scss">
  649. .table{
  650. tr td{
  651. padding:5px 0;
  652. }
  653. }
  654. </style>