|
@@ -114,13 +114,41 @@
|
114
|
114
|
</div>
|
115
|
115
|
<div class="mainRight">
|
116
|
116
|
<div class="titlelist">
|
|
117
|
+ 班次:
|
|
118
|
+ <el-select v-model="shift" placeholder="请选择" @change="getdrugsdetails">
|
|
119
|
+ <el-option
|
|
120
|
+ v-for="item in banshift"
|
|
121
|
+ :key="item.value"
|
|
122
|
+ :label="item.text"
|
|
123
|
+ :value="item.value">
|
|
124
|
+ </el-option>
|
|
125
|
+ </el-select>
|
|
126
|
+ 分区:
|
|
127
|
+ <el-select v-model="partition" placeholder="请选择" @change="getdrugsdetails">
|
|
128
|
+ <el-option
|
|
129
|
+ v-for="item in fen"
|
|
130
|
+ :key="item.id"
|
|
131
|
+ :label="item.name"
|
|
132
|
+ :value="item.id">
|
|
133
|
+ </el-option>
|
|
134
|
+ </el-select>
|
|
135
|
+ 给药途径:
|
|
136
|
+ <el-select v-model="deliveryway" placeholder="请选择" @change="getdruglist">
|
|
137
|
+ <el-option
|
|
138
|
+ v-for="item in routeofadministration"
|
|
139
|
+ :key="item.name"
|
|
140
|
+ :label="item.name"
|
|
141
|
+ :value="item.name">
|
|
142
|
+ </el-option>
|
|
143
|
+ </el-select>
|
|
144
|
+ <el-button type="primary" @click="toExport" v-if="state == 2">导出</el-button>
|
117
|
145
|
<!-- <el-button type="primary" @click="tt">调试</el-button>-->
|
118
|
146
|
<el-button type="primary" @click="dispense" v-if="state == 1"
|
119
|
147
|
>发药</el-button
|
120
|
148
|
>
|
121
|
149
|
<el-button type="primary" @click="toPrint">打印</el-button>
|
122
|
|
- <!-- <el-button @click="tt">调试</el-button>-->
|
123
|
|
- <!-- <el-button type="primary" @click="toSetting">设置</el-button>-->
|
|
150
|
+<!-- <el-button @click="tt">调试</el-button>-->
|
|
151
|
+
|
124
|
152
|
</div>
|
125
|
153
|
<el-divider></el-divider>
|
126
|
154
|
<div>
|
|
@@ -319,6 +347,7 @@
|
319
|
347
|
</el-table-column>
|
320
|
348
|
</el-table>
|
321
|
349
|
</div>
|
|
350
|
+ <div>合计 {{total}}</div>
|
322
|
351
|
<div style="margin-top: 25px" v-if="state == 1">
|
323
|
352
|
领药人:
|
324
|
353
|
<el-select v-model="admin_user_id" placeholder="请选择">
|
|
@@ -384,6 +413,8 @@ import {
|
384
|
413
|
getpatientswithdrugs,
|
385
|
414
|
medicinedeparture,
|
386
|
415
|
getcurrentname,
|
|
416
|
+ getpartitionlist,
|
|
417
|
+ routeofadministration,
|
387
|
418
|
} from "@/api/pharmacy";
|
388
|
419
|
const moment = require("moment");
|
389
|
420
|
export default {
|
|
@@ -419,13 +450,26 @@ export default {
|
419
|
450
|
issued_drug: [], //已发药列表
|
420
|
451
|
currentRow: null,
|
421
|
452
|
tmp: 0,
|
|
453
|
+ banshift:[
|
|
454
|
+ {value:0,text:'全部班'},
|
|
455
|
+ {value:1,text:'上午'},
|
|
456
|
+ {value:2,text: '下午'},
|
|
457
|
+ {value:3,text: '晚上'}
|
|
458
|
+ ],
|
|
459
|
+ shift:0,//班次
|
|
460
|
+ fen:[],
|
|
461
|
+ partition:0,//分区
|
|
462
|
+ routeofadministration:[],
|
|
463
|
+ deliveryway:"全部",//给药途径
|
|
464
|
+ total:"",//合计
|
422
|
465
|
};
|
423
|
466
|
},
|
424
|
467
|
|
425
|
468
|
methods: {
|
426
|
469
|
tt() {
|
427
|
|
- console.log("this.currentRow", this.currentRow);
|
428
|
|
- this.$router.go(0);
|
|
470
|
+ console.log("this.state", this.state);
|
|
471
|
+ console.log("this.tableData", this.tableData);
|
|
472
|
+ console.log("this.deliveryway", this.deliveryway);
|
429
|
473
|
},
|
430
|
474
|
async fun3() {
|
431
|
475
|
console.log("fun3");
|
|
@@ -467,7 +511,7 @@ export default {
|
467
|
511
|
}
|
468
|
512
|
console.log(data, "合计data1");
|
469
|
513
|
const values = data.map((item) => Number(item[column.property]));
|
470
|
|
-
|
|
514
|
+
|
471
|
515
|
if (!values.every((value) => isNaN(value))) {
|
472
|
516
|
sums[index] = values.reduce((prev, curr) => {
|
473
|
517
|
const value = Number(curr);
|
|
@@ -525,6 +569,174 @@ export default {
|
525
|
569
|
this.start_time
|
526
|
570
|
);
|
527
|
571
|
},
|
|
572
|
+ toExport() {
|
|
573
|
+ if (this.state == 1 && this.multipleSelection.length == 0) {
|
|
574
|
+ this.$message.error("未选择任何数据");
|
|
575
|
+ return;
|
|
576
|
+ }
|
|
577
|
+ if (this.state == 2 && this.tableData == null) {
|
|
578
|
+ this.$message.error("未选择任何数据");
|
|
579
|
+ return;
|
|
580
|
+ }
|
|
581
|
+ // for (let i = 0; i < this.tableData.length; i++) {
|
|
582
|
+ // this.tableData[i].index = i + 1;
|
|
583
|
+ // this.tableData[i].name = this.tableData[i].dose + this.tableData[i].dose_unit + "*" + this.tableData[i].min_number + this.tableData[i].min_unit +
|
|
584
|
+ // "/" +
|
|
585
|
+ // this.tableData[i].max_unit;
|
|
586
|
+ //
|
|
587
|
+ // this.tableData[i].total_price = (
|
|
588
|
+ // this.tableData[i].warehousing_count * this.exportList[i].price
|
|
589
|
+ // ).toFixed(2);
|
|
590
|
+ // for (let j = 0; j < this.manufacturerList.length; j++) {
|
|
591
|
+ // if (this.exportList[i].manufacturer == this.manufacturerList[j].id) {
|
|
592
|
+ // this.exportList[i].manufacturer =
|
|
593
|
+ // this.manufacturerList[j].manufacturer_name;
|
|
594
|
+ // }
|
|
595
|
+ // if (this.exportList[i].manufacturer == 0) {
|
|
596
|
+ // this.exportList[i].manufacturer = "";
|
|
597
|
+ // }
|
|
598
|
+ // }
|
|
599
|
+ //
|
|
600
|
+ // for (let z = 0; z < this.dealerList.length; z++) {
|
|
601
|
+ // if (this.exportList[i].dealer == this.dealerList[z].id) {
|
|
602
|
+ // this.exportList[i].dealer = this.dealerList[z].dealer_name;
|
|
603
|
+ // }
|
|
604
|
+ // if (this.exportList[i].dealer == 0) {
|
|
605
|
+ // this.exportList[i].dealer = "";
|
|
606
|
+ // }
|
|
607
|
+ // }
|
|
608
|
+ // }
|
|
609
|
+
|
|
610
|
+ if(this.state == 1){
|
|
611
|
+ import("@/vendor/Export2Excel").then((excel) => {
|
|
612
|
+ for (let i = 0; i < this.multipleSelection.length; i++) {
|
|
613
|
+ this.multipleSelection[i].index = i + 1;
|
|
614
|
+ this.multipleSelection[i].time = this.start_time
|
|
615
|
+ this.multipleSelection[i].yname = this.currentRow.name
|
|
616
|
+ }
|
|
617
|
+
|
|
618
|
+ const tHeader = [
|
|
619
|
+ "序号",
|
|
620
|
+ "时间",
|
|
621
|
+ "患者名称",
|
|
622
|
+ "药品名称",
|
|
623
|
+ "单次用量",
|
|
624
|
+ "用法",
|
|
625
|
+ "频率",
|
|
626
|
+ "天数",
|
|
627
|
+ "总量",
|
|
628
|
+ "数据来源",
|
|
629
|
+ ];
|
|
630
|
+ const filterVal = [
|
|
631
|
+ "index",
|
|
632
|
+ "time",
|
|
633
|
+ "name",
|
|
634
|
+ "yname",
|
|
635
|
+ "single_dosage",
|
|
636
|
+ "usage",
|
|
637
|
+ "frequency",
|
|
638
|
+ "days",
|
|
639
|
+ "total",
|
|
640
|
+ "data_sources",
|
|
641
|
+ ];
|
|
642
|
+
|
|
643
|
+ const data = this.formatJson(filterVal, this.multipleSelection);
|
|
644
|
+ excel.export_json_to_excel({
|
|
645
|
+ header: tHeader,
|
|
646
|
+ data,
|
|
647
|
+ filename: "发药单详情",
|
|
648
|
+ });
|
|
649
|
+ this.downloadLoading = false;
|
|
650
|
+ });
|
|
651
|
+ }else if(this.state == 2){
|
|
652
|
+ import("@/vendor/Export2Excel").then((excel) => {
|
|
653
|
+ for (let i = 0; i < this.tableData.length; i++) {
|
|
654
|
+ this.tableData[i].index = i + 1;
|
|
655
|
+ this.tableData[i].time = this.start_time
|
|
656
|
+ this.tableData[i].yname = this.currentRow.name
|
|
657
|
+ }
|
|
658
|
+
|
|
659
|
+ const tHeader = [
|
|
660
|
+ "序号",
|
|
661
|
+ "日期",
|
|
662
|
+ "患者名称",
|
|
663
|
+ "药品名称",
|
|
664
|
+ "单次用量",
|
|
665
|
+ "用法",
|
|
666
|
+ "频率",
|
|
667
|
+ "天数",
|
|
668
|
+ "总量",
|
|
669
|
+ "数据来源",
|
|
670
|
+ "领药人",
|
|
671
|
+ ];
|
|
672
|
+ const filterVal = [
|
|
673
|
+ "index",
|
|
674
|
+ "time",
|
|
675
|
+ "name",
|
|
676
|
+ "yname",
|
|
677
|
+ "single_dosage",
|
|
678
|
+ "usage",
|
|
679
|
+ "frequency",
|
|
680
|
+ "days",
|
|
681
|
+ "total",
|
|
682
|
+ "data_sources",
|
|
683
|
+ "people",
|
|
684
|
+ ];
|
|
685
|
+
|
|
686
|
+ const data = this.formatJson(filterVal, this.tableData);
|
|
687
|
+ excel.export_json_to_excel({
|
|
688
|
+ header: tHeader,
|
|
689
|
+ data,
|
|
690
|
+ filename: "发药单详情",
|
|
691
|
+ });
|
|
692
|
+ this.downloadLoading = false;
|
|
693
|
+ });
|
|
694
|
+ }else{
|
|
695
|
+ this.$message.error("药品状态异常");
|
|
696
|
+ return;
|
|
697
|
+ }
|
|
698
|
+ // import("@/vendor/Export2Excel").then((excel) => {
|
|
699
|
+ // // for (let i = 0; i < this.tableData.length; i++) {
|
|
700
|
+ // // for (let j = 0; j < this.drugTypeList.length; j++) {
|
|
701
|
+ // // if (this.exportList[i].drug_type == this.drugTypeList[j].id) {
|
|
702
|
+ // // this.exportList[i].drug_type = this.drugTypeList[j].name;
|
|
703
|
+ // // }
|
|
704
|
+ // // }
|
|
705
|
+ // // }
|
|
706
|
+ //
|
|
707
|
+ // const tHeader = [
|
|
708
|
+ // "序号",
|
|
709
|
+ // "患者名称",
|
|
710
|
+ // "单次用量",
|
|
711
|
+ // "用法",
|
|
712
|
+ // "频率",
|
|
713
|
+ // "天数",
|
|
714
|
+ // "总量",
|
|
715
|
+ // "数据来源",
|
|
716
|
+ // ];
|
|
717
|
+ // const filterVal = [
|
|
718
|
+ // "index",
|
|
719
|
+ // "drug_name",
|
|
720
|
+ // "drug_type",
|
|
721
|
+ // "unit",
|
|
722
|
+ // "batch_number",
|
|
723
|
+ // "warehousing_count",
|
|
724
|
+ // "price",
|
|
725
|
+ // "total_price",
|
|
726
|
+ // ];
|
|
727
|
+ //
|
|
728
|
+ // const data = this.tableData;
|
|
729
|
+ // excel.export_json_to_excel({
|
|
730
|
+ // header: tHeader,
|
|
731
|
+ // data,
|
|
732
|
+ // filename: "药品入库单详情",
|
|
733
|
+ // });
|
|
734
|
+ // this.downloadLoading = false;
|
|
735
|
+ // });
|
|
736
|
+ },
|
|
737
|
+ formatJson(filterVal, jsonData) {
|
|
738
|
+ return jsonData.map((v) => filterVal.map((j) => v[j]));
|
|
739
|
+ },
|
528
|
740
|
//列表选择
|
529
|
741
|
handleSelectionChange(val) {
|
530
|
742
|
this.multipleSelection = val;
|
|
@@ -598,6 +810,7 @@ export default {
|
598
|
810
|
var params = {
|
599
|
811
|
keyword: this.keywords,
|
600
|
812
|
time: this.start_time,
|
|
813
|
+ deliveryway: this.deliveryway,
|
601
|
814
|
};
|
602
|
815
|
waitingmedicine(params).then((res) => {
|
603
|
816
|
if (res.data.state == 1) {
|
|
@@ -614,6 +827,7 @@ export default {
|
614
|
827
|
var params = {
|
615
|
828
|
keyword: this.keywords,
|
616
|
829
|
time: this.start_time,
|
|
830
|
+ deliveryway: this.deliveryway,
|
617
|
831
|
};
|
618
|
832
|
await waitingmedicine(params).then((res) => {
|
619
|
833
|
if (res.data.state == 1) {
|
|
@@ -663,6 +877,8 @@ export default {
|
663
|
877
|
},
|
664
|
878
|
handleCurrentChange(val) {
|
665
|
879
|
this.currentRow = val;
|
|
880
|
+ console.log("currentRow",this.currentRow)
|
|
881
|
+ this.total = ""
|
666
|
882
|
if (this.state == 1) {
|
667
|
883
|
this.getdrugsdetails(0);
|
668
|
884
|
}
|
|
@@ -675,10 +891,14 @@ export default {
|
675
|
891
|
drug_id: this.currentRow.id,
|
676
|
892
|
is_medicine: val,
|
677
|
893
|
time: this.start_time,
|
|
894
|
+ shift: this.shift,
|
|
895
|
+ partition: this.partition,
|
|
896
|
+ deliveryway: this.deliveryway,
|
678
|
897
|
};
|
679
|
898
|
getpatientswithdrugs(params).then((res) => {
|
680
|
899
|
if (res.data.state == 1) {
|
681
|
900
|
this.tableData = res.data.data.list; //列表数据
|
|
901
|
+ this.total = res.data.data.total;//合计
|
682
|
902
|
} else {
|
683
|
903
|
this.$message.error(res.data.msg);
|
684
|
904
|
}
|
|
@@ -706,6 +926,20 @@ export default {
|
706
|
926
|
}
|
707
|
927
|
});
|
708
|
928
|
},
|
|
929
|
+ getrouteofadministration(){
|
|
930
|
+ var params = {}
|
|
931
|
+ routeofadministration(params).then((res) =>{
|
|
932
|
+ if(res.data.state == 1){
|
|
933
|
+ this.routeofadministration = res.data.data.list;
|
|
934
|
+ }
|
|
935
|
+ })
|
|
936
|
+ },
|
|
937
|
+ getgetpartitionlist(){
|
|
938
|
+ var params = {}
|
|
939
|
+ getpartitionlist(params).then((res) =>{
|
|
940
|
+ this.fen = res.data.data.list;
|
|
941
|
+ })
|
|
942
|
+ },
|
709
|
943
|
getUserlist(drug_id) {
|
710
|
944
|
var params = {
|
711
|
945
|
start_time: this.start_time,
|
|
@@ -736,6 +970,8 @@ export default {
|
736
|
970
|
this.getlist();
|
737
|
971
|
// this.getdruglist();
|
738
|
972
|
this.fun3();
|
|
973
|
+ this.getrouteofadministration();
|
|
974
|
+ this.getgetpartitionlist();
|
739
|
975
|
},
|
740
|
976
|
};
|
741
|
977
|
</script>
|