1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363 |
- <template>
- <!--药品发药页面-->
- <div class="main-contain new-main-contain">
- <div class="position">
- <!-- <bread-crumb :crumbs='crumbs'></bread-crumb>-->
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div
- class="app-container"
- style="display: flex; flex: 1; padding: 10px 20px 0px 20px"
- >
- <div class="mainLeft">
- <div>
- <div class="list">
- <el-date-picker
- style="width: 300px"
- v-model="start_time"
- type="date"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"
- @change="changeTimes()"
- >
- </el-date-picker>
- </div>
-
- <div class="list">
- <el-radio-group v-model="state" @change="lala()">
- <el-radio :label="1">待发药</el-radio>
- <el-radio :label="2">已发药</el-radio>
- </el-radio-group>
- </div>
- <div class="list">
- <el-input
- size="small"
- style="width: 239px"
- v-model="keywords"
- class="filter-item"
- placeholder="请输入药品名称"
- />
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- @click="searchAction"
- >搜索
- </el-button>
- </div>
-
- <el-table
- v-if="state == 1"
- height="60vh"
- :data="waiting_drug"
- border
- style="width: 100%"
- highlight-current-row
- ref="table01"
- @current-change="handleCurrentChange"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266',
- }"
- >
- <el-table-column prop="name" label="名称" width="100">
- <template slot-scope="scope">
- {{ scope.row.name }}
- </template>
- </el-table-column>
- <el-table-column prop="specifications" label="规格" width="100">
- <template slot-scope="scope">
- {{ scope.row.specifications }}
- </template>
- </el-table-column>
- <el-table-column prop="stock" label="库存" width="100">
- <template slot-scope="scope">
- {{ scope.row.stock }}
- </template>
- </el-table-column>
- </el-table>
-
- <el-table
- v-if="state == 2"
- :height="tableHeight"
- :data="issued_drug"
- border
- style="width: 100%"
- highlight-current-row
- @current-change="handleCurrentChange"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266',
- }"
- ref="table02"
- >
- <el-table-column prop="name" label="名称" width="100">
- <template slot-scope="scope">
- {{ scope.row.name }}
- </template>
- </el-table-column>
- <el-table-column prop="specifications" label="规格" width="100">
- <template slot-scope="scope">
- {{ scope.row.specifications }}
- </template>
- </el-table-column>
- <el-table-column prop="stock" label="库存" width="100">
- <template slot-scope="scope">
- {{ scope.row.stock }}
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="mainRight">
- <div class="titlelist">
- <div>
- 班次:
- <el-select
- v-model="shift"
- placeholder="请选择"
- @change="getdrugsdetails"
- >
- <el-option
- v-for="item in banshift"
- :key="item.value"
- :label="item.text"
- :value="item.value"
- >
- </el-option>
- </el-select>
- 分区:
- <el-select
- v-model="partition"
- placeholder="请选择"
- @change="getdrugsdetails"
- >
- <el-option
- v-for="item in fen"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- 给药途径:
- <el-select
- v-model="deliveryway"
- placeholder="请选择"
- @change="getdruglist02"
- >
- <el-option
- v-for="item in routeofadministration"
- :key="item.name"
- :label="item.name"
- :value="item.name"
- >
- </el-option>
- </el-select>
- </div>
- <div>
- <el-button type="primary" @click="toExport" v-if="state == 2"
- >导出</el-button
- >
- <!-- <el-button type="primary" @click="tt">调试</el-button>-->
- <el-button type="primary" @click="dispense" v-if="state == 1"
- >发药</el-button
- >
- <el-button type="primary" @click="toPrint">打印</el-button>
- <!-- <el-button @click="tt">调试</el-button>-->
- </div>
- </div>
-
- <el-divider></el-divider>
- <div class="right_table">
- <el-table
- ref="table_01"
- :height="tableHeight"
- :data="tableData"
- :summary-method="getSummaries_t1"
- show-summary
- border
- highlight-current-row
- style="width: 100%"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266',
- }"
- @selection-change="handleSelectionChange"
- v-if="state == 1"
- >
- <el-table-column type="selection" width="55" align="center">
- </el-table-column>
- <el-table-column
- type="index"
- label="序号"
- width="50"
- align="center"
- >
- </el-table-column>
- <el-table-column
- prop="name"
- label="患者名称"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.name }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="单次用量"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.single_dosage }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="用法"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.usage }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="频率"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.frequency }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="天数"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.days }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="总量"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.total }}
- </template>
- </el-table-column>
- <el-table-column label="药品追溯码" width="162" align="center">
- <template slot-scope="scope">
- <div @click="getDrugCode(scope.row.ID,scope.row.data_sources,scope.row.DrugCode,scope.$index)"><el-input style="width: 100;" v-model="scope.row.DrugCode"></el-input></div>
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="数据来源"
- width="102"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.data_sources }}
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="right_table">
- <el-table
- ref="table_01"
- :height="tableHeight"
- :data="tableData"
- :summary-method="getSummaries_t2"
- show-summary
- border
- highlight-current-row
- style="width: 100%"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266',
- }"
- @selection-change="handleSelectionChange"
- v-if="state == 2"
- >
- <!-- <el-table-column type="selection" width="55"> </el-table-column>-->
- <el-table-column
- type="index"
- label="序号"
- width="120"
- align="center"
- >
- </el-table-column>
- <el-table-column
- prop="name"
- label="患者名称"
- width="180"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.name }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="单次用量"
- width="170"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.single_dosage }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="用法"
- width="160"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.usage }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="频率"
- width="160"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.frequency }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="天数"
- width="160"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.days }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="总量"
- width="160"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.total }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="数据来源"
- width="162"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.data_sources }}
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- label="领药人"
- width="160"
- align="center"
- >
- <template slot-scope="scope">
- {{ scope.row.people }}
- </template>
- </el-table-column>
- </el-table>
- </div>
-
- <!-- <div style="background-color: #f5f7fa;display:flex;padding: 10px;justify-content:space-around;position:absolute;width:75.6%;margin-top: 27.5%;
- "><div style="width: 40%;padding-left:3%">合计 </div> <div style="width: 40%;display: flex;justify-content:center;padding-left: 37%">{{total}}</div></div> -->
- <div style="margin-top: 25px; display: flex" v-if="state == 1">
- <span style="line-height: 36px">领药人:</span>
- <el-select v-model="admin_user_id" placeholder="请选择">
- <el-option
- v-for="item in doctorList"
- :key="item.admin_user_id"
- :label="item.user_name"
- :value="item.admin_user_id"
- >
- </el-option>
- </el-select>
-
- <span
- style="display: inline-block;padding-left: 30px;line-height: 36px;}"
- >选中: {{ select_total }}</span
- >
- </div>
- </div>
-
- <el-dialog title="设置" :visible.sync="dialogVisible" width="30%">
- <span style="font-size: 17px">请选择药品是否要通过药房管理出库</span>
- <span style="display: block; padding: 18px 25px">
- <el-radio v-model="is_open" label="1">是</el-radio>
- <el-radio v-model="is_open" label="2">否</el-radio>
- </span>
- <div
- style="
- height: 50px;
- background: #c7ebfc;
- border-radius: 5px;
- padding: 7px;
- "
- >
- <i class="el-icon-info" style="color: #3399ff; font-size: 17px"></i>
- 若选择为是,则通过药房发药的药品都会在发药之后进行出库,否则按原来的方式进行出库管理
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="SaveSetting">保 存</el-button>
- </span>
- </el-dialog>
-
- <el-dialog
- title="药品追溯码"
- :visible.sync="dialogVisibleOne"
- width="40%">
- <span>
- <el-input
- @keyup.native="changeText"
- type="textarea"
- placeholder="请输入内容"
- v-model="textarea"
- :rows="10"
- >
- </el-input>
- </span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisibleOne = false">取 消</el-button>
- <el-button type="primary" @click="saveTextArea()">确 定</el-button>
- </span>
- </el-dialog>
- </div>
-
- <drug-print
- ref="drugprint"
- :visibility="isVisibility"
- :propsTable="propsTable"
- :state="state"
- >
- </drug-print>
- </div>
- </template>
-
- <script>
- import drugPrint from "./print/drugPrint.vue";
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import {
- getTodayAdviceList,
- getPharmacyBaseDrug,
- updatePharmacyBaseDrug,
- SaveSetting,
- getPharmacyConfig,
- getUserdDrugList,
- } from "@/api/his/advice";
- import {
- dispensemedicine,
- waitingmedicine,
- getpatientswithdrugs,
- medicinedeparture,
- getcurrentname,
- getpartitionlist,
- routeofadministration,
- changeDrugCode
- } from "@/api/pharmacy";
- const moment = require("moment");
- export default {
- components: {
- BreadCrumb,
- drugPrint,
- },
- data() {
- return {
- crumbs: [
- { path: false, name: "药房管理" },
- { path: "/Pharmacy/DrugDispensing", name: "药品发药" },
- ],
- tableHeight: 490,
- datepick: "",
- state: 1,
- waitmount: 0,
- alreadmount: 0,
- tableData: [],
- tableData_list: [],
- tableList: [],
- multipleSelection: [],
- start_time: moment(new Date()).add("year", 0).format("YYYY-MM-DD"),
- patientList: [],
- keywords: "",
- dialogVisible: false,
- is_open: "2",
- isVisibility: "",
- propsTable: "",
- doctorList: [],
- admin_user_id:0,
- waiting_drug: [], //待发药列表
- issued_drug: [], //已发药列表
- currentRow: null,
- tmp: 0,
- banshift: [
- { value: 0, text: "全部班" },
- { value: 1, text: "上午" },
- { value: 2, text: "下午" },
- { value: 3, text: "晚上" },
- ],
- shift: 0, //班次
- fen: [],
- partition: 0, //分区
- routeofadministration: [],
- deliveryway: "全部", //给药途径
- total: "", //合计
- select_total: "",
- dialogVisibleOne:false,
- textarea:"",
- id:0,
- is_source:0,
- drug_code:0,
- currentRow:{},
- currentIndex:0,
- };
- },
-
- methods: {
- getDrugCode(id,DataSources,DrugCode,index){
- this.id = id
- var is_source =0
- if (DataSources == "his处方"){
- is_source = 1
- }
- if (DataSources == "临时医嘱"){
- is_source = 2
- }
- this.is_source = is_source
- this.textarea = DrugCode
- this.currentIndex = index
- this.dialogVisibleOne = true
-
- },
- saveTextArea(){
-
- var params = {
- id:this.id,
- data_source:this.is_source,
- drug_code:this.textarea,
- }
- console.log("paramss",params)
-
- changeDrugCode(params).then(response=>{
- if(response.data.state == 1){
- this.$message.success("保存成功!")
- for(let i=0;i<this.tableData.length;i++){
- if(this.currentIndex == i){
- this.tableData[i].DrugCode = this.textarea
- }
- }
- this.dialogVisibleOne = false
- }
- })
- },
- changeText(event){
- // 检查是否为特定的按键,例如回车键,来确认扫码枪输入完成
- if (event.key === 'Enter') {
- var textarea = ""
- textarea += this.textarea + ","
- this.textarea = textarea
- }
- },
- tt() {},
- async fun3() {
- this.fun1().then((val) => {
- this.fun2();
- });
- },
- async fun4(tps) {
- this.fun1().then((val) => {
- for (let i = 0; i < this.issued_drug.length; i++) {
- if (tps == this.issued_drug[i].id) {
- this.$refs.table02.setCurrentRow(this.issued_drug[i]);
- this.handleCurrentChange(this.issued_drug[i]);
- }
- }
- });
- },
- async fun5(tps) {
- console.log("fun3", tps);
- this.fun1().then((val) => {
- for (let i = 0; i < this.waiting_drug.length; i++) {
- if (tps == this.waiting_drug[i].id) {
- this.$refs.table01.setCurrentRow(this.waiting_drug[i]);
- this.handleCurrentChange(this.waiting_drug[i]);
- }
- }
- });
- },
-
- // 单位去重
- unique_unit(arr) {
- return arr.filter(function (item, index, arr) {
- //当前元素,在原始数组中的第一个索引==当前索引值,否则返回当前元素
- return arr.indexOf(item, 0) === index;
- });
- },
- // 获取单位
- getDose_unit(val) {
- // console.log(val);
- var newLength = 0;
- var singleChar = "";
- var newStr = "";
- var chineseRegex = /[^\x00-\xff]/g;
- let strLength = val.replace(chineseRegex, "**").length;
- // console.log(strLength, "strLength");
- for (var i = 0; i < strLength; i++) {
- singleChar = val.charAt(i).toString();
- // console.log(singleChar,'singleChar')
- // console.log(singleChar.match(chineseRegex),'')
- if (singleChar.match(chineseRegex) != null) {
- newLength += 2;
- newStr += singleChar;
- } else {
- newLength++;
- }
- if (newLength > strLength) {
- break;
- }
- // newStr += singleChar;
- }
-
- // if (hasDot && strLength > len) {
- // newStr += "...";
- // }
- // console.log(newStr,'newStr')
- return newStr;
- },
-
- getSummaries_t1(param) {
- const { columns, data } = param;
- const sums = [];
- let dose_unit = [];
- let unit_1 = [];
- let unit_2 = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- }
- if (index === 7) {
- // 单位裁切
- data.forEach((el, index) => {
- dose_unit.push(this.getDose_unit(el.total));
- });
-
- dose_unit = this.unique_unit(dose_unit);
- console.log(dose_unit,'dose_unit')
- // // 数据合计
- data.forEach((el, index) => {
- if (this.getDose_unit(el.total) === dose_unit[0]) {
- unit_1.push(parseInt(el.total));
- }
- if (this.getDose_unit(el.total) === dose_unit[1]) {
- unit_2.push(parseInt(el.total));
- }
- });
- unit_1 = eval(unit_1.join("+"));
- unit_2 = eval(unit_2.join("+"));
-
- if (dose_unit[0] == undefined) {
- sums[index] = "";
- } else if (dose_unit[1] == undefined || unit_2 == undefined) {
- sums[index] = `${unit_1}${dose_unit[0]}`;
- } else {
- sums[index] = `${unit_1}${dose_unit[0]}+${unit_2}${dose_unit[1]}`;
- }
- return;
- }
- });
-
- return sums;
- },
-
- getSummaries_t2(param) {
- const { columns, data } = param;
- const sums = [];
- let dose_unit = [];
- let unit_1 = [];
- let unit_2 = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- }
- if (index === 6) {
- // 单位裁切
- data.forEach((el, index) => {
- dose_unit.push(this.getDose_unit(el.total));
- });
- dose_unit = this.unique_unit(dose_unit);
- // 数据合计
- data.forEach((el, index) => {
- if (this.getDose_unit(el.total) === dose_unit[0]) {
- unit_1.push(parseInt(el.total));
- }
- if (this.getDose_unit(el.total) === dose_unit[1]) {
- unit_1.push(parseInt(el.total));
- }
- });
- unit_1 = eval(unit_1.join("+"));
- unit_2 = eval(unit_2.join("+"));
-
- // sums[index] = unit_1+dose_unit[0]+ "+" +unit_2+dose_unit[1];
- if (dose_unit[0] == undefined) {
- sums[index] = "";
- } else if (dose_unit[1] == undefined || unit_2 == undefined) {
- sums[index] = `${unit_1}${dose_unit[0]}`;
- } else {
- sums[index] = `${unit_1}${dose_unit[0]}+${unit_2}${dose_unit[1]}`;
- }
- return;
- }
- });
- return sums;
- },
-
- changeTimes() {
- // alert("aa")
- // this.getdruglist();
- this.fun3();
- },
- //初始化
- init() {
- this.state = 1;
- this.tableData = null;
- this.currentRow = null;
- },
- lala() {
- this.currentRow = null;
- this.tableData = null;
- this.selectedbydefault();
- },
- searchAction() {
- // this.getlist();
- this.tableData = null;
- this.currentRow = null;
- this.getdruglist();
- },
- // 跳转打印页面
- toPrint() {
- if (this.state == 1 && this.multipleSelection.length == 0) {
- this.$message.error("未选择任何数据");
- return;
- }
- if (this.state == 2 && this.tableData == null) {
- this.$message.error("未选择任何数据");
- return;
- }
- this.$refs.drugprint.show(
- this.tableData,
- this.currentRow,
- this.state,
- this.multipleSelection,
- this.start_time
- );
- },
- toExport() {
- if (this.state == 1 && this.multipleSelection.length == 0) {
- this.$message.error("未选择任何数据");
- return;
- }
- if (this.state == 2 && this.tableData == null) {
- this.$message.error("未选择任何数据");
- return;
- }
- // for (let i = 0; i < this.tableData.length; i++) {
- // this.tableData[i].index = i + 1;
- // this.tableData[i].name = this.tableData[i].dose + this.tableData[i].dose_unit + "*" + this.tableData[i].min_number + this.tableData[i].min_unit +
- // "/" +
- // this.tableData[i].max_unit;
- //
- // this.tableData[i].total_price = (
- // this.tableData[i].warehousing_count * this.exportList[i].price
- // ).toFixed(2);
- // for (let j = 0; j < this.manufacturerList.length; j++) {
- // if (this.exportList[i].manufacturer == this.manufacturerList[j].id) {
- // this.exportList[i].manufacturer =
- // this.manufacturerList[j].manufacturer_name;
- // }
- // if (this.exportList[i].manufacturer == 0) {
- // this.exportList[i].manufacturer = "";
- // }
- // }
- //
- // for (let z = 0; z < this.dealerList.length; z++) {
- // if (this.exportList[i].dealer == this.dealerList[z].id) {
- // this.exportList[i].dealer = this.dealerList[z].dealer_name;
- // }
- // if (this.exportList[i].dealer == 0) {
- // this.exportList[i].dealer = "";
- // }
- // }
- // }
-
- if (this.state == 1) {
- import("@/vendor/Export2Excel").then((excel) => {
- for (let i = 0; i < this.multipleSelection.length; i++) {
- this.multipleSelection[i].index = i + 1;
- this.multipleSelection[i].time = this.start_time;
- this.multipleSelection[i].yname = this.currentRow.name;
- }
-
- const tHeader = [
- "序号",
- "时间",
- "患者名称",
- "药品名称",
- "单次用量",
- "用法",
- "频率",
- "天数",
- "总量",
- "数据来源",
- ];
- const filterVal = [
- "index",
- "time",
- "name",
- "yname",
- "single_dosage",
- "usage",
- "frequency",
- "days",
- "total",
- "data_sources",
- ];
-
- const data = this.formatJson(filterVal, this.multipleSelection);
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: "发药单详情",
- });
- this.downloadLoading = false;
- });
- } else if (this.state == 2) {
- import("@/vendor/Export2Excel").then((excel) => {
- for (let i = 0; i < this.tableData.length; i++) {
- this.tableData[i].index = i + 1;
- this.tableData[i].time = this.start_time;
- this.tableData[i].yname = this.currentRow.name;
- }
-
- const tHeader = [
- "序号",
- "日期",
- "患者名称",
- "药品名称",
- "单次用量",
- "用法",
- "频率",
- "天数",
- "总量",
- "数据来源",
- "领药人",
- ];
- const filterVal = [
- "index",
- "time",
- "name",
- "yname",
- "single_dosage",
- "usage",
- "frequency",
- "days",
- "total",
- "data_sources",
- "people",
- ];
-
- const data = this.formatJson(filterVal, this.tableData);
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: "发药单详情",
- });
- this.downloadLoading = false;
- });
- } else {
- this.$message.error("药品状态异常");
- return;
- }
- // import("@/vendor/Export2Excel").then((excel) => {
- // // for (let i = 0; i < this.tableData.length; i++) {
- // // for (let j = 0; j < this.drugTypeList.length; j++) {
- // // if (this.exportList[i].drug_type == this.drugTypeList[j].id) {
- // // this.exportList[i].drug_type = this.drugTypeList[j].name;
- // // }
- // // }
- // // }
- //
- // const tHeader = [
- // "序号",
- // "患者名称",
- // "单次用量",
- // "用法",
- // "频率",
- // "天数",
- // "总量",
- // "数据来源",
- // ];
- // const filterVal = [
- // "index",
- // "drug_name",
- // "drug_type",
- // "unit",
- // "batch_number",
- // "warehousing_count",
- // "price",
- // "total_price",
- // ];
- //
- // const data = this.tableData;
- // excel.export_json_to_excel({
- // header: tHeader,
- // data,
- // filename: "药品入库单详情",
- // });
- // this.downloadLoading = false;
- // });
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map((v) => filterVal.map((j) => v[j]));
- },
- //列表选择与合计
- handleSelectionChange(val) {
- this.multipleSelection = val;
- let coculate = val;
- let sums = "";
- let dose_unit = [];
- let unit_1 = [];
- let unit_2 = [];
-
- coculate.forEach((el, index) => {
- // dose_unit.push(el.total.substr(el.total.length - 1, 1));
- dose_unit.push(this.getDose_unit(el.total))
- });
- dose_unit = this.unique_unit(dose_unit);
- // 数据合计
- coculate.forEach((el, index) => {
- if (this.getDose_unit(el.total) === dose_unit[0]) {
- unit_1.push(parseInt(el.total));
- }
- });
-
- coculate.forEach((el, index) => {
- if (this.getDose_unit(el.total) === dose_unit[1]) {
- unit_2.push(parseInt(el.total));
- }
- });
-
- unit_1 = eval(unit_1.join("+"));
- unit_2 = eval(unit_2.join("+"));
-
- if (dose_unit[0] == undefined) {
- sums = "";
- } else if (dose_unit[1] == undefined) {
- sums = `${unit_1}${dose_unit[0]}`;
- } else {
- sums = `${unit_1}${dose_unit[0]}+${unit_2}${dose_unit[1]}`;
- }
- // sums = `${unit_1}${dose_unit[0]}+${unit_2}${dose_unit[1]}`;
- this.select_total = sums;
- },
- //默认选中
- selectedbydefault() {
- if (this.state == 1 && this.waiting_drug.length > 0) {
- this.$refs.table01.setCurrentRow(this.waiting_drug[0]);
- this.handleCurrentChange(this.waiting_drug[0]);
- }
- if (this.state == 2 && this.issued_drug.length > 0) {
- this.$refs.table02.setCurrentRow(this.issued_drug[0]);
- this.handleCurrentChange(this.issued_drug[0]);
- }
- },
- //包装selectedbydefault
- fun2() {
- // return new Promise((resolve, reject) => {
- if (this.state == 1 && this.waiting_drug.length > 0) {
- this.$refs.table01.setCurrentRow(this.waiting_drug[0]);
- this.handleCurrentChange(this.waiting_drug[0]);
- }
- if (this.state == 2 && this.issued_drug.length > 0) {
- this.$refs.table02.setCurrentRow(this.issued_drug[0]);
- this.handleCurrentChange(this.issued_drug[0]);
- }
- // });
- },
- // 药品发药
- dispense() {
- var tps = this.currentRow.id;
- if (this.multipleSelection.length < 1) {
- this.$message.error("未选择任何信息");
- return;
- }
- var tmp = "";
- for (var i = 0; i < this.multipleSelection.length; i++) {
- tmp = tmp + this.multipleSelection[i].id + ",";
- }
- var params = {
- creater: this.admin_user_id,
- ids: tmp,
- };
- this.$confirm("确定是否对该药品进行发药?", "患者发药", {
- confirmButtonText: "确 定",
- cancelButtonText: "取 消",
- type: "warning",
- }).then(() => {
- medicinedeparture(params).then((res) => {
- if (res.data.state == 1) {
- this.$message.success("操作成功");
- this.getdruglist();
- //刷新列表
- this.handleCurrentChange(this.currentRow);
- this.fun4(tps);
- this.state = 2;
- this.multipleSelection = [];
- } else {
- this.$message.error("操作失败:" + res.data.msg);
- //刷新列表
- this.handleCurrentChange(this.currentRow);
- this.fun5(tps);
- this.state = 1;
- }
- });
- });
- },
- //获取药品列表
- getdruglist02() {
- // var tps = this.currentRow.id;
- this.tableData = [];
- var params = {
- keyword: this.keywords,
- time: this.start_time,
- deliveryway: this.deliveryway,
- };
- waitingmedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.waiting_drug = res.data.data.list;
- }
- });
- dispensemedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.issued_drug = res.data.data.list;
- }
- });
- if (this.state == 2) {
- this.handleCurrentChange(this.currentRow);
- // this.fun5(tps);
- } else {
- this.handleCurrentChange(this.currentRow);
- // this.fun4(tps);
- }
- },
- //获取药品列表
- getdruglist() {
- var params = {
- keyword: this.keywords,
- time: this.start_time,
- deliveryway: this.deliveryway,
- };
- waitingmedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.waiting_drug = res.data.data.list;
- }
- });
- dispensemedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.issued_drug = res.data.data.list;
- }
- });
- },
- async fun1() {
- var params = {
- keyword: this.keywords,
- time: this.start_time,
- deliveryway: this.deliveryway,
- };
- await waitingmedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.waiting_drug = res.data.data.list;
- }
- });
- await dispensemedicine(params).then((res) => {
- if (res.data.state == 1) {
- this.issued_drug = res.data.data.list;
- }
- });
- console.log("fun1");
- },
-
- morencreatename() {
- var param = {};
- getcurrentname(param).then((res) => {
- if (res.data.state == 1) {
- this.admin_user_id = res.data.data.list;
- console.log("this.admin_user_id(药)", this.admin_user_id);
- }
- });
- },
- //获取领药人选项
- getlist() {
- var params = {
- start_time: this.start_time,
- keywords: this.keywords,
- };
- getTodayAdviceList(params).then((response) => {
- if (response.data.state == 1) {
- this.doctorList = response.data.data.doctorlist;
- // this.admin_user_id = this.doctorList[0].admin_user_id
- // this.admin_user_id = this.tmp
- }
- });
- },
- // //获取药品的患者信息
- informationofdrugs(val) {
- var params = {
- // patient_id: this.currentRow.
- };
- },
- handleCurrentChange(val) {
- this.currentRow = val;
- this.total = "";
- if (this.state == 1) {
- this.getdrugsdetails(0);
- }
- if (this.state == 2) {
- this.getdrugsdetails(1);
- }
- },
- getdrugsdetails(val) {
- if (this.state == 1) {
- val = 0;
- } else {
- val = 1;
- }
- var params = {
- drug_id: this.currentRow.id,
- is_medicine: val,
- time: this.start_time,
- shift: this.shift,
- partition: this.partition,
- deliveryway: this.deliveryway,
- };
- getpatientswithdrugs(params).then((res) => {
- if (res.data.state == 1) {
- var list = res.data.data.list; //列表数据
-
- if(this.$store.getters.xt_user.org.id == 10188 || this.$store.getters.xt_user.org.id == 10217 ){
- this.tableData = []
- if(list!=null && list.length >0){
- for(let i=0;i<list.length;i++){
- if(list[i].data_sources != "临时医嘱"){
- this.tableData.push(list[i])
- }
- }
- }
-
- }
- if(this.$store.getters.xt_user.org.id != 10188 && this.$store.getters.xt_user.org.id != 10217){
- this.tableData = []
- this.tableData = list
- }
-
-
- this.total = res.data.data.total; //合计
- } else {
- this.$message.error(res.data.msg);
- }
- });
- },
-
- toSetting() {
- getPharmacyConfig().then((response) => {
- if (response.data.state == 1) {
- this.dialogVisible = true;
- var config = response.data.data.config;
- this.is_open = config.is_open.toString();
- }
- });
- },
- SaveSetting() {
- var params = {
- is_open: parseInt(this.is_open),
- };
- SaveSetting(params).then((response) => {
- if (response.data.state == 1) {
- var config = response.data.data.config;
- this.$message.success("保存成功!");
- this.dialogVisible = false;
- }
- });
- },
- getrouteofadministration() {
- var params = {};
- routeofadministration(params).then((res) => {
- if (res.data.state == 1) {
- this.routeofadministration = res.data.data.list;
- }
- });
- },
- getgetpartitionlist() {
- var params = {};
- getpartitionlist(params).then((res) => {
- this.fen = res.data.data.list;
- });
- },
- getUserlist(drug_id) {
- var params = {
- start_time: this.start_time,
- drug_id: drug_id,
- };
- getUserdDrugList(params).then((response) => {
- if (response.data.state == 1) {
- var advicelist = response.data.data.advicelist;
- for (let i = 0; i < advicelist.length; i++) {
- advicelist[i].type = 1;
- advicelist[i].day = " ";
- this.tableList.push(advicelist[i]);
- }
- var hisAdviceList = response.data.data.hisAdviceList;
- for (let i = 0; i < hisAdviceList.length; i++) {
- hisAdviceList[i].type = 2;
- this.tableList.push(hisAdviceList[i]);
- }
- var patient = response.data.data.patient;
- this.patientList = patient;
- }
- });
- },
- },
- created() {
- this.init();
- this.morencreatename();
- this.getlist();
- // this.getdruglist();
- this.fun3();
- this.getrouteofadministration();
- this.getgetpartitionlist();
- },
- updated() {
- this.$nextTick(() => {
- if (this.$refs["table_01"]) {
- this.$refs["table_01"].doLayout();
- } else if (this.$refs["table_02"]) {
- this.$refs["table_02"].doLayout();
- }
- });
- },
- };
- </script>
-
- <style rel="stylesheet/css" lang="scss" scoped>
- .new-main-contain {
- height: 100%;
- display: flex;
- flex-direction: column;
- }
-
- .app-container {
- height: 100%;
- }
- .mainLeft {
- width: 300px;
- height: 100%;
- display: flex;
- flex-direction: column;
-
- .el-radio {
- margin-right: 75px;
- }
-
- .list {
- margin: 10px 0;
- }
- }
- .mainRight {
- margin-left: 10px;
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow-y: hidden;
- .titlelist {
- display: flex;
- justify-content: space-between;
- white-space: nowrap;
- color: #909399;
- font-size: 14px;
-
- /deep/ .el-input__inner {
- font-size: 13px !important;
- }
- }
- .el-button {
- height: 34px;
- width: 65px;
- }
- .el-table {
- margin-top: -13px;
- }
- /deep/ .el-divider {
- height: 2px;
- margin-top: 10px;
- }
- }
-
- /deep/ .el-table--scrollable-x .el-table__body-wrapper {
- overflow-y: auto;
- overflow-x: hidden;
- }
- /deep/ .right_table {
- .el-table__body-wrapper {
- overflow-y: auto;
- overflow-x: scroll !important;
- }
- // /deep/ .el-table__footer-wrapper {
- // margin-top: -2px !important;
- // }
- }
- /deep/ .gutter {
- width: 15px !important;
- display: inline-block !important;
- }
- /deep/ .el-table__fixed-right-patch {
- width: 15px !important;
- }
-
- /deep/ .el-table__fixed-right {
- bottom: 0 !important;
- left: auto;
- right: 0;
- }
- /deep/ .el-table__body-wrapper::-webkit-scrollbar {
- width: 15px !important;
- height: 15px !important;
- }
- </style>
|