XMLWAN 3 years ago
parent
commit
51123faa10

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

584
         sodium: 1,
584
         sodium: 1,
585
         calcium: 1,
585
         calcium: 1,
586
         bicarbonate: 1
586
         bicarbonate: 1
587
+      },
588
+      26: {
589
+        id: 26,
590
+        name: 'CVVH',
591
+        dialysis_duration: 1,
592
+        replacement_way: 1,
593
+        hemodialysis_machine: 2,
594
+        blood_filter: 1,
595
+        perfusion_apparatus: 2,
596
+        blood_flow_volume: 1,
597
+        dialysate_flow: 1,
598
+        kalium: 1,
599
+        sodium: 1,
600
+        calcium: 1,
601
+        bicarbonate: 1
602
+      },
603
+      27: {
604
+        id: 27,
605
+        name: 'CVVHD',
606
+        dialysis_duration: 1,
607
+        replacement_way: 1,
608
+        hemodialysis_machine: 2,
609
+        blood_filter: 1,
610
+        perfusion_apparatus: 2,
611
+        blood_flow_volume: 1,
612
+        dialysate_flow: 1,
613
+        kalium: 1,
614
+        sodium: 1,
615
+        calcium: 1,
616
+        bicarbonate: 1
617
+      },
618
+      28: {
619
+        id: 28,
620
+        name: 'CVVHDF',
621
+        dialysis_duration: 1,
622
+        replacement_way: 1,
623
+        hemodialysis_machine: 2,
624
+        blood_filter: 1,
625
+        perfusion_apparatus: 2,
626
+        blood_flow_volume: 1,
627
+        dialysate_flow: 1,
628
+        kalium: 1,
629
+        sodium: 1,
630
+        calcium: 1,
631
+        bicarbonate: 1
587
       }
632
       }
588
     },
633
     },
589
     anticoagulants_confit: { // 抗凝剂
634
     anticoagulants_confit: { // 抗凝剂

+ 21 - 5
src/xt_pages/stock/detail/cancelStockDetail.vue View File

232
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
232
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
233
       "-" +
233
       "-" +
234
       (nowDay < 10 ? "0" + nowDay : nowDay);
234
       (nowDay < 10 ? "0" + nowDay : nowDay);
235
+    var start_time =  window.sessionStorage.getItem('start_time_one')
236
+    var end_time =  window.sessionStorage.getItem('end_time_one')
237
+    console.log("start_time",start_time,end_time)
238
+    if(start_time !=null){
239
+      this.start_time = start_time
240
+    }
241
+    if(end_time!=null){
242
+      this.end_time = end_time
243
+    }
244
+    window.sessionStorage.removeItem('start_time_one')
245
+    window.sessionStorage.removeItem('end_time_one')  
235
     this.GetCancelStock();
246
     this.GetCancelStock();
236
     this.GetConfigInfo();
247
     this.GetConfigInfo();
237
     this.fetchAllAdminUsers();
248
     this.fetchAllAdminUsers();
273
   },
284
   },
274
   methods: {
285
   methods: {
275
     PrintAction: function() {
286
     PrintAction: function() {
287
+      window.sessionStorage.setItem('start_time_one',this.start_time)
288
+      window.sessionStorage.setItem('end_time_one',this.end_time)
276
       this.$router.push({
289
       this.$router.push({
277
         path: "/stock/print",
290
         path: "/stock/print",
278
         query: {
291
         query: {
280
           start_time: this.start_time,
293
           start_time: this.start_time,
281
           end_time: this.end_time,
294
           end_time: this.end_time,
282
           limit:this.limit,
295
           limit:this.limit,
283
-          page:this.page
296
+          page:this.page,
284
         }
297
         }
285
       });
298
       });
286
     },
299
     },
339
         type: this.type,
352
         type: this.type,
340
         keywords: this.searchKey
353
         keywords: this.searchKey
341
       };
354
       };
355
+      console.log("param2323232222332",params)
342
       this.cancelStockDate = [];
356
       this.cancelStockDate = [];
343
       getStockDetail(Params).then(response => {
357
       getStockDetail(Params).then(response => {
344
         if (response.data.state == 0) {
358
         if (response.data.state == 0) {
369
         order_type: this.order_type,
383
         order_type: this.order_type,
370
         dealer: this.dealer_id
384
         dealer: this.dealer_id
371
       };
385
       };
372
-      
386
+      console.log("Params23232233223232332",Params)
373
       this.cancelStockDate = [];
387
       this.cancelStockDate = [];
374
       getStockDetail(Params).then(response => {
388
       getStockDetail(Params).then(response => {
375
         if (response.data.state == 0) {
389
         if (response.data.state == 0) {
388
             this.cancelStockDate.push(obj);
402
             this.cancelStockDate.push(obj);
389
             
403
             
390
           }
404
           }
391
-          console.log("2322323323232323223322323")
405
+         
392
           this.tableDataList = response.data.data.list
406
           this.tableDataList = response.data.data.list
393
          
407
          
394
           var listgroup = response.data.data.listgroup
408
           var listgroup = response.data.data.listgroup
395
-          console.log("hh2322322332",listgroup)
409
+        
396
 
410
 
397
           this.cancelStockDate.push({
411
           this.cancelStockDate.push({
398
             order_number: "合计",
412
             order_number: "合计",
411
           }
425
           }
412
         }
426
         }
413
         this.tableList = listgroup
427
         this.tableList = listgroup
414
-        console.log("退库列表",this.tableList)
428
+       
415
         }
429
         }
416
       });
430
       });
417
     },
431
     },
469
         this.$message.error("结束时间不能小于开始时间");
483
         this.$message.error("结束时间不能小于开始时间");
470
         this.start_time = "";
484
         this.start_time = "";
471
       } else {
485
       } else {
486
+       
472
         this.GetCancelStock();
487
         this.GetCancelStock();
473
       }
488
       }
474
     },
489
     },
478
         this.$message.error("结束时间不能小于开始时间");
493
         this.$message.error("结束时间不能小于开始时间");
479
         this.end_time = "";
494
         this.end_time = "";
480
       } else {
495
       } else {
496
+       
481
         this.GetCancelStock();
497
         this.GetCancelStock();
482
       }
498
       }
483
     },
499
     },

+ 13 - 80
src/xt_pages/stock/detail/print.vue View File

52
              
52
              
53
               <td style="line-height: 50px">
53
               <td style="line-height: 50px">
54
                 <span v-if="type == 1"> {{ item.warehousing_count }}</span>
54
                 <span v-if="type == 1"> {{ item.warehousing_count }}</span>
55
-                <span v-if="type == 2"> {{getStockCount(item.good_id) }}</span>
55
+                <!-- <span v-if="type == 2"> {{getStockCount(item.good_id) }}</span> -->
56
+                <span v-if="type == 2">{{item.count}}</span>
56
                 <span v-if="type == 4"> {{ item.count }}</span>
57
                 <span v-if="type == 4"> {{ item.count }}</span>
57
               </td>
58
               </td>
58
               <td style="line-height: 50px">
59
               <td style="line-height: 50px">
77
           </table>
78
           </table>
78
           <table class="print-table" border="1">
79
           <table class="print-table" border="1">
79
             <tr>
80
             <tr>
80
-              <td style="line-height: 50px" colspan="6" width="550">合计</td>
81
-              <td width="80" style="line-height: 50px" >
81
+              <td style="line-height: 50px"  width="50">合计</td>
82
+              <td style="line-height: 50px"  width="200"></td>
83
+              <td style="line-height: 50px"  width="200"></td>
84
+              <td style="line-height: 50px"  width="80"></td>
85
+              <td style="line-height: 50px"  width="50"></td>
86
+              <td style="line-height: 50px"   width="80"></td>
87
+              <td style="line-height: 50px"  width="80">
82
                 <span v-if="type == 1">{{getWareInfoTotal().toFixed(2)}}</span> 
88
                 <span v-if="type == 1">{{getWareInfoTotal().toFixed(2)}}</span> 
83
                 <span v-if="type == 2">{{getWareOutTotal().toFixed(2)}}</span> 
89
                 <span v-if="type == 2">{{getWareOutTotal().toFixed(2)}}</span> 
84
                 <span v-if="type == 4">{{getWareOutTotal().toFixed(2)}}</span> 
90
                 <span v-if="type == 4">{{getWareOutTotal().toFixed(2)}}</span> 
85
               </td>
91
               </td>
86
-              <td width="80" style="line-height: 50px">
87
-
92
+              <td style="line-height: 50px" width="80">
93
+               
88
               </td>
94
               </td>
89
             </tr>
95
             </tr>
90
           </table> 
96
           </table> 
151
         if (this.type == 1){
157
         if (this.type == 1){
152
           return "入库日期: "+this.start_time +"~"+this.end_time
158
           return "入库日期: "+this.start_time +"~"+this.end_time
153
         }else if(this.type == 2){
159
         }else if(this.type == 2){
154
-          return "退货日期: "+this.start_time +"~"+this.end_time
160
+          return "出库日期: "+this.start_time +"~"+this.end_time
155
         }else if(this.type == 3){
161
         }else if(this.type == 3){
156
           return "出库日期: "+this.start_time +"~"+this.end_time
162
           return "出库日期: "+this.start_time +"~"+this.end_time
157
         }else if(this.type == 4){
163
         }else if(this.type == 4){
183
           scanStyles: false
189
           scanStyles: false
184
         })
