123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299 |
- <template>
- <div class="main-contain outpatientChargesManagement">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div class="app-container">
- <div
- style="
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- "
- >
- <div>
- <el-input
- size="small"
- style="width: 150px"
- v-model="keywords"
- class="filter-item"
- />
- <el-button
- size="small"
- style="margin-left: 10px"
- class="filter-item"
- type="primary"
- @click="searchAction"
- >
- 搜索
- </el-button>
- <el-select
- size="small"
- v-model="sort_type"
- placeholder="请选择"
- style="width: 150px; margin-left: 10px"
- @change="changeSortType"
- >
- <el-option
- v-for="(item, index) in sort_types"
- :key="index"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
-
- <el-select
- size="small"
- v-model="p_type"
- placeholder="请选择"
- style="width: 150px; margin-left: 10px"
- @change="changePType"
- >
- <el-option
- v-for="(item, index) in p_types"
- :key="index"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
-
- <el-select
- size="small"
- v-model="charge_type"
- placeholder="请选择"
- style="width: 150px; margin-left: 10px"
- @change="changeChargeType"
- >
- <el-option
- v-for="(item, index) in charge_types"
- :key="index"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <el-date-picker
- size="small"
- v-model="start_time"
- prefix-icon="el-icon-date"
- @change="handleStartTimeChange"
- :editable="false"
- :clearable="false"
- style="width: 196px; margin-right: 10px"
- type="date"
- placeholder="选择开始日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- align="right"
- ></el-date-picker>
- <el-date-picker
- size="small"
- v-model="end_time"
- prefix-icon="el-icon-date"
- @change="handleEndTimeChange"
- :editable="false"
- :clearable="false"
- style="width: 196px; margin-right: 10px"
- type="date"
- placeholder="选择结束日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- align="right"
- ></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
- style="width: 100%"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266',
- }"
- highlight-current-row
- >
- <el-table-column
- prop="date"
- label="序号"
- width="60"
- align="center"
- type="index"
- >
- </el-table-column>
- <el-table-column align="center" prop="name" label="就诊号">
- <template slot-scope="scope">{{ scope.row.mdtrt_id }}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="患者名字">
- <template slot-scope="scope">{{ scope.row.patient.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.medfee_sumamt.toFixed(2)
- }}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="实收金额">
- <template slot-scope="scope">{{
- scope.row.reality_price.toFixed(2)
- }}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="科室">
- <template slot-scope="scope">{{
- scope.row.department_name
- }}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="收费日期">
- <template slot-scope="scope">
- <div>{{ scope.row.setl_time }}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="收费员">
- <template slot-scope="scope">{{
- getName(scope.row.creator)
- }}</template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="状态">
- <template slot-scope="scope">
- <div v-if="scope.row.order_status == 1">待结算</div>
- <div v-if="scope.row.order_status == 2">已结算</div>
- <div v-if="scope.row.order_status == 3">已退费</div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="name" label="操作">
- <template slot-scope="scope">
- <el-button size="mini" type="primary" @click="toDetail(scope.row)"
- >详情</el-button
- >
- <el-button size="mini" type="primary" @click="toPrint(scope.row)">
- 结算单
- </el-button>
- <!-- <el-button size="mini" type="primary" @click="toRefund(scope.row)">-->
- <!-- 退费-->
- <!-- </el-button>-->
- <el-button
- size="mini"
- type="primary"
- @click="uploadInfo(scope.row)"
- v-if="
- scope.row.order_status == 2 &&
- scope.row.result.id == 0 &&
- p_type == 1
- "
- >
- 上传结算清单
- </el-button>
- <el-button
- size="mini"
- type="primary"
- @click="uploadOtherInfo(scope.row)"
- v-if="
- scope.row.order_status == 2 &&
- scope.row.result.id == 0 &&
- p_type == 2
- "
- >
- 上传结算清单
- </el-button>
- <el-button
- size="mini"
- type="primary"
- @click="confirmUploadInfo(scope.row)"
- v-if="$store.getters.xt_user.org_id == 10265"
- >
- 确认结算清单
- </el-button>
- <el-button
- size="mini"
- type="primary"
- @click="cancelUploadTwo(scope.row)"
- v-if="$store.getters.xt_user.org_id == 10265"
- >
- 取消结算清单
- </el-button>
-
- <el-button
- size="mini"
- type="primary"
- @click="queryData(scope.row)"
- v-if="$store.getters.xt_user.org_id == 10265"
- >
- 查询结算清单
- </el-button>
-
- <el-button
- size="mini"
- type="primary"
- @click="invoicePrint(scope.row)"
- >打印发票</el-button
- >
- <el-button
- size="mini"
- type="primary"
- @click="shouJuPrint(scope.row)"
- >打印收据</el-button
- >
-
- <!-- <el-button size="mini" type="primary" @click="refundOne(scope.row)">-->
- <!-- 撤销出院-->
- <!-- </el-button>-->
-
- <!--<el-button size="mini" type="primary" @click="refundTwo(scope.row)" v-if="scope.row.his_hospital_patient.balance_accounts_type == 2">-->
- <!--撤销明细-->
- <!--</el-button>-->
-
- <!-- <el-button size="mini" type="primary" @click="refundTwo(scope.row)" v-if="scope.row.his_hospital_patient.balance_accounts_type != 2">-->
- <!-- 撤销明细-->
- <!-- </el-button>-->
-
- <!-- <el-button size="mini" type="primary" @click="refundThee(scope.row)">-->
- <!-- 撤销入院-->
- <!-- </el-button>-->
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100]"
- :page-size="10"
- :current-page.sync="page"
- background
- style="margin-top: 20px; float: right"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
-
- <el-dialog
- class="centerDialog"
- width="1200px"
- title="打印"
- :visible.sync="statementVisible"
- >
- <statementPrint ref="print" :paramsObj="orderObj"></statementPrint>
- <!-- <new-statement-print ref="print" :paramsObj='orderObj'></new-statement-print>-->
- <!-- <state-->
- </el-dialog>
- <el-dialog
- class="centerDialog"
- width="900px"
- title="打印"
- :visible.sync="listVisible"
- >
- <listPrint></listPrint>
- </el-dialog>
- <el-dialog
- class="centerDialog"
- width="900px"
- title="打印"
- :visible.sync="allListVisible"
- >
- <allListPrint :paramsObj="paramsObj"></allListPrint>
- </el-dialog>
-
- <el-dialog
- class="centerDialog"
- width="1200px"
- title="打印"
- :visible.sync="statementVisible9504"
- >
- <!--<statementPrint ref="print" :paramsObj='orderObj'></statementPrint>-->
- <!--<new-statement-print ref="print" :paramsObj='orderObj9504'></new-statement-print>-->
- <new-statement-print-two
- ref="print"
- :paramsObj="orderObj9504"
- ></new-statement-print-two>
- </el-dialog>
-
- <el-dialog
- class="centerDialog"
- width="1200px"
- title="打印"
- :visible.sync="invoiceVisible"
- destroy-on-close
- >
- <invoicePrint ref="print" :invoiceParams="invoiceParams"></invoicePrint>
- </el-dialog>
-
- <el-dialog
- class="centerDialog"
- width="1200px"
- title="打印"
- :visible.sync="shouJuVisible"
- >
- <!-- <invoicePrint ref="print" :invoiceParams='invoiceParams'></invoicePrint>-->
- <!-- <shou-ju-print></shou-ju-print>-->
- <shou-ju-print
- ref="shouJuPrint"
- :invoiceParams="invoiceParams"
- ></shou-ju-print>
- </el-dialog>
- <!-- <el-dialog
- class="centerDialog"
- width="1200px"
- title="打印"
- :visible.sync="settlementVisible">
- <settlement-print ref="print" :paramsObj='orderObj'></settlement-print>
- </el-dialog> -->
- </div>
- </template>
-
-
- <script>
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import {
- getDoctorList,
- getExportConsumeDetailList,
- getHisOrderList,
- HopitalunRefund,
- Refund,
- Outhopitaluncheck,
- Inthopitaluncheck,
- } from "@/api/his/his";
- import { uParseTime } from "@/utils/tools";
- import NewStatementPrint from "./newStatementPrint";
- import listPrint from "./listPrint";
- import allListPrint from "./allListPrint";
- import NewStatementPrintTwo from "./newStatementPrintTwo";
- import { fetchAllAdminUsers } from "@/api/doctor";
- import axios from "axios";
- import invoicePrint from "./invoicePrint";
- import statementPrint from "./statementPrint";
- import ShouJuPrint from "./shouJuPrint";
-
- // import settlementPrint from './settlementPrint'
-
- export default {
- components: {
- ShouJuPrint,
- NewStatementPrintTwo,
- NewStatementPrint,
- BreadCrumb,
- listPrint,
- allListPrint,
- statementPrint,
- invoicePrint,
- // settlementPrint
- },
- data() {
- return {
- loading1: true,
- orderObj: {},
- statementVisible: false,
- statementVisible9504: false,
- orderObj9504: {},
- crumbs: [
- { path: false, name: "住院收费" },
- { path: false, name: "项目消费明细汇总" },
- ],
- tableData: [],
- limit: 10,
- page: 1,
- keywords: "",
- start_time: "",
- end_time: "",
- total: "",
- doctors: [],
- admin_user_id: "",
- listVisible: false,
- allListVisible: false,
- adminUserOptions: [],
- invoiceVisible: false,
- paramsObj: {},
- invoiceParams: {},
- settlementVisible: false,
- sort_type: 1,
- p_type: 1,
- charge_type: 0,
- sort_types: [
- { value: 1, label: "处方时间" },
- { value: 2, label: "结算时间" },
- ],
- p_types: [
- { value: 0, label: "全部" },
- { value: 1, label: "住院" },
- { value: 2, label: "门诊" },
- ],
- charge_types: [
- { value: 0, label: "全部" },
- { value: 1, label: "医保" },
- { value: 2, label: "自费" },
- ],
- shouJuVisible: false,
- };
- },
-
- //判断列表页是否刷新
- beforeRouteEnter(to, from, next) {
- console.log(from, "beforeRouteEnter");
- if (from.path == "/outpatientCharges/summaryDetail") {
- next((vm) => {
- vm.page = vm.$store.getters.pagedata.list.page;
- vm.limit = vm.$store.getters.pagedata.list.limit;
- vm.keywords = vm.$store.getters.pagedata.list.keywords;
- vm.start_time = vm.$store.getters.pagedata.list.start_time;
- vm.end_time = vm.$store.getters.pagedata.list.end_time;
- vm.admin_user_id = vm.$store.getters.pagedata.list.admin_user_id;
- vm.p_type = vm.$store.getters.pagedata.list.p_type;
- vm.sort_type = vm.$store.getters.pagedata.list.sort_type;
- setTimeout(() => {
- vm.getHisOrderList();
- }, 300);
- });
- } else {
- next();
- }
- },
-
- beforeRouteLeave(to, from, next) {
- if (to.path == "/outpatientCharges/summaryDetail") {
- console.log(to.path, "路由跳转判断");
- this.setStorage();
- next();
- } else {
- next();
- }
- },
-
- methods: {
- confirmUploadInfo(row){
- var that = this;
- axios
- .get("http://127.0.0.1:9532/api/4102", {
- params: {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- stas_type: 1
- },
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {
- })
- .catch(() => {
- });
- } else {
- that.$message.success("确认成功");
- row.result.id = response.data.data.result.id;
- }
- }
- })
- .catch(function (error) {
- });
-
-
- },
- cancelUploadTwo(row){
- if(this.$store.getters.xt_user.org_id == 10265){
- var that = this;
- axios
- .get("http://127.0.0.1:9532/api/4102", {
- params: {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- stas_type: 0
- },
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {
- })
- .catch(() => {
- });
- } else {
- that.$message.success("撤销成功");
- row.result.id = 0;
- }
- }
- })
- .catch(function (error) {
- });
- }
- },
- queryData(row){
- var that = this;
- axios
- .get("http://127.0.0.1:9532/api/4103", {
- params: {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- },
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {
- })
- .catch(() => {
- });
- } else {
- that
- .$confirm(response.data.data.msg, "医保信息", {
- confirmButtonText: "确 定",
- })
- .then(() => {
- })
- .catch(() => {
- });
- }
- }
- })
- .catch(function (error) {
- });
-
-
- },
-
- setStorage() {
- this.$store.commit("SET_PAGEDATA", {
- page: this.page,
- limit: this.limit,
- keywords: this.keywords,
- start_time: this.start_time,
- end_time: this.end_time,
- type: this.admin_user_id || "",
- p_type: this.p_type,
- sort_type: this.sort_type,
- });
- },
-
- uploadOtherInfo(row) {
- var that = this;
- axios
- .get("http://127.0.0.1:9532/api/settlelist/get", {
- params: {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- },
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.$message.success("上传成功");
- row.result.id = response.data.data.result.id;
- }
- }
- })
- .catch(function (error) {});
- },
- changeChargeType() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- changePType() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- changeSortType() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- refundOne(row) {
- if (row.his_hospital_patient.balance_accounts_type == 2) {
- var that = this;
- this.$confirm("是否撤销出院", "撤销出院", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- id: row.his_hospital_patient.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
-
- Outhopitaluncheck(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$message.success("撤销出院成功");
- this.changeRadioAndPatient(1);
- }
- });
- })
- .catch(() => {});
- } else {
- var that = this;
- this.$confirm("是否撤销出院", "撤销出院", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- id: row.his_hospital_patient.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- axios
- .get("http://127.0.0.1:9532/zh/api/outhopitaluncheck/get", {
- params: params,
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.$message({
- message: "撤销出院成功",
- type: "success",
- duration: 5000,
- });
- }
- }
- })
- .catch(function (error) {});
- })
- .catch(() => {});
- }
- },
- refundThee(row) {
- if (row.his_hospital_patient.balance_accounts_type == 2) {
- this.$confirm("是否撤销入院", "撤销入院", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- id: row.his_hospital_patient.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- Inthopitaluncheck(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$message.success("撤销入院成功");
- }
- });
- })
- .catch(() => {});
- } else {
- var that = this;
- this.$confirm("是否撤销入院", "撤销入院", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- id: row.his_hospital_patient.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- axios
- .get("http://127.0.0.1:9532/zh/api/inthopitaluncheck/get", {
- params: params,
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.changeRadioAndPatient(1);
-
- that.$message({
- message: "撤销入院成功",
- type: "success",
- duration: 5000,
- });
- }
- }
- })
- .catch(function (error) {});
- })
- .catch(() => {});
- }
- },
- refundTwo(row) {
- var that = this;
- this.$confirm("是否撤销明细", "撤销明细", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- axios
- .get("http://127.0.0.1:9532/zh/api/refunddetail", {
- params: params,
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- that.loadingtwo = false;
- return false;
- } else {
- if (response.data.data.failed_csuode == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.$message.success("撤销明细成功");
-
- that.changeRadioAndPatient(1);
- }
- }
- })
- .catch(function (error) {});
- })
- .catch(() => {});
- },
- uploadInfo(row) {
- var that = this;
- axios
- .get("http://127.0.0.1:9532/api/settlelisthosptial/get", {
- params: {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- },
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- // that.$message.error(response.data.data.msg)
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.$message.success("上传成功");
- row.result.id = response.data.data.result.id;
- }
- }
- })
- .catch(function (error) {});
- },
- fetchAllAdminUsers() {
- fetchAllAdminUsers().then((response) => {
- if (response.data.state == 1) {
- this.adminUserOptions = response.data.data.users;
- }
- });
- },
- getName(admin_user_id) {
- for (let i = 0; i < this.adminUserOptions.length; i++) {
- if (this.adminUserOptions[i].id == admin_user_id) {
- return this.adminUserOptions[i].name;
- }
- }
- },
- toRefund(row) {
- console.log("~~~~~~~");
- if (row.his_hospital_patient.balance_accounts_type != 2) {
- var that = this;
- this.$confirm("是否退费", "退费", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- order_id: row.id,
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- axios
- .get("http://127.0.0.1:9532/zh/api/refund", {
- params: params,
- })
- .then(function (response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.failed_code == -10) {
- that
- .$confirm(response.data.data.msg, "医保错误信息", {
- confirmButtonText: "确 定",
- type: "warning",
- })
- .then(() => {})
- .catch(() => {});
- } else {
- that.$message({
- message: "退费成功",
- type: "success",
- duration: 5000,
- });
- that.getHisOrderList();
- }
- }
- })
- .catch(function (error) {});
- })
- .catch(() => {});
- } else {
- this.$confirm("是否退费", "退费", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- })
- .then(() => {
- let params = {
- order_id: row.id,
- };
- HopitalunRefund(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$message({ message: "退费成功", type: "success" });
- this.getHisOrderList();
- }
- });
- })
- .catch(() => {});
- }
- },
- toPrint(row) {
- console.log(row);
- if (
- this.$store.getters.xt_user.org_id == 9504 ||
- this.$store.getters.xt_user.org_id == 10028 ||
- (row.order_status == 2 &&
- this.$store.getters.xt_user.org_id == 10138) ||
- (row.order_status == 2 && this.$store.getters.xt_user.org_id == 10278)
- ) {
- this.statementVisible9504 = true;
- let obj = {
- order_id: row.id,
- patient_id: row.patient_id,
- record_time: this.getTimes(row.settle_accounts_date),
- admin_user_id: this.$store.getters.xt_user.user.id,
- };
- this.orderObj9504 = obj;
- } else {
- this.statementVisible = true;
- let obj = {
- order_id: row.id,
- balance_accounts_type: row.his_hospital_patient.balance_accounts_type,
- start_time: row.settle_start_time,
- end_time: row.settle_end_time,
- };
- console.log(obj);
- this.orderObj = obj;
- console.log(this.orderObj);
- }
- },
- settlementPrint() {
- this.settlementVisible = true;
- },
- export_detail() {
- let params = {
- start_time: this.start_time,
- end_time: this.end_time,
- p_type: this.p_type,
- };
- getExportConsumeDetailList(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- let list = [];
- for (let i = 0; i < response.data.data.order.length; i++) {
- let order = response.data.data.order[i];
- let number = "";
- let name = "";
- let department = "";
- let doctor_name = "";
- let balance_accounts = "";
- let charge_name = "";
- let order_status = "";
-
- if (
- order.his_hospital_patient != null &&
- order.his_hospital_patient.number.length > 0
- ) {
- number = order.his_hospital_patient.number;
- }
-
- if (order.his_patient != null) {
- if (order.his_patient.balance_accounts_type == 1) {
- balance_accounts = "自费";
- }
-
- if (order.his_patient.balance_accounts_type == 2) {
- balance_accounts = "医保";
- }
- }
-
- if (order.patient != null && order.patient.name.length > 0) {
- name = order.patient.name;
- }
-
- if (
- order.p_info != null &&
- order.p_info.department != null &&
- order.p_info.department.name.length > 0
- ) {
- department = order.p_info.department.name;
- }
-
- if (order.p_info != null && order.p_info.doctor.length > 0) {
- doctor_name = order.p_info.doctor;
- }
-
- if (order.creator != null) {
- charge_name = this.getName(order.creator);
- }
-
- if (order.order_status == 1) {
- order_status = "待结算";
- }
-
- if (order.order_status == 2) {
- order_status = "已结算";
- }
-
- if (order.order_status == 3) {
- order_status = "已退费";
- }
-
- let obj = {
- 单号: order.number,
- 人员编号: order.his_hospital_patient.psn_no,
- 保地医保区: order.his_hospital_patient.insuplc_admdvs,
- 身份证号: order.patient.id_card_no,
- 患者姓名: name,
- 险种: order.insutype,
- 医疗类别: order.med_type,
- 就诊id: number,
- 登记日期: order.his_hospital_patient.in_hosptial_time,
- 出院日期: order.his_hospital_patient.out_hosptial_time,
- 结算id: order.setl_id,
- 结算日期: order.setl_time,
- 医疗费总额: order.medfee_sumamt,
- 全自费金额: order.fulamt_ownpay_amt,
- 超限价自费金额: order.overlmt_self_pay,
- 先行自付金额: order.preselfpay_amt,
- 符合政策范围金额: order.inscp_scp_amt,
- 实际支付起付线: order.act_pay_dedc,
- 基本医疗保险统筹基金支出: order.hifp_pay,
- 基本医疗保险统筹基金支付比例: order.pool_prop_selfpay,
- 公务员医疗补助基金支出: order.cvlserv_pay,
- 企业补充医疗保险基金支出: order.hifes_pay,
- 居民大病保险基金支出: order.hifmi_pay,
- 职工大额医疗费用补助基金支出: order.hifob_pay,
- 医疗救助基金支出: order.maf_pay,
- 其他支出: order.oth_pay,
- 基金支付总额: order.fund_pay_sumamt,
- 个人负担总金额: order.psn_part_amt,
- 个人账户支付金额: order.acct_pay,
- 个人现金支出: order.psn_cash_pay,
- 医院总负担金额: order.hosp_part_amt,
- 余额: order.balc,
- 个账共济支付金额: order.acct_mulaid_pay,
- };
- list.push(obj);
- }
- import("@/vendor/Export2Excel").then((excel) => {
- const tHeader = [
- "单号",
- "人员编号",
- "保地医保区",
- "身份证号",
- "患者姓名",
- "险种",
- "医疗类别",
- "就诊id",
- "登记日期",
- "出院日期",
- "结算id",
- "结算日期",
- "医疗费总额",
- "全自费金额",
- "超限价自费金额",
- "先行自付金额",
- "符合政策范围金额",
- "实际支付起付线",
- "基本医疗保险统筹基金支出",
- "基本医疗保险统筹基金支付比例",
- "公务员医疗补助基金支出",
- "企业补充医疗保险基金支出",
- "居民大病保险基金支出",
- "职工大额医疗费用补助基金支出",
- "医疗救助基金支出",
- "其他支出",
- "基金支付总额",
- "个人负担总金额",
- "个人账户支付金额",
- "个人现金支出",
- "医院总负担金额",
- "余额",
- "个账共济支付金额",
- ];
- const filterVal = [
- "单号",
- "人员编号",
- "保地医保区",
- "身份证号",
- "患者姓名",
- "险种",
- "医疗类别",
- "就诊id",
- "登记日期",
- "出院日期",
- "结算id",
- "结算日期",
- "医疗费总额",
- "全自费金额",
- "超限价自费金额",
- "先行自付金额",
- "符合政策范围金额",
- "实际支付起付线",
- "基本医疗保险统筹基金支出",
- "基本医疗保险统筹基金支付比例",
- "公务员医疗补助基金支出",
- "企业补充医疗保险基金支出",
- "居民大病保险基金支出",
- "职工大额医疗费用补助基金支出",
- "医疗救助基金支出",
- "其他支出",
- "基金支付总额",
- "个人负担总金额",
- "个人账户支付金额",
- "个人现金支出",
- "医院总负担金额",
- "余额",
- "个账共济支付金额",
- ];
- const data = this.formatJson(filterVal, list);
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: "消费明细",
- });
- });
- }
- });
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map((v) => filterVal.map((j) => v[j]));
- },
- changeDoctor() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- handleSizeChange(limit) {
- this.limit = limit;
- this.getHisOrderList();
- },
- handleCurrentChange(page) {
- this.page = page;
- this.getHisOrderList();
- },
- handleStartTimeChange() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- handleEndTimeChange() {
- this.page = 1;
- this.keywords = "";
- this.getHisOrderList();
- },
- searchAction() {
- this.page = 1;
- this.getHisOrderList();
- },
- getTimes(time) {
- return uParseTime(time, "{y}-{m}-{d}");
- },
- toDetail(row) {
- this.$router.push(
- "/outpatientCharges/summaryDetail?patient_id=" +
- row.patient.id +
- "&number=" +
- row.number +
- "&id=" +
- row.id
- );
- },
- getTime(value, temp) {
- if (value != undefined) {
- return uParseTime(value, temp);
- }
- return "";
- },
- getHisOrderList() {
- let params = {
- page: this.page,
- limit: this.limit,
- keywords: this.keywords,
- start_time: this.start_time,
- end_time: this.end_time,
- type: this.admin_user_id,
- p_type: this.p_type,
- sort_type: this.sort_type,
- charge_type: this.charge_type,
- };
- console.log(params, "参数");
- getHisOrderList(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.tableData = response.data.data.order;
- this.total = response.data.data.total;
- }
- });
- },
- getDoctorList() {
- getDoctorList().then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.doctors = response.data.data.doctors;
- }
- });
- },
- open(index) {
- if (index == 1) {
- this.listVisible = true;
- } else if (index == 2) {
- this.allListVisible = true;
- }
- },
- invoicePrint(obj) {
- let paramsObj = {
- order_id: obj.id,
- patient_id: obj.patient_id,
- name: obj.patient.name,
- age: obj.age,
- gend: obj.gend,
- setl_time: obj.setl_time,
- };
- this.invoiceParams = paramsObj;
-
- const loading = this.$loading({
- lock: true,
- text: '正在加载中...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- setTimeout(() => {
- this.invoiceVisible = true;
- loading.close();
- }, 1000);
- },
- shouJuPrint(obj) {
- let paramsObj = {
- order_id: obj.id,
- patient_id: obj.patient_id,
- name: obj.patient.name,
- age: obj.age,
- gend: obj.gend,
- setl_time: obj.setl_time,
- };
- this.invoiceParams = paramsObj;
- this.shouJuVisible = true;
- },
- },
- created() {
- this.fetchAllAdminUsers();
- this.getDoctorList();
- this.getHisOrderList();
- },
- };
- </script>
|