XMLWAN 3 years ago
parent
commit
97d4842833

+ 15 - 0
src/store/modules/globalConfig.js View File

@@ -751,6 +751,21 @@ const global_config = {
751 751
         zongliang_unit: 'mg',
752 752
         gaimingcheng_unit: '',
753 753
         gaijiliang_unit: ''
754
+      },
755
+      12: {
756
+        id: 12,
757
+        name: '无抗凝剂',
758
+        type: 1,
759
+        shouji: 2,
760
+        weichi: 2,
761
+        zongliang: 2,
762
+        gaimingcheng: -1,
763
+        gaijiliang: -1,
764
+        shouji_unit: 'mg',
765
+        weichi_unit: 'mg/h',
766
+        zongliang_unit: 'mg',
767
+        gaimingcheng_unit: '',
768
+        gaijiliang_unit: ''
754 769
       }
755 770
     },
756 771
     anticoagulants_set: {

+ 1 - 0
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

@@ -411,6 +411,7 @@
411 411
              <span v-if="scope.row.monitor_anticoagulant == 7">低分子肝素钠</span>
412 412
              <span v-if="scope.row.monitor_anticoagulant == 8">依诺肝素</span>
413 413
              <span v-if="scope.row.monitor_anticoagulant == 9">达肝素</span>
414
+             <span v-if="scope.row.monitor_anticoagulant == 12">无抗凝剂</span>
414 415
              <span v-if="scope.row.monitor_anticoagulant_value!=''">({{ scope.row.monitor_anticoagulant_value ? scope.row.monitor_anticoagulant_value : ""  }})</span>
415 416
 
416 417
             </template>

+ 1 - 0
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

@@ -75,6 +75,7 @@
75 75
             <span v-if="monitor.monitor_anticoagulant == 7">低分子肝素钠</span>
76 76
             <span v-if="monitor.monitor_anticoagulant == 8">依诺肝素</span>
77 77
             <span v-if="monitor.monitor_anticoagulant == 9">达肝素</span>
78
+            <span v-if="monitor.monitor_anticoagulant == 12">无抗凝剂</span>
78 79
             <span v-if="monitor.monitor_anticoagulant_value!=''">({{monitor.monitor_anticoagulant_value ? monitor.monitor_anticoagulant_value : ""  }})</span>
79 80
           </td>
80 81
           <!-- <th v-if="isShow('血压监测部位')">{{getBloodPressure(monitor.blood_pressure_monitoring_site)}}</th>

+ 0 - 7
src/xt_pages/qcd/workAnalysis/nurse.vue View File

@@ -149,13 +149,6 @@
149 149
               </template>
150 150
             </el-table-column>
151 151
 
152
-            <el-table-column label="冲管" align="center">
153
-              <template slot-scope="scope">
154
-                {{scope.row.total_washpipe_nurse?scope.row.total_washpipe_nurse:''}}
155
-
156
-              </template>
157
-            </el-table-column>
158
-
159 152
             <el-table-column label="上机" align="center" width="300">
160 153
               <template slot-scope="scope">
161 154
                 {{scope.row.start_nuser_count?scope.row.start_nuser_count:''}}

+ 23 - 8
src/xt_pages/stock/detail/stockInDetail.vue View File

@@ -217,6 +217,7 @@ export default {
217 217
   name: "stockInDetail",
218 218
 
219 219
   created() {
220
+    
220 221
     var nowDate = new Date();
221 222
     var nowYear = nowDate.getFullYear();
222 223
     var nowMonth = nowDate.getMonth() + 1;
@@ -237,14 +238,23 @@ export default {
237 238
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
238 239
       "-" +
239 240
       (nowDay < 10 ? "0" + nowDay : nowDay);
241
+    var start_time =  window.sessionStorage.getItem('start_time')
242
+    var end_time =  window.sessionStorage.getItem('end_time')
243
+    console.log("start_time",start_time,end_time)
244
+    if(start_time !=null){
245
+      this.start_time = start_time
246
+    }
247
+    if(end_time!=null){
248
+      this.end_time = end_time
249
+    }
250
+    window.sessionStorage.removeItem('start_time')
251
+    window.sessionStorage.removeItem('end_time')  
240 252
     this.GetCancelStock();
241 253
     this.GetConfigInfo();
242 254
     this.fetchAllAdminUsers();
243 255
     this.goodUnit = this.$store.getters.good_unit
244
-
245
-    // this.getPrintStockGood()
246 256
     this.org_id = this.$store.getters.xt_user.template_info.org_id
247
-    console.log("机构ID",this.org_id)
257
+   
248 258
     this.getGoodDetailPrintList()
249 259
   },
250 260
   data() {
@@ -484,8 +494,9 @@ export default {
484 494
         this.$message.error("结束时间不能小于开始时间");
485 495
         this.start_time = "";
486 496
       } else {
497
+         window.sessionStorage.removeItem('start_time')
487 498
         this.GetCancelStock();
488
-        // this.getPrintStockGood()
499
+       
489 500
       }
490 501
     },
491 502
     endTimeChange(val) {
@@ -494,8 +505,8 @@ export default {
494 505
         this.$message.error("结束时间不能小于开始时间");
495 506
         this.end_time = "";
496 507
       } else {
508
+        window.sessionStorage.removeItem('end_time')
497 509
         this.GetCancelStock();
498
-        // this.getPrintStockGood()
499 510
       }
500 511
     },
501 512
     getTimestamp(time) {
@@ -647,6 +658,8 @@ export default {
647 658
       return (r1 * r2) / Math.pow(10, m);
648 659
     },
649 660
     PrintAction: function() {
661
+      window.sessionStorage.setItem('start_time',this.start_time)
662
+      window.sessionStorage.setItem('end_time',this.end_time)
650 663
       this.$router.push({
651 664
         path: "/stock/print",
652 665
         query: {
@@ -765,9 +778,10 @@ export default {
765 778
         const tHeader = ['序号','耗材名称', '规格型号', '单位','数量','进货价','总价','备注']
766 779
         const filterVal = ['index','good_name', 'specification_name', 'packing_unit','warehousing_count','price','total_price','remark']
767 780
         console.log("hhhhhhhh",this.tableInfo)
768
-       
781
+        
769 782
         const data = this.formatJson(filterVal, this.tableInfo)
770 783
         console.log("data222222222",data)
784
+      
771 785
           excel.export_json_to_excel({
772 786
             header: tHeader,
773 787
             data,
@@ -794,12 +808,13 @@ export default {
794 808
         this.tableDataList.push(obj)
795 809
         import('@/vendor/Export2Excel').then(excel => {
796 810
         const tHeader = ['序号','单据编号', '耗材类型', '耗材名称','规格型号','操作时间','制单人','进货价','数量','总价']
797
-        const filterVal = ['index','warehousing_count', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
811
+        const filterVal = ['index','warehousing_order', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
798 812
         console.log("hhhhhhhh",this.tableDataList)
799 813
       
800
-      
814
+        
801 815
         const data = this.formatJson(filterVal, this.tableDataList)
802 816
         console.log("data222222222",data)
817
+        return
803 818
           excel.export_json_to_excel({
804 819
             header: tHeader,
805 820
             data,