190
         })
185
       },
191
       },
186
-      getDialysisRecord() {
187
-        this.loading = true
188
-        
189
-        getPrintStockGood(this.queryParams).then(response => {
190
-          if (response.data.state == 1) {
191
-            var stockTotal = response.data.data.stockTotal
192
-          
193
-            this.stockTotal = stockTotal
194
-           
195
-            var info = response.data.data.info
196
-           
197
-            this.wareOutInfo = info
198
-            var org_id = response.data.data.orgid
199
-          
200
-            this.org_id = org_id
201
-
202
-            var informationlist = response.data.data.infomationList
203
-           
204
-            this.informationList = informationlist
205
-            this.stockDatas = []
206
-            for (let i = 0; i < response.data.data.list.length; i++) {
207
-              if (this.type == 1) {
208
-                if (response.data.data.list[i].query_warehousing_info.length > 0) {
209
-                  this.stockDatas.push(response.data.data.list[i])
210
-                }
211
-                console.log("入库打印数据源",this.stockDatas)
212
-              } else if (this.type == 2) {
213
-                if (response.data.data.list[i].query_sales_return_info.length > 0) {
214
-                  this.stockDatas.push(response.data.data.list[i])
215
-                }
216
-
217
-              } else if (this.type == 3) {
218
-                
219
-                if (response.data.data.list[i].query_warehouseout_info.length > 0) {
220
-                  this.stockDatas.push(response.data.data.list[i])
221
-                }
222
-               
223
-                console.log("出库打印数据源",this.stockDatas)
224
-
225
-                
226
-              } else if (this.type == 4) {
227
-                if (response.data.data.list[i].query_cancel_stock_info.length > 0) {
228
-                  this.stockDatas.push(response.data.data.list[i])
229
-                }
230
-              }
231
-
232
-            }
233
-            var obj =  null
234
-            for(let i = 0; i <this.stockDatas.length;i++){
235
-              obj = this.stockDatas[i]
236
-            }
237
-           console.log("9999999",this.stockDatas)
238
-           
239
-           var newArr =  this.unique(this.stockDatas)
240
-           console.log("耗材出库去重",newArr)
241
-
242
-           this.stockDatas = newArr
243
-            // if (this.stockDatas.length < 50) {
244
-            //   var nl = 50 - this.stockDatas.length
245
-            //   for (let index = 0; index < nl; index++) {
246
-            //     this.stockDatas.push([])
247
-            //   }
248
-            // }
249
-            this.loading = false
250
-          } else {
251
-            this.loading = false
252
-            this.$message.error('请求数据失败')
253
-            return false
254
-          }
255
-        })
256
-      }, 
257
       calCount(stock) {
192
       calCount(stock) {
258
       
193
       
259
         let total = 0
194
         let total = 0
420
         return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1));
355
         return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1));
421
      },
356
      },
422
      getGoodDetailPrintList(){
357
      getGoodDetailPrintList(){
358
+        console.log("param232323232322332",this.queryParams)
423
       getGoodDetailPrintList(this.queryParams).then(response=>{
359
       getGoodDetailPrintList(this.queryParams).then(response=>{
424
          if(response.data.state == 1){
360
          if(response.data.state == 1){
425
            var list = response.data.data.list
361
            var list = response.data.data.list
461
       var xtuser = this.$store.getters.xt_user
397
       var xtuser = this.$store.getters.xt_user
462
       this.orgname = xtuser.org.org_name
398
       this.orgname = xtuser.org.org_name
463
       this.goodUnit = this.$store.getters.good_unit
399
       this.goodUnit = this.$store.getters.good_unit
464
-
465
-      // this.getDialysisRecord()
466
       this.getGoodDetailPrintList()
400
       this.getGoodDetailPrintList()
467
-      // this.getStockDetail()
468
     }
401
     }
469
 
402
 
470
   }
403
   }

+ 12 - 15
src/xt_pages/stock/detail/stockInDetail.vue View File

240
       (nowDay < 10 ? "0" + nowDay : nowDay);
240
       (nowDay < 10 ? "0" + nowDay : nowDay);
241
     var start_time =  window.sessionStorage.getItem('start_time')
241
     var start_time =  window.sessionStorage.getItem('start_time')
242
     var end_time =  window.sessionStorage.getItem('end_time')
242
     var end_time =  window.sessionStorage.getItem('end_time')
243
-    console.log("start_time",start_time,end_time)
244
     if(start_time !=null){
243
     if(start_time !=null){
245
       this.start_time = start_time
244
       this.start_time = start_time
246
     }
245
     }
365
           return false;
364
           return false;
366
         } else {
365
         } else {
367
           this.total = response.data.data.total;
366
           this.total = response.data.data.total;
368
-          console.log("hhhhhhshsss",response.data.data.list)
369
           var total_price = 0
367
           var total_price = 0
370
           for (let i = 0; i < response.data.data.list.length; i++) {
368
           for (let i = 0; i < response.data.data.list.length; i++) {
371
             this.tableList.push(response.data.data.list[i])
369
             this.tableList.push(response.data.data.list[i])
418
         } else {
416
         } else {
419
           this.total = response.data.data.total;
417
           this.total = response.data.data.total;
420
           var total_price = 0
418
           var total_price = 0
421
-          console.log("收据3233232",response.data.data.list)
422
           for (let i = 0; i < response.data.data.list.length; i++) {
419
           for (let i = 0; i < response.data.data.list.length; i++) {
423
             total_price += parseInt(response.data.data.list[i].warehousing_count) * response.data.data.list[i].price
420
             total_price += parseInt(response.data.data.list[i].warehousing_count) * response.data.data.list[i].price
424
             this.tableList.push(response.data.data.list[i])
421
             this.tableList.push(response.data.data.list[i])
463
     },
460
     },
464
     fetchAllAdminUsers() {
461
     fetchAllAdminUsers() {
465
       fetchAllAdminUsers().then(response => {
462
       fetchAllAdminUsers().then(response => {
466
-        console.log(response);
467
         if (response.data.state == 1) {
463
         if (response.data.state == 1) {
468
           this.adminUserOptions = response.data.data.users;
464
           this.adminUserOptions = response.data.data.users;
469
           var alen = this.adminUserOptions.length;
465
           var alen = this.adminUserOptions.length;
489
       // this.getPrintStockGood()
485
       // this.getPrintStockGood()
490
     },
486
     },
491
     startTimeChange(val) {
487
     startTimeChange(val) {
488
+
492
       var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
489
       var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
493
       if (time > 0) {
490
       if (time > 0) {
494
         this.$message.error("结束时间不能小于开始时间");
491
         this.$message.error("结束时间不能小于开始时间");
495
         this.start_time = "";
492
         this.start_time = "";
496
       } else {
493
       } else {
497
-         window.sessionStorage.removeItem('start_time')
494
+       
498
         this.GetCancelStock();
495
         this.GetCancelStock();
499
        
496
        
500
       }
497
       }
505
         this.$message.error("结束时间不能小于开始时间");
502
         this.$message.error("结束时间不能小于开始时间");
506
         this.end_time = "";
503
         this.end_time = "";
507
       } else {
504
       } else {
508
-        window.sessionStorage.removeItem('end_time')
505
+       
509
         this.GetCancelStock();
506
         this.GetCancelStock();
510
       }
507
       }
511
     },
508
     },
692
                this.tableList.push(list[i])
689
                this.tableList.push(list[i])
693
              }
690
              }
694
           }
691
           }
695
-          console.log("数据源头2222222222",this.tableList)
692
+      
696
         }
693
         }
697
      })
694
      })
698
    },
695
    },
773
           this.tableInfo[i].index = i+1  
770
           this.tableInfo[i].index = i+1  
774
           this.tableInfo[i].total_price = (this.tableInfo[i].warehousing_count * this.tableInfo[i].price).toFixed(2) 
771
           this.tableInfo[i].total_price = (this.tableInfo[i].warehousing_count * this.tableInfo[i].price).toFixed(2) 
775
         }
772
         }
776
-        console.log("总共条数555",this.tableInfo)   
773
+
777
         import('@/vendor/Export2Excel').then(excel => {
774
         import('@/vendor/Export2Excel').then(excel => {
778
         const tHeader = ['序号','耗材名称', '规格型号', '单位','数量','进货价','总价','备注']
775
         const tHeader = ['序号','耗材名称', '规格型号', '单位','数量','进货价','总价','备注']
779
         const filterVal = ['index','good_name', 'specification_name', 'packing_unit','warehousing_count','price','total_price','remark']
776
         const filterVal = ['index','good_name', 'specification_name', 'packing_unit','warehousing_count','price','total_price','remark']
780
-        console.log("hhhhhhhh",this.tableInfo)
777
+
781
         
778
         
782
         const data = this.formatJson(filterVal, this.tableInfo)
779
         const data = this.formatJson(filterVal, this.tableInfo)
783
-        console.log("data222222222",data)
780
+
784
       
781
       
785
           excel.export_json_to_excel({
782
           excel.export_json_to_excel({
786
             header: tHeader,
783
             header: tHeader,
791
         })
788
         })
792
       },
789
       },
793
       exportListDetal(){
790
       exportListDetal(){
794
-        console.log("l可悲2233",this.tableDataList)
791
+       
795
         var obj = {index:"合计",total_price:0}
792
         var obj = {index:"合计",total_price:0}
796
         var total = 0
793
         var total = 0
797
         for(let i=0;i<this.tableDataList.length;i++){
794
         for(let i=0;i<this.tableDataList.length;i++){
809
         import('@/vendor/Export2Excel').then(excel => {
806
         import('@/vendor/Export2Excel').then(excel => {
810
         const tHeader = ['序号','单据编号', '耗材类型', '耗材名称','规格型号','操作时间','制单人','进货价','数量','总价']
807
         const tHeader = ['序号','单据编号', '耗材类型', '耗材名称','规格型号','操作时间','制单人','进货价','数量','总价']
811
         const filterVal = ['index','warehousing_order', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
808
         const filterVal = ['index','warehousing_order', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
812
-        console.log("hhhhhhhh",this.tableDataList)
809
+       
813
       
810
       
814
         
811
         
815
         const data = this.formatJson(filterVal, this.tableDataList)
812
         const data = this.formatJson(filterVal, this.tableDataList)
816
-        console.log("data222222222",data)
817
-        return
813
+       
814
+       
818
           excel.export_json_to_excel({
815
           excel.export_json_to_excel({
819
             header: tHeader,
816
             header: tHeader,
820
             data,
817
             data,
844
       getGoodDetailPrintList(params).then(response=>{
841
       getGoodDetailPrintList(params).then(response=>{
845
         if(response.data.state == 1){
842
         if(response.data.state == 1){
846
           var list = response.data.data.list
843
           var list = response.data.data.list
847
-          console.log("入库详情单",list)
844
+          // console.log("入库详情单",list)
848
           this.tableInfo = list
845
           this.tableInfo = list
849
         }
846
         }
850
       })
847
       })

+ 24 - 57
src/xt_pages/stock/detail/stockOutDetail.vue View File

70
       </div>
70
       </div>
71
     </div>
71
     </div>
72
 
72
 
73
-    
74
-
75
-    <!-- <div class="cell clearfix">
76
-      <label class="title"><span class="name">单据类型</span> : </label>
77
-      <el-select
78
-        size="small"
79
-        v-model="order_type"
80
-        clearable
81
-        placeholder="单据类型"
82
-        @change="changeType"
83
-      >
84
-        <el-option
85
-          v-for="item in orderTypeArr"
86
-          :key="item.value"
87
-          :label="item.label"
88
-          :value="item.value"
89
-        >
90
-        </el-option>
91
-      </el-select>
92
-    </div> -->
93
-
94
-    <!-- <div class="cell clearfix">
95
-      <label class="title"><span class="name">其它</span> : </label>
96
-      <el-select
97
-        size="small"
98
-        v-model="manufacturer_id"
99
-        clearable
100
-        placeholder="厂商"
101
-        @change="changeManufacturer"
102
-      >
103
-        <el-option
104
-          v-for="item in manufacturer"
105
-          :key="item.id"
106
-          :label="item.manufacturer_name"
107
-          :value="item.id"
108
-        >
109
-        </el-option>
110
-      </el-select>
111
-    </div> -->
112
-
113
     <el-row :gutter="12" style="margin-top: 10px">
73
     <el-row :gutter="12" style="margin-top: 10px">
114
       <el-table
74
       <el-table
115
         :data="cancelStockDate"
75
         :data="cancelStockDate"
207
 
167
 
208
 export default {
168
 export default {
209
   name: "stockOutDetail",
169
   name: "stockOutDetail",
210
-
170
+  
211
   created() {
171
   created() {
212
     var nowDate = new Date();
172
     var nowDate = new Date();
213
     var nowYear = nowDate.getFullYear();
173
     var nowYear = nowDate.getFullYear();
229
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
189
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
230
       "-" +
190
       "-" +
231
       (nowDay < 10 ? "0" + nowDay : nowDay);
191
       (nowDay < 10 ? "0" + nowDay : nowDay);
192
+    var start_time =  window.sessionStorage.getItem('start')
193
+    var end_time =  window.sessionStorage.getItem('end')
194
+    if(start_time !=null){
195
+      this.start_time = start_time
196
+    }
197
+    if(end_time!=null){
198
+      this.end_time = end_time
199
+    }
200
+    window.sessionStorage.removeItem('start')
201
+    window.sessionStorage.removeItem('end')  
232
     this.GetCancelStock();
202
     this.GetCancelStock();
233
     this.GetConfigInfo();
203
     this.GetConfigInfo();
234
     this.fetchAllAdminUsers();
204
     this.fetchAllAdminUsers();
235
     this.goodUnit = this.$store.getters.good_unit
205
     this.goodUnit = this.$store.getters.good_unit
236
     var org_id = this.$store.getters.xt_user.org.id
206
     var org_id = this.$store.getters.xt_user.org.id
237
     this.orgId = org_id
207
     this.orgId = org_id
238
-    console.log("机构信息",org_id)
239
     this.getGoodDetailPrintList()
208
     this.getGoodDetailPrintList()
240
     
209
     
241
   },
210
   },
283
       this.order_type = val;
252
       this.order_type = val;
284
       this.GetCancelStock();
253
       this.GetCancelStock();
285
       this.getGoodDetailPrintList()
254
       this.getGoodDetailPrintList()
286
-      // this.getPrintStockGood()
255
+      
287
     },
256
     },
288
     changeManufacturer: function(val) {
257
     changeManufacturer: function(val) {
289
       this.manufacturer_id = val;
258
       this.manufacturer_id = val;
290
       this.GetCancelStock();
259
       this.GetCancelStock();
291
-      // this.getPrintStockGood()
292
-       this.getGoodDetailPrintList()
260
+      this.getGoodDetailPrintList()
293
     },
261
     },
294
     getTypeName: function(row) {
262
     getTypeName: function(row) {
295
       let name = "";
263
       let name = "";
382
         order_type: this.order_type,
350
         order_type: this.order_type,
383
         dealer: this.dealer_id
351
         dealer: this.dealer_id
384
       };
352
       };
385
-      console.log("parasm334444444",Params)
386
       this.cancelStockDate = [];
353
       this.cancelStockDate = [];
387
       getStockDetail(Params).then(response => {
354
       getStockDetail(Params).then(response => {
388
         if (response.data.state == 0) {
355
         if (response.data.state == 0) {
410
               warehouse_out_time: 0
377
               warehouse_out_time: 0
411
             }
378
             }
412
           });
379
           });
413
-
380
+          
414
         }
381
         }
415
       });
382
       });
416
     },
383
     },
439
     },
406
     },
440
     fetchAllAdminUsers() {
407
     fetchAllAdminUsers() {
441
       fetchAllAdminUsers().then(response => {
408
       fetchAllAdminUsers().then(response => {
442
-        console.log(response);
443
         if (response.data.state == 1) {
409
         if (response.data.state == 1) {
444
           this.adminUserOptions = response.data.data.users;
410
           this.adminUserOptions = response.data.data.users;
445
           var alen = this.adminUserOptions.length;
411
           var alen = this.adminUserOptions.length;
470
         this.$message.error("结束时间不能小于开始时间");
436
         this.$message.error("结束时间不能小于开始时间");
471
         this.start_time = "";
437
         this.start_time = "";
472
       } else {
438
       } else {
439
+        window.sessionStorage.removeItem('start')
440
+        this.cancelStockDate = []
473
         this.GetCancelStock();
441
         this.GetCancelStock();
474
         this.getGoodDetailPrintList()
442
         this.getGoodDetailPrintList()
475
        
443
        
481
         this.$message.error("结束时间不能小于开始时间");
449
         this.$message.error("结束时间不能小于开始时间");
482
         this.end_time = "";
450
         this.end_time = "";
483
       } else {
451
       } else {
452
+        window.sessionStorage.removeItem('end')
453
+        this.cancelStockDate = []
484
         this.GetCancelStock();
454
         this.GetCancelStock();
485
         this.getGoodDetailPrintList()
455
         this.getGoodDetailPrintList()
486
       }
456
       }
641
       }
611
       }
642
     },
612
     },
643
     PrintAction: function() {
613
     PrintAction: function() {
614
+      window.sessionStorage.setItem('start',this.start_time)
615
+      window.sessionStorage.setItem('end',this.end_time)
644
       this.$router.push({
616
       this.$router.push({
645
         path: "/stock/print",
617
         path: "/stock/print",
646
         query: {
618
         query: {
648
           start_time: this.start_time,
620
           start_time: this.start_time,
649
           end_time: this.end_time,
621
           end_time: this.end_time,
650
           limit:this.limit,
622
           limit:this.limit,
651
-          page:this.page
623
+          page:this.page,
652
         }
624
         }
653
       });
625
       });
654
     },
626
     },
658
         end_time:this.end_time,
630
         end_time:this.end_time,
659
         type:3,
631
         type:3,
660
       }
632
       }
661
-      console.log("params",params)
662
       getPrintStockGood(params).then(response=>{
633
       getPrintStockGood(params).then(response=>{
663
           if(response.data.state == 1){
634
           if(response.data.state == 1){
664
             var stockTotal =  response.data.data.stockTotal
635
             var stockTotal =  response.data.data.stockTotal
665
-            console.log("stockTotal",stockTotal)
636
+          
666
             this.stockTotal = stockTotal
637
             this.stockTotal = stockTotal
667
             var list =  response.data.data.list
638
             var list =  response.data.data.list
668
-            console.log("导出数据",list)
669
             this.tableList = []
639
             this.tableList = []
670
             for(let i=0;i<list.length;i++){
640
             for(let i=0;i<list.length;i++){
671
               if (list[i].query_warehouseout_info.length > 0) {
641
               if (list[i].query_warehouseout_info.length > 0) {
672
                 this.tableList.push(list[i])
642
                 this.tableList.push(list[i])
673
               }
643
               }
674
             }
644
             }
675
-           console.log("耗材出库表格数据",this.tableList)
676
           }
645
           }
677
       })
646
       })
678
     },
647
     },
767
       },
736
       },
768
 
737
 
769
     exportList(){
738
     exportList(){
770
-       console.log("表格",this.tableOut)
771
        for(let i=0;i<this.tableOut.length;i++){
739
        for(let i=0;i<this.tableOut.length;i++){
772
         this.tableOut[i].index = i+1
740
         this.tableOut[i].index = i+1
773
         this.tableOut[i].good_name = this.tableOut[i].good_name
741
         this.tableOut[i].good_name = this.tableOut[i].good_name
781
        const filterVal = ['index','good_name', 'specification_name', 'packing_unit','out_count','packing_price','total_price','remark']
749
        const filterVal = ['index','good_name', 'specification_name', 'packing_unit','out_count','packing_price','total_price','remark']
782
 
750
 
783
        const data = this.formatJson(filterVal, this.tableOut)
751
        const data = this.formatJson(filterVal, this.tableOut)
784
-       console.log("data",data)
785
        
752
        
786
         excel.export_json_to_excel({
753
         excel.export_json_to_excel({
787
            header: tHeader,
754
            header: tHeader,
813
        const filterVal = ['index','warehouse_out_order_number', 'good_type_name', 'good_name','specification_name','time','user_name','price','out_count','total_price']
780
        const filterVal = ['index','warehouse_out_order_number', 'good_type_name', 'good_name','specification_name','time','user_name','price','out_count','total_price']
814
 
781
 
815
        const data = this.formatJson(filterVal, this.tableDataList)
782
        const data = this.formatJson(filterVal, this.tableDataList)
816
-       console.log("data",data)
783
+ 
817
       
784
       
818
         excel.export_json_to_excel({
785
         excel.export_json_to_excel({
819
            header: tHeader,
786
            header: tHeader,
849
           end_time:this.end_time,
816
           end_time:this.end_time,
850
           type:2,
817
           type:2,
851
         }
818
         }
819
+      this.tableOut = []
852
       getGoodDetailPrintList(params).then(response=>{
820
       getGoodDetailPrintList(params).then(response=>{
853
         if(response.data.state == 1){
821
         if(response.data.state == 1){
854
           var list = response.data.data.list
822
           var list = response.data.data.list
855
-          console.log("出库单详单",list)
856
           this.tableOut = list
823
           this.tableOut = list
857
           var stockTotal = response.data.data.stockTotal
824
           var stockTotal = response.data.data.stockTotal
858
           this.stockTotal = stockTotal
825
           this.stockTotal = stockTotal

+ 13 - 7
src/xt_pages/stock/drugs/components/drugCancelDetail.vue View File

228
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
228
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
229
       "-" +
229
       "-" +
230
       (nowDay < 10 ? "0" + nowDay : nowDay);
230
       (nowDay < 10 ? "0" + nowDay : nowDay);
231
-  
231
+    
232
+    var start = window.sessionStorage.getItem('start_cancel_time')
233
+    if(start!=null){
234
+     this.start_time = start
235
+    }
236
+    if(end!=null){
237
+      var end =  window.sessionStorage.getItem('end_cancel_time')
238
+      this.end_time = end
239
+    }
240
+    
232
     this.GetConfigInfo();
241
     this.GetConfigInfo();
233
     this.fetchAllAdminUsers();
242
     this.fetchAllAdminUsers();
234
     this.getlist()
243
     this.getlist()
268
   },
277
   },
269
   methods: {
278
   methods: {
270
     PrintAction() {
279
     PrintAction() {
280
+        window.sessionStorage.setItem('start_cancel_time',this.start_time)
281
+        window.sessionStorage.setItem('end_cancel_time',this.end_time)
271
         this.$router.push("/stock/drugcanceldetaiprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
282
         this.$router.push("/stock/drugcanceldetaiprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
272
     },
283
     },
273
     changeType: function(val) {
284
     changeType: function(val) {
375
          if(response.data.state == 1){
386
          if(response.data.state == 1){
376
            var order =  response.data.data.order
387
            var order =  response.data.data.order
377
            var list = response.data.data.orderPrint
388
            var list = response.data.data.orderPrint
378
-           console.log("lsit232332",list)
379
            for(let i=0;i<list.length;i++){
389
            for(let i=0;i<list.length;i++){
380
              list[i].child = []
390
              list[i].child = []
381
             for(let j=0;j<order.length;j++){
391
             for(let j=0;j<order.length;j++){
385
             }
395
             }
386
            }
396
            }
387
            this.tableDataList = list
397
            this.tableDataList = list
388
-           console.log("hh2323223",this.tableDataList)
389
            var total_price = 0
398
            var total_price = 0
390
           for(let i=0;i<order.length;i++){
399
           for(let i=0;i<order.length;i++){
391
              order[i].specification_name  = order[i].dose + order[i].dose_unit + "*" + order[i].min_number +  order[i].min_unit + "/" + order[i].max_unit
400
              order[i].specification_name  = order[i].dose + order[i].dose_unit + "*" + order[i].min_number +  order[i].min_unit + "/" + order[i].max_unit
448
         const filterVal = ['index','order_number','drug_name', 'unit', 'drug_type','ctime','user_name','total_count','price','total_price']
457
         const filterVal = ['index','order_number','drug_name', 'unit', 'drug_type','ctime','user_name','total_count','price','total_price']
449
         
458
         
450
         const data = this.formatJson(filterVal, this.tableDataList)
459
         const data = this.formatJson(filterVal, this.tableDataList)
451
-        console.log("data",data)
452
-        console.log("表格玩2323",this.tableDataList)
453
-        
460
+
454
         excel.export_json_to_excel({
461
         excel.export_json_to_excel({
455
             header: tHeader,
462
             header: tHeader,
456
             data,
463
             data,
492
        const filterVal = ['index','order_number','drugtype','drug_name', 'unit', 'time','user_name','price','count','total_price']
499
        const filterVal = ['index','order_number','drugtype','drug_name', 'unit', 'time','user_name','price','count','total_price']
493
        
500
        
494
        const data = this.formatJson(filterVal, this.tableList)
501
        const data = this.formatJson(filterVal, this.tableList)
495
-       console.log("data",data)
496
        
502
        
497
        excel.export_json_to_excel({
503
        excel.export_json_to_excel({
498
            header: tHeader,
504
            header: tHeader,

+ 11 - 23
src/xt_pages/stock/drugs/components/drugInOrder.vue View File

149
 
149
 
150
         <el-table-column label="规格型号" align="center">
150
         <el-table-column label="规格型号" align="center">
151
           <template slot-scope="scope">
151
           <template slot-scope="scope">
152
-           <!-- {{scope.row.drug_spec}} -->
153
            {{scope.row.specification_name}}
152
            {{scope.row.specification_name}}
154
-           <!-- {{scope.row.dose}}{{scope.row.dose_unit}} * {{scope.row.min_number}}{{scope.row.min_unit}} / {{scope.row.max_unit}} -->
155
           </template>
153
           </template>
156
         </el-table-column>
154
         </el-table-column>
157
 
155
 
158
-        <!-- <el-table-column label="单据类型" align="center">
159
-          <template slot-scope="scope">
160
-            <span v-if="scope.row.type == 1">药品入库单</span>
161
-            <span v-if="scope.row.type == 2">其他</span>
162
-          </template>
163
-        </el-table-column> -->
164
-
165
         <el-table-column label="操作时间" align="center">
156
         <el-table-column label="操作时间" align="center">
166
           <template slot-scope="scope">
157
           <template slot-scope="scope">
167
             <span>{{getTime(scope.row.ctime)}}</span>
158
             <span>{{getTime(scope.row.ctime)}}</span>
233
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
224
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
234
       "-" +
225
       "-" +
235
       (nowDay < 10 ? "0" + nowDay : nowDay);
226
       (nowDay < 10 ? "0" + nowDay : nowDay);
227
+     var start = window.sessionStorage.getItem('start_in_time')
228
+     this.start_time = start
229
+     var end =  window.sessionStorage.getItem('end_in_time')
230
+     this.end_time = end
236
     this.GetConfigInfo()
231
     this.GetConfigInfo()
237
     this.fetchAllAdminUsers()
232
     this.fetchAllAdminUsers()
238
     //获取入库单数据
233
     //获取入库单数据
305
    
300
    
306
     fetchAllAdminUsers() {
301
     fetchAllAdminUsers() {
307
       fetchAllAdminUsers().then(response => {
302
       fetchAllAdminUsers().then(response => {
308
-        console.log(response);
309
         if (response.data.state == 1) {
303
         if (response.data.state == 1) {
310
           this.adminUserOptions = response.data.data.users;
304
           this.adminUserOptions = response.data.data.users;
311
-          console.log("医生护士",this.adminUserOptions)
312
         }
305
         }
313
       });
306
       });
314
     },
307
     },
380
       getDrugIndetail(params).then(response=>{
373
       getDrugIndetail(params).then(response=>{
381
         if(response.data.state == 1){
374
         if(response.data.state == 1){
382
           var drugInOrder = response.data.data.detail
375
           var drugInOrder = response.data.data.detail
383
-          console.log("drug3434444",drugInOrder)
384
           var total_price = 0
376
           var total_price = 0
385
           for(let i=0;i<drugInOrder.length;i++){
377
           for(let i=0;i<drugInOrder.length;i++){
386
              drugInOrder[i].specification_name  = drugInOrder[i].dose + drugInOrder[i].dose_unit + "*" + drugInOrder[i].min_number +  drugInOrder[i].min_unit + "/" + drugInOrder[i].max_unit
378
              drugInOrder[i].specification_name  = drugInOrder[i].dose + drugInOrder[i].dose_unit + "*" + drugInOrder[i].min_number +  drugInOrder[i].min_unit + "/" + drugInOrder[i].max_unit
394
             ctime:"",
386
             ctime:"",
395
             total_price:total_price.toFixed(2),
387
             total_price:total_price.toFixed(2),
396
           });
388
           });
397
-          console.log("hh23232323323223232332",drugInOrder)
398
           this.cancelStockDate = drugInOrder
389
           this.cancelStockDate = drugInOrder
399
            let objInfo = {}
390
            let objInfo = {}
400
           drugInOrder.forEach((item,index)=>{
391
           drugInOrder.forEach((item,index)=>{
418
              }
409
              }
419
           })
410
           })
420
           let list = Object.values(objInfo);
411
           let list = Object.values(objInfo);
421
-          console.log("list22333333",list)
422
          for(let i=0;i<drugInOrder.length;i++){
412
          for(let i=0;i<drugInOrder.length;i++){
423
             list.map(item=>{
413
             list.map(item=>{
424
               if(drugInOrder[i].drug_id == item.drug_id){
414
               if(drugInOrder[i].drug_id == item.drug_id){
426
               }
416
               }
427
             })
417
             })
428
           }
418
           }
429
-          console.log("list2334444",list)
430
           for(let i=0;i<list.length;i++){
419
           for(let i=0;i<list.length;i++){
431
             for(let j=0;j<list[i].child.length;j++){
420
             for(let j=0;j<list[i].child.length;j++){
432
               if(list[i].child[j].warehousing_count!=null || list[i].child[j].warehousing_count != "" || list[i].child[j].warehousing_count!=0){
421
               if(list[i].child[j].warehousing_count!=null || list[i].child[j].warehousing_count != "" || list[i].child[j].warehousing_count!=0){
438
           for(let i=0;i<list.length;i++){
427
           for(let i=0;i<list.length;i++){
439
             list[i].total_price = list[i].warehousing_count * list[i].price  
428
             list[i].total_price = list[i].warehousing_count * list[i].price  
440
           }
429
           }
441
-          console.log("list666666666",list)
442
          
430
          
443
           this.tableList = list
431
           this.tableList = list
444
           var total = response.data.data.total
432
           var total = response.data.data.total
452
         end_time:this.end_time,
440
         end_time:this.end_time,
453
         order_type:this.order_type,
441
         order_type:this.order_type,
454
       }
442
       }
455
-      console.log("params2222",params)
443
+
456
      getDrugWarehouseInfoPrint(params).then(response=>{
444
      getDrugWarehouseInfoPrint(params).then(response=>{
457
           if(response.data.state == 1){
445
           if(response.data.state == 1){
458
             var list = response.data.data.list
446
             var list = response.data.data.list
459
-            console.log("入库单详情",list)
447
+          
460
             this.tabelePrintList = list
448
             this.tabelePrintList = list
461
           }   
449
           }   
462
       })
450
       })
463
     },
451
     },
464
     PrintAction(){
452
     PrintAction(){
453
+      window.sessionStorage.setItem('start_in_time',this.start_time)
454
+      window.sessionStorage.setItem('end_in_time',this.end_time)
465
       this.$router.push("/stock/drugprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
455
       this.$router.push("/stock/drugprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
466
     },
456
     },
467
     select(){
457
     select(){
487
        import('@/vendor/Export2Excel').then(excel => {
477
        import('@/vendor/Export2Excel').then(excel => {
488
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','总价','备注']
478
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','总价','备注']
489
        const filterVal = ['index','drug_name', 'unit', 'min_unit','warehousing_count','price','total_price','remark']
479
        const filterVal = ['index','drug_name', 'unit', 'min_unit','warehousing_count','price','total_price','remark']
490
-       console.log("表格22222222",this.tabelePrintList)
491
        let obj = {'index':'合计','total_price':0}
480
        let obj = {'index':'合计','total_price':0}
492
        for(let i=0;i<this.tabelePrintList.length;i++){
481
        for(let i=0;i<this.tabelePrintList.length;i++){
493
          obj.total_price += this.tabelePrintList[i].price * this.tabelePrintList[i].warehousing_count
482
          obj.total_price += this.tabelePrintList[i].price * this.tabelePrintList[i].warehousing_count
498
        obj.total_price = obj.total_price.toFixed(2)
487
        obj.total_price = obj.total_price.toFixed(2)
499
        this.tabelePrintList.push(obj)
488
        this.tabelePrintList.push(obj)
500
        const data = this.formatJson(filterVal, this.tabelePrintList)
489
        const data = this.formatJson(filterVal, this.tabelePrintList)
501
-       console.log("data",data)
502
        
490
        
503
         excel.export_json_to_excel({
491
         excel.export_json_to_excel({
504
            header: tHeader,
492
            header: tHeader,
516
        import('@/vendor/Export2Excel').then(excel => {
504
        import('@/vendor/Export2Excel').then(excel => {
517
        const tHeader = ['序号','单据编号', '药品类型', '药品名称','规格型号','操作时间','制单人','进货价','数量','总价']
505
        const tHeader = ['序号','单据编号', '药品类型', '药品名称','规格型号','操作时间','制单人','进货价','数量','总价']
518
        const filterVal = ['index','warehousing_order','drugtype','drug_name', 'specification_name','time','user_name','price','warehousing_count','total']
506
        const filterVal = ['index','warehousing_order','drugtype','drug_name', 'specification_name','time','user_name','price','warehousing_count','total']
519
-       console.log(" ba323223323223",this.cancelStockDate.length)
507
+
520
        var newArr = []
508
        var newArr = []
521
        newArr = this.cancelStockDate
509
        newArr = this.cancelStockDate
522
        let obj = {'index':'合计','total':0}
510
        let obj = {'index':'合计','total':0}
543
        obj.total = obj.total.toFixed(2)
531
        obj.total = obj.total.toFixed(2)
544
        newArr.push(obj)
532
        newArr.push(obj)
545
        const data = this.formatJson(filterVal, newArr)
533
        const data = this.formatJson(filterVal, newArr)
546
-       console.log("data",data)
547
        
534
        
548
         excel.export_json_to_excel({
535
         excel.export_json_to_excel({
549
            header: tHeader,
536
            header: tHeader,
553
           this.downloadLoading = false
540
           this.downloadLoading = false
554
         })
541
         })
555
 
542
 
556
-     }
543
+     },
544
+    
557
   }
545
   }
558
 };
546
 };
559
 </script>
547
 </script>

+ 17 - 0
src/xt_pages/stock/drugs/components/drugOutDetail.vue View File

232
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
232
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
233
       "-" +
233
       "-" +
234
       (nowDay < 10 ? "0" + nowDay : nowDay);
234
       (nowDay < 10 ? "0" + nowDay : nowDay);
235
+    var start = window.sessionStorage.getItem('start_out_time')
236
+    console.log("start",start)
237
+    if(start!=null){
238
+       this.start_time = start   
239
+    }
240
+    if(end!=null){
241
+      var end =  window.sessionStorage.getItem('end_out_time')
242
+      this.end_time = end
243
+    }
244
+    
235
     this.getDrugOutOrderPrint()
245
     this.getDrugOutOrderPrint()
236
     this.GetConfigInfo();
246
     this.GetConfigInfo();
237
     this.fetchAllAdminUsers();
247
     this.fetchAllAdminUsers();
296
     },
306
     },
297
     search: function() {
307
     search: function() {
298
       this.getlist()
308
       this.getlist()
309
+      this.getDrugOutOrderPrint()
299
     },
310
     },
300
 
311
 
301
     getXuserName(id) {
312
     getXuserName(id) {
347
         this.start_time = "";
358
         this.start_time = "";
348
       } else {
359
       } else {
349
          this.getlist()
360
          this.getlist()
361
+         this.getDrugOutOrderPrint()
350
       }
362
       }
351
     },
363
     },
352
     endTimeChange(val) {
364
     endTimeChange(val) {
356
         this.end_time = "";
368
         this.end_time = "";
357
       } else {
369
       } else {
358
         this.getlist()
370
         this.getlist()
371
+        this.getDrugOutOrderPrint()
359
       }
372
       }
360
     },
373
     },
361
     getTimestamp(time) {
374
     getTimestamp(time) {
387
       }
400
       }
388
     },
401
     },
389
     PrintAction: function() {
402
     PrintAction: function() {
403
+       window.sessionStorage.setItem('start_out_time',this.start_time)
404
+       window.sessionStorage.setItem('end_out_time',this.end_time)
390
        this.$router.push("/stock/drugoutorderprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+2+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
405
        this.$router.push("/stock/drugoutorderprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+2+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
391
     },
406
     },
392
     getlist(){
407
     getlist(){
400
          limit:this.limit,
415
          limit:this.limit,
401
       }  
416
       }  
402
       getDrugOutDetail(params).then(response=>{
417
       getDrugOutDetail(params).then(response=>{
418
+        this.tableData = []
419
+        this.tableList = []
403
         if(response.data.state == 1){
420
         if(response.data.state == 1){
404
           var order = response.data.data.order
421
           var order = response.data.data.order
405
           console.log("出库数据",order)
422
           console.log("出库数据",order)

+ 13 - 5
src/xt_pages/stock/drugs/drugCancelDetailPrint.vue View File

22
               <td style="line-height: 50px" width="50">单位</td>
22
               <td style="line-height: 50px" width="50">单位</td>
23
               <td style="line-height: 50px" width="80">数量</td>
23
               <td style="line-height: 50px" width="80">数量</td>
24
               <td style="line-height:50px" width="80">单价</td>
24
               <td style="line-height:50px" width="80">单价</td>
25
-              <td style="line-height: 50px" width="">备 注</td>
25
+              <td style="line-height:50px" width="80">总价</td>
26
+              <td style="line-height: 50px" width="80">备 注</td>
26
             </tr>
27
             </tr>
27
 
28
 
28
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
29
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
46
               <td style="line-height:50px">
47
               <td style="line-height:50px">
47
                   {{item.price}}
48
                   {{item.price}}
48
               </td>
49
               </td>
49
-             
50
+              <td style="line-height:50px">
51
+                  {{(item.price * item.count).toFixed(2)}}
52
+              </td>
50
               <td style="line-height: 50px">
53
               <td style="line-height: 50px">
51
                  {{item.remark}}
54
                  {{item.remark}}
52
               </td>
55
               </td>
56
           <table class="print-table" border="1" >
59
           <table class="print-table" border="1" >
57
             <tbody>
60
             <tbody>
58
             <tr>
61
             <tr>
59
-              <td width="633" style="line-height: 50px">合计</td>
60
-              <td width="80" style="line-height: 50px">{{getTotal().toFixed(2)}}</td>
61
-              <td></td>
62
+              <td style="line-height: 50px" width="50">合计</td>
63
+              <td style="line-height: 50px" width="250"></td>
64
+              <td style="line-height: 50px" width="250"></td>
65
+              <td style="line-height: 50px" width="50"></td>
66
+              <td style="line-height: 50px" width="80"></td>
67
+              <td style="line-height: 50px" width="80"></td>
68
+              <td style="line-height:50px" width="80">{{getTotal().toFixed(2)}}</td>
69
+              <td style="line-height: 50px" width="80"></td>
62
             </tr>
70
             </tr>
63
 
71
 
64
             </tbody>
72
             </tbody>

+ 12 - 1
src/xt_pages/stock/drugs/drugIndex.vue View File

5
     </div>
5
     </div>
6
     <div class="app-container">
6
     <div class="app-container">
7
       <div class="service-box">
7
       <div class="service-box">
8
-        <el-tabs v-model="activeName">
8
+        <el-tabs v-model="activeName" @tab-click="handleClick"> 
9
           <el-tab-pane label="入库明细" name="first">
9
           <el-tab-pane label="入库明细" name="first">
10
             <drug-in-order></drug-in-order>
10
             <drug-in-order></drug-in-order>
11
           </el-tab-pane>
11
           </el-tab-pane>
48
 
48
 
49
       }
49
       }
50
     },
50
     },
51
+    methods: {
52
+      handleClick(tab, event) {
53
+        window.sessionStorage.setItem('drug_active',this.activeName)
54
+      }
55
+    },
56
+    created(){
57
+      var active_name =  window.sessionStorage.getItem('drug_active')
58
+      if(active_name!=null){
59
+        this.activeName = active_name
60
+      }
61
+    }
51
 }
62
 }
52
 </script>
63
 </script>

+ 19 - 14
src/xt_pages/stock/drugs/drugOutOrderPrint.vue View File

23
               <td style="line-height: 50px" width="80">数量</td>
23
               <td style="line-height: 50px" width="80">数量</td>
24
               <td style="line-height:50px" width="80">单价</td>
24
               <td style="line-height:50px" width="80">单价</td>
25
               <td style="line-height:50px" width="80">总价</td>
25
               <td style="line-height:50px" width="80">总价</td>
26
-              <td style="line-height: 50px" width="">备 注</td>
26
+              <td style="line-height: 50px" width="80">备 注</td>
27
             </tr>
27
             </tr>
28
 
28
 
29
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
29
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
51
               <td style="line-height:50px">
51
               <td style="line-height:50px">
52
                   <!-- {{(item.count * getPrice(item.drug_id)).toFixed(2)}} -->
52
                   <!-- {{(item.count * getPrice(item.drug_id)).toFixed(2)}} -->
53
                   <!-- {{item.count*item.price}} -->
53
                   <!-- {{item.count*item.price}} -->
54
-                <span ></span>   {{getTotalPrice(item.child,item.max_unit,item.min_number,item.min_price)}}
54
+                <span>{{getTotalPrice(item.child,item.max_unit,item.min_number,item.min_price)}}</span>
55
               </td>
55
               </td>
56
               <td style="line-height: 50px">
56
               <td style="line-height: 50px">
57
                  {{item.remark}}
57
                  {{item.remark}}
208
             })
208
             })
209
           }
209
           }
210
           
210
           
211
-          console.log("list22333333",list)
212
-            for(let i=0;i<list.length;i++){
211
+          console.log("药品出库明细",list)
212
+          for(let i=0;i<list.length;i++){
213
             for(let j=0;j<list[i].child.length;j++){
213
             for(let j=0;j<list[i].child.length;j++){
214
               if(list[i].child[j].count!=null || list[i].child[j].count != "" || list[i].child[j].count!=0){
214
               if(list[i].child[j].count!=null || list[i].child[j].count != "" || list[i].child[j].count!=0){
215
                 list[i].count += list[i].child[j].count
215
                 list[i].count += list[i].child[j].count
216
               }
216
               }
217
             }
217
             }
218
           }
218
           }
219
-          console.log("list666666666",list)
219
+          console.log("药品出库明细",list)
220
           this.cancelStockDate = list
220
           this.cancelStockDate = list
221
         
221
         
222
         }
222
         }
310
         })
310
         })
311
       },
311
       },
312
       getCount(arr,max_unit,min_unit,min_number){
312
       getCount(arr,max_unit,min_unit,min_number){
313
+        console.log("arr2332332233232",arr)
313
         var total = 0
314
         var total = 0
314
         var str = ""
315
         var str = ""
315
         var min_str = ""
316
         var min_str = ""
316
         for(let i=0;i<arr.length;i++){
317
         for(let i=0;i<arr.length;i++){
318
+          arr[i].total_count = 0
317
           if(arr[i].count_unit == max_unit){
319
           if(arr[i].count_unit == max_unit){
318
-            arr[i].count = arr[i].count * min_number
320
+            arr[i].total_count = parseInt(arr[i].count) * min_number
321
+          }else{
322
+            arr[i].total_count = parseInt(arr[i].count)
319
           }
323
           }
324
+
320
         }
325
         }
321
         for(let i=0;i<arr.length;i++){
326
         for(let i=0;i<arr.length;i++){
322
-          total+= arr[i].count
327
+          total+= parseInt(arr[i].total_count)
323
         }
328
         }
324
-
329
+       console.log("total233223232323",total,min_number)
325
        if(total<min_number){
330
        if(total<min_number){
326
            str = ""
331
            str = ""
327
            min_str = total + min_unit
332
            min_str = total + min_unit
337
         return str + min_str
342
         return str + min_str
338
       },
343
       },
339
       getTotalPrice(arr,max_unit,min_number,min_price){
344
       getTotalPrice(arr,max_unit,min_number,min_price){
345
+        
340
         var total = 0
346
         var total = 0
341
         for(let i=0;i<arr.length;i++){
347
         for(let i=0;i<arr.length;i++){
348
+          arr[i].all_count = 0
342
           if(arr[i].count_unit == max_unit){
349
           if(arr[i].count_unit == max_unit){
343
-            arr[i].count = arr[i].count * min_number
350
+            arr[i].all_count = parseInt(arr[i].count) * min_number
344
           }else{
351
           }else{
345
-            arr[i].count = arr[i].count
352
+            arr[i].all_count = parseInt(arr[i].count)
346
           }
353
           }
347
         }  
354
         }  
348
         for(let j=0;j<arr.length;j++){
355
         for(let j=0;j<arr.length;j++){
349
-          total +=arr[j].count
356
+          total += parseInt(arr[j].all_count)
350
         }
357
         }
351
-       
358
+        console.log("totla",total)
352
         return (total*min_price).toFixed(2)
359
         return (total*min_price).toFixed(2)
353
       }
360
       }
354
     },
361
     },
355
     created() {
362
     created() {
356
       var xtuser = this.$store.getters.xt_user
363
       var xtuser = this.$store.getters.xt_user
357
       this.orgname = xtuser.org.org_name
364
       this.orgname = xtuser.org.org_name
358
-      // this.getlist()
359
-      // this.getBaseDrugLibList()
360
       this.getDrugOutOrderPrint()
365
       this.getDrugOutOrderPrint()
361
     }
366
     }
362
 
367
 

+ 9 - 4
src/xt_pages/stock/drugs/drugPrint.vue View File

23
               <td style="line-height: 50px" width="80">数量</td>
23
               <td style="line-height: 50px" width="80">数量</td>
24
               <td style="line-height:50px" width="80">单价</td>
24
               <td style="line-height:50px" width="80">单价</td>
25
               <td style="line-height:50px" width="80">总价</td>
25
               <td style="line-height:50px" width="80">总价</td>
26
-              <td style="line-height: 50px" width="">备 注</td>
26
+              <td style="line-height: 50px" width="80">备 注</td>
27
             </tr>
27
             </tr>
28
 
28
 
29
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
29
             <tr v-for="(item,index) in cancelStockDate" :key="item.id">
59
           <table class="print-table" border="1">
59
           <table class="print-table" border="1">
60
             <tbody>
60
             <tbody>
61
             <tr>
61
             <tr>
62
-              <td width="633" style="line-height: 50px">合计</td>
63
-              <td width="80" style="line-height: 50px">{{getTotal().toFixed(2)}}</td>
64
-              <td></td>
62
+              <td style="line-height: 50px" width="50">合计</td>
63
+              <td style="line-height: 50px" width="250"></td>
64
+              <td style="line-height: 50px" width="250"></td>
65
+              <td style="line-height: 50px" width="50"></td>
66
+              <td style="line-height: 50px" width="80"></td>
67
+              <td style="line-height: 50px" width="80"></td>
68
+              <td style="line-height: 50px" width="80">{{getTotal().toFixed(2)}}</td>
69
+              <td style="line-height: 50px" width="80"></td>
65
             </tr>
70
             </tr>
66
 
71
 
67
             </tbody>
72
             </tbody>

+ 14 - 8
src/xt_pages/stock/drugs/drugStockOutOrder.vue View File

665
       this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys})
665
       this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys})
666
     },
666
     },
667
     handleSearch(val){
667
     handleSearch(val){
668
-       console.log("val23233232",val)
668
+      //  console.log("val23233232",val)
669
        this.getInitializtion()
669
        this.getInitializtion()
670
        this.getSinleOrderDetail(val.id,val.warehouse_out_time,val.is_sys)
670
        this.getSinleOrderDetail(val.id,val.warehouse_out_time,val.is_sys)
671
        this.list = []
671
        this.list = []
948
           this.tableShow = true
948
           this.tableShow = true
949
           this.tableList = []
949
           this.tableList = []
950
           var list =  response.data.data.list
950
           var list =  response.data.data.list
951
-          console.log("list",list)
951
+          // console.log("list",list)
952
          this.manufacturerList = response.data.data.manufacturerList
952
          this.manufacturerList = response.data.data.manufacturerList
953
          this.dealerList = response.data.data.dealerList
953
          this.dealerList = response.data.data.dealerList
954
          var drugFlowList = response.data.data.drugFlowList
954
          var drugFlowList = response.data.data.drugFlowList
997
        drug_id:val.drug_id,
997
        drug_id:val.drug_id,
998
        record_time:val.sys_record_time,
998
        record_time:val.sys_record_time,
999
      }
999
      }
1000
-     console.log("使用明细",params)
1000
+    //  console.log("使用明细",params)
1001
      getAutoDrugDetail(params).then(response=>{
1001
      getAutoDrugDetail(params).then(response=>{
1002
        if(response.data.state == 1){
1002
        if(response.data.state == 1){
1003
         
1003
         
1004
         this.userList = response.data.data.list
1004
         this.userList = response.data.data.list
1005
-        console.log("自动出库数据",this.userList)
1005
+        // console.log("自动出库数据",this.userList)
1006
         if(val.is_sys == 1){
1006
         if(val.is_sys == 1){
1007
         
1007
         
1008
           this.drugDialogVisible = true
1008
           this.drugDialogVisible = true
1012
           this.drugDialogVisibleTwo = true
1012
           this.drugDialogVisibleTwo = true
1013
         }
1013
         }
1014
          var userListOne = response.data.data.outList
1014
          var userListOne = response.data.data.outList
1015
-         console.log("手动出库2232332",userListOne)
1015
+        //  console.log("手动出库2232332",userListOne)
1016
          this.userListOne = userListOne
1016
          this.userListOne = userListOne
1017
          var  batchNumber = response.data.data.batchNumber
1017
          var  batchNumber = response.data.data.batchNumber
1018
-         console.log("出库详情",batchNumber)
1018
+        //  console.log("出库详情",batchNumber)
1019
          this.batchNumberList = batchNumber
1019
          this.batchNumberList = batchNumber
1020
        }
1020
        }
1021
      })
1021
      })
1185
           return
1185
           return
1186
         }
1186
         }
1187
         for(let i=0;i<this.exportList.length;i++){
1187
         for(let i=0;i<this.exportList.length;i++){
1188
+          if(this.exportList[i].dealer == 0){
1189
+            this.exportList[i].dealer = ""
1190
+          }
1191
+          if(this.exportList[i].manufacturer == 0){
1192
+             this.exportList[i].manufacturer = ""
1193
+          }
1188
           this.exportList[i].unit = this.exportList[i].dose + this.exportList[i].dose_unit + "*" + this.exportList[i].min_number + this.exportList[i].min_unit + "/"+this.exportList[i].max_unit
1194
           this.exportList[i].unit = this.exportList[i].dose + this.exportList[i].dose_unit + "*" + this.exportList[i].min_number + this.exportList[i].min_unit + "/"+this.exportList[i].max_unit
1189
 
1195
 
1190
           this.exportList[i].total_price = (this.exportList[i].count * this.exportList[i].price).toFixed(2)
1196
           this.exportList[i].total_price = (this.exportList[i].count * this.exportList[i].price).toFixed(2)
1215
         const tHeader = ['药品名称','药品类型','规格&单位', '批号','出库数量','出货单价','拆零零售价','总价','生产厂家','生产日期','有效日期','经销商','批准文号','备注']
1221
         const tHeader = ['药品名称','药品类型','规格&单位', '批号','出库数量','出货单价','拆零零售价','总价','生产厂家','生产日期','有效日期','经销商','批准文号','备注']
1216
         const filterVal = ['drug_name','drug_type','unit','batch_number', 'count','price','min_price','total_price','manufacturer','product_date','expiry_date','dealer','number','remark']
1222
         const filterVal = ['drug_name','drug_type','unit','batch_number', 'count','price','min_price','total_price','manufacturer','product_date','expiry_date','dealer','number','remark']
1217
 
1223
 
1218
-        console.log("table",this.exportList)
1224
+        // console.log("table",this.exportList)
1219
          
1225
          
1220
         const data = this.formatJson(filterVal, this.exportList)
1226
         const data = this.formatJson(filterVal, this.exportList)
1221
         excel.export_json_to_excel({
1227
         excel.export_json_to_excel({
1238
           }
1244
           }
1239
         }
1245
         }
1240
         all_price = total * price
1246
         all_price = total * price
1241
-        console.log("total",total,min_price)
1247
+        // console.log("total",total,min_price)
1242
         return  all_price
1248
         return  all_price
1243
       },
1249
       },
1244
   }
1250
   }

+ 4 - 4
src/xt_pages/stock/drugs/drugStockOutOrderDetailPrint.vue View File

22
               <td style="line-height: 50px" width="80">出货数量</td>
22
               <td style="line-height: 50px" width="80">出货数量</td>
23
               <td style="line-height: 50px" width="50">单位</td>
23
               <td style="line-height: 50px" width="50">单位</td>
24
               <td style="line-height:50px" width="80">出库价格</td>
24
               <td style="line-height:50px" width="80">出库价格</td>
25
-              <td style="line-height: 50px" width="">总价</td>
26
-              <td style="line-height: 50px" width="">批号</td>
27
-              <td style="line-height: 50px" width="">生产日期</td>
28
-              <td style="line-height: 50px" width="">有效日期</td>
25
+              <td style="line-height: 50px" width="80">总价</td>
26
+              <td style="line-height: 50px" width="80">批号</td>
27
+              <td style="line-height: 50px" width="80">生产日期</td>
28
+              <td style="line-height: 50px" width="80">有效日期</td>
29
             </tr>
29
             </tr>
30
 
30
 
31
             <tr v-for="(item,i) in it.child" :key="i">
31
             <tr v-for="(item,i) in it.child" :key="i">

+ 16 - 4
src/xt_pages/stock/stockDamaged.vue View File

472
 <script>
472
 <script>
473
 import BreadCrumb from "../components/bread-crumb";
473
 import BreadCrumb from "../components/bread-crumb";
474
 import { uParseTime } from '@/utils/tools'
474
 import { uParseTime } from '@/utils/tools'
475
-import { postSearchGoodWarehouseList,saveReportStock,getReportStockList,SaveCheckedDamage,getStockDamageDetail,modifyPrice,deleteStockDamage,getStockBatchNumber,getGoodWarehouseList} from "@/api/stock"
475
+import { postSearchGoodWarehouseList,saveReportStock,getReportStockList,SaveCheckedDamage,getStockDamageDetail,modifyPrice,deleteStockDamage,getStockBatchNumber,getGoodWarehouseList,getWarehouseTotal} from "@/api/stock"
476
 export default {
476
 export default {
477
     name: "stockModifyPrice",
477
     name: "stockModifyPrice",
478
     components:{
478
     components:{
598
         handleSelect(val){
598
         handleSelect(val){
599
           //获取当前耗材的批号
599
           //获取当前耗材的批号
600
           this.getStockBatchNumber(val.good_id)
600
           this.getStockBatchNumber(val.good_id)
601
-          this.getGoodWarehouseList(val.good_id)
602
           this.form.id = val.id
601
           this.form.id = val.id
603
           this.form.good_id = val.good_id,
602
           this.form.good_id = val.good_id,
604
           this.form.good_name = val.good_name
603
           this.form.good_name = val.good_name
615
           this.form.remark = val.remark
614
           this.form.remark = val.remark
616
           this.form.buy_price = val.buy_price
615
           this.form.buy_price = val.buy_price
617
           this.form.warehousing_unit = val.packing_unit  
616
           this.form.warehousing_unit = val.packing_unit  
618
-          this.form.total = val.total
619
           this.form.new_price = val.new_price
617
           this.form.new_price = val.new_price
620
           this.form.expiry_date = val.expiry_date
618
           this.form.expiry_date = val.expiry_date
621
           this.form.product_date = val.product_date
619
           this.form.product_date = val.product_date
977
      },
975
      },
978
      chageNumberlist(val){
976
      chageNumberlist(val){
979
        console.log("val2323322",val)
977
        console.log("val2323322",val)
978
+       
980
        for(let i=0;i<this.numberList.length;i++){
979
        for(let i=0;i<this.numberList.length;i++){
981
          if(this.numberList[i].number == val){
980
          if(this.numberList[i].number == val){
982
             this.form.warehousing_info_id = this.numberList[i].id
981
             this.form.warehousing_info_id = this.numberList[i].id
983
          }
982
          }
984
        }
983
        }
985
-     }
984
+       this.getWarehouseTotal(this.form.warehousing_info_id)
985
+     },
986
+      getWarehouseTotal(id){
987
+          var params = {
988
+            id:id,
989
+          }
990
+        getWarehouseTotal(params).then(response=>{
991
+          if(response.data.state == 1){
992
+            var list =  response.data.data.list
993
+            console.log("档期批次库促",list)
994
+            this.form.total = list.stock_count
995
+          }
996
+        })
997
+      }
986
     },
998
     },
987
     created(){
999
     created(){
988
         // var nowDate = new Date();
1000
         // var nowDate = new Date();

+ 14 - 6
src/xt_pages/stock/stockDetailIndex.vue View File

5
     </div>
5
     </div>
6
     <div class="app-container">
6
     <div class="app-container">
7
       <div class="service-box">
7
       <div class="service-box">
8
-        <el-tabs v-model="activeName">
9
-          <el-tab-pane label="入库明细" name="first">
8
+        <el-tabs v-model="activeName" @tab-click="handleClick">
9
+          <el-tab-pane label="入库明细" name="1">
10
             <stock-in-detail></stock-in-detail>
10
             <stock-in-detail></stock-in-detail>
11
           </el-tab-pane>
11
           </el-tab-pane>
12
           <!-- <el-tab-pane label="退货明细">
12
           <!-- <el-tab-pane label="退货明细">
13
             <sales-return-detail></sales-return-detail>
13
             <sales-return-detail></sales-return-detail>
14
 
14
 
15
           </el-tab-pane> -->
15
           </el-tab-pane> -->
16
-          <el-tab-pane label="出库明细">
16
+          <el-tab-pane label="出库明细" name="2">
17
             <stock-out-detail></stock-out-detail>
17
             <stock-out-detail></stock-out-detail>
18
 
18
 
19
           </el-tab-pane>
19
           </el-tab-pane>
20
-          <el-tab-pane label="退库明细">
20
+          <el-tab-pane label="退库明细" name="3">
21
            <cancel-stock-detail></cancel-stock-detail>
21
            <cancel-stock-detail></cancel-stock-detail>
22
           </el-tab-pane>
22
           </el-tab-pane>
23
 
23
 
50
           { path: false, name: '库存管理' },
50
           { path: false, name: '库存管理' },
51
           { path: '/stock/detail', name: '出入库明细查询' }
51
           { path: '/stock/detail', name: '出入库明细查询' }
52
         ],
52
         ],
53
-        activeName: 'first'
53
+        activeName: '1'
54
 
54
 
55
       }
55
       }
56
     },
56
     },
57
     methods: {
57
     methods: {
58
       handleClick(tab, event) {
58
       handleClick(tab, event) {
59
-        console.log(tab, event, this.activeName)
59
+        window.sessionStorage.setItem('active_Name',this.activeName)
60
       }
60
       }
61
+    },
62
+    created(){
63
+      
64
+      var active_name =  window.sessionStorage.getItem('active_Name')
65
+      if(active_name!=null){
66
+        this.activeName = active_name
67
+      }
68
+     
61
     }
69
     }
62
   }
70
   }
63
 </script>
71
 </script>

+ 3 - 2
src/xt_pages/stock/stockInOrder.vue View File

1502
         return
1502
         return
1503
       }
1503
       }
1504
       import('@/vendor/Export2Excel').then(excel => {
1504
       import('@/vendor/Export2Excel').then(excel => {
1505
-        console.log(this.goodType)
1506
-        console.log(this.exportList)
1507
       for(let i=0;i<this.exportList.length;i++){
1505
       for(let i=0;i<this.exportList.length;i++){
1508
         for(let j=0;j<this.goodType.length;j++){
1506
         for(let j=0;j<this.goodType.length;j++){
1509
            if(this.exportList[i].good_type_id == this.goodType[j].id){
1507
            if(this.exportList[i].good_type_id == this.goodType[j].id){
1516
         if(this.exportList[i].manufacturer == 0){
1514
         if(this.exportList[i].manufacturer == 0){
1517
            this.exportList[i].manufacturer = ""
1515
            this.exportList[i].manufacturer = ""
1518
         }
1516
         }
1517
+        if(this.exportList[i].good_type_id == 0){
1518
+          this.exportList[i].good_type_id = ""
1519
+        }
1519
       }
1520
       }
1520
     
1521
     
1521
       const tHeader = ['耗材名称','耗材类型', '规格&单位','批号','入库数量','进货价','总价','生产厂家','生产日期','有效期','经销商','批准文号','备注']
1522
       const tHeader = ['耗材名称','耗材类型', '规格&单位','批号','入库数量','进货价','总价','生产厂家','生产日期','有效期','经销商','批准文号','备注']

+ 3 - 0
src/xt_pages/stock/stockOutOrder.vue View File

1634
           if(this.exportList[i].manufacturer == 0){
1634
           if(this.exportList[i].manufacturer == 0){
1635
             this.exportList[i].manufacturer = ""
1635
             this.exportList[i].manufacturer = ""
1636
           }
1636
           }
1637
+          if(this.exportList[i].good_type_id == 0){
1638
+             this.exportList[i].good_type_id = ""
1639
+          }
1637
         }
1640
         }
1638
         console.log("hhhh323223",this.goodType)
1641
         console.log("hhhh323223",this.goodType)
1639
        
1642