XMLWAN 3 years ago
parent
commit
47fb9282d2

+ 64 - 9
src/xt_pages/stock/drugs/components/drugCancelDetail.vue View File

@@ -8,14 +8,19 @@
8 8
       type="primary"
9 9
       >打印
10 10
     </el-button>
11
-
11
+    <!-- <el-button
12
+      style="float: right;margin-right:10px"
13
+      size="small"
14
+      @click="exportListOne"
15
+      type="primary"
16
+      >明细导出
17
+    </el-button> -->
12 18
     <el-button
13 19
       style="float: right;margin-right:10px"
14 20
       size="small"
15
-      icon="el-icon-printer"
16 21
       @click="exportList"
17 22
       type="primary"
18
-      >导出
23
+      >汇总导出
19 24
     </el-button>
20 25
     <div class="cell clearfix">
21 26
       <el-input
@@ -40,7 +45,7 @@
40 45
           v-model="start_time"
41 46
           prefix-icon="el-icon-date"
42 47
           :editable="false"
43
-          style="width: 196px;"
48
+          style="width: 150px;"
44 49
           type="date"
45 50
           placeholder="选择日期时间"
46 51
           align="right"
@@ -54,7 +59,7 @@
54 59
           v-model="end_time"
55 60
           prefix-icon="el-icon-date"
56 61
           :editable="false"
57
-          style="width: 196px;"
62
+          style="width: 150px;"
58 63
           type="date"
59 64
           placeholder="选择日期时间"
60 65
           align="right"
@@ -145,12 +150,12 @@
145 150
           </template>
146 151
         </el-table-column>
147 152
 
148
-        <el-table-column label="单据类型" align="center">
153
+        <!-- <el-table-column label="单据类型" align="center">
149 154
           <template slot-scope="scope">
150 155
             <span v-if="scope.row.type == 1">药品退库单</span>
151 156
             <span v-if="scope.row.type == 2">其他</span>
152 157
           </template>
153
-        </el-table-column>
158
+        </el-table-column> -->
154 159
 
155 160
         <el-table-column label="操作时间" align="center">
156 161
           <template slot-scope="scope">
@@ -162,12 +167,21 @@
162 167
           {{getAdminUser(scope.row.creater)}}
163 168
           </template>
164 169
         </el-table-column>
165
-
170
+        <el-table-column label="退货价" align="center">
171
+          <template slot-scope="scope">
172
+          {{scope.row.price}}
173
+          </template>
174
+        </el-table-column>
166 175
         <el-table-column label="数量" align="center">
167 176
           <template slot-scope="scope">
168 177
             {{scope.row.count}}
169 178
           </template>
170 179
         </el-table-column>
180
+        <el-table-column label="总价" align="center">
181
+          <template slot-scope="scope">
182
+            {{scope.row.count * scope.row.price}}
183
+          </template>
184
+        </el-table-column>
171 185
       </el-table>
172 186
 
173 187
       <el-pagination
@@ -391,7 +405,7 @@ export default {
391 405
           this.tableList[i].unit = this.tableList[i].dose + this.tableList[i].dose_unit + "*"+this.tableList[i].min_number + this.tableList[i].min_unit+"/"+this.tableList[i].max_unit
392 406
         }
393 407
        import('@/vendor/Export2Excel').then(excel => {
394
-       const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','备注']
408
+       const tHeader = ['序号','单据编号', '药品名称', '规格型号','单据类型','操作时间','制单人','数量']
395 409
        const filterVal = ['index','drug_name', 'unit', 'min_unit','count','price','remark']
396 410
        
397 411
        const data = this.formatJson(filterVal, this.tableList)
@@ -408,6 +422,47 @@ export default {
408 422
      formatJson(filterVal, jsonData) {
409 423
         return jsonData.map(v => filterVal.map(j => v[j]));
410 424
      },
425
+    exportListOne(){
426
+      let obj = {'index':'合计','total_price':0}
427
+       for(let i=0;i<this.tableList.length;i++){
428
+          this.tableList[i].index = i+1
429
+          this.tableList[i].unit = this.tableList[i].dose + this.tableList[i].dose_unit + "*"+this.tableList[i].min_number + this.tableList[i].min_unit+"/"+this.tableList[i].max_unit
430
+          if(this.tableData[i].drug_type == 1){
431
+             this.tableData[i].drugtype = "西药"
432
+          }
433
+          if(this.tableData[i].drug_type == 2){
434
+             this.tableData[i].drugtype = "草药"
435
+          }
436
+          if(this.tableData[i].drug_type == 3){
437
+             this.tableData[i].drugtype = "成药"
438
+          }
439
+          this.tableData[i].time = this.getTime(this.tableData[i].ctime)
440
+          this.tableData[i].user_name = this.getAdminUser(this.tableData[i].creater)
441
+          
442
+          this.tableData[i].total_price = this.tableData[i].count * this.tableData[i].price
443
+           obj.total_price += this.tabelePrintList[i].count * this.tabelePrintList[i].price
444
+        }
445
+        obj.total_price = obj.total_price.toFixed(2)
446
+       this.tableData.push(obj)
447
+       for(let i=0;i<this.tableData.length;i++){
448
+         this.tableData[i].total_price = this.tableData[i].total_price.toFixed(2)
449
+       }
450
+       import('@/vendor/Export2Excel').then(excel => {
451
+       const tHeader = ['序号','单据编号', '药品类型','药品名称', '规格型号','操作时间','制单人','退货价','数量','总价']
452
+       const filterVal = ['index','order_number','drugtype','drug_name', 'unit', 'time','user_name','price','count','total_price']
453
+       
454
+       const data = this.formatJson(filterVal, this.tableList)
455
+       console.log("data",data)
456
+       
457
+       excel.export_json_to_excel({
458
+           header: tHeader,
459
+           data,
460
+           filename: '药品退库明细'
461
+         })
462
+          this.downloadLoading = false
463
+        })
464
+     },
465
+
411 466
   }
412 467
 };
413 468
 </script>

+ 2 - 2
src/xt_pages/stock/drugs/components/drugCancelOrder.vue View File

@@ -12,9 +12,9 @@
12 12
       style="float: right;margin-right:10px"
13 13
       size="small"
14 14
       icon="el-icon-printer"
15
-      @click="exportList"
15
+      @click="c"
16 16
       type="primary"
17
-      >导出
17
+      >汇总导出
18 18
     </el-button>
19 19
     <div class="cell clearfix">
20 20
       <el-input

+ 60 - 8
src/xt_pages/stock/drugs/components/drugInOrder.vue View File

@@ -3,18 +3,25 @@
3 3
     <el-button
4 4
       style="float: right"
5 5
       size="small"
6
-      icon="el-icon-printer"
7 6
       @click="PrintAction"
8 7
       type="primary"
9 8
       >打印
10 9
     </el-button>
10
+    
11
+    <el-button
12
+      style="float: right;margin-right:10px"
13
+      size="small"
14
+      @click="exportListDetail"
15
+      type="primary"
16
+      >明细导出
17
+    </el-button>
11 18
 
12 19
      <el-button
13 20
       style="float: right;margin-right:10px"
14 21
       size="small"
15 22
       @click="exportList"
16 23
       type="primary"
17
-      >导出
24
+      >汇总导出
18 25
     </el-button>
19 26
 
20 27
     <div class="cell clearfix">
@@ -40,13 +47,14 @@
40 47
           v-model="start_time"
41 48
           prefix-icon="el-icon-date"
42 49
           :editable="false"
43
-          style="width: 196px;"
50
+          style="width: 150px;"
44 51
           type="date"
45 52
           placeholder="选择日期时间"
46 53
           align="right"
47 54
           format="yyyy-MM-dd"
48 55
           value-format="yyyy-MM-dd"
49 56
           @change="startTimeChange"
57
+         
50 58
         ></el-date-picker>
51 59
         <span class="cellLine"> - </span>
52 60
         <el-date-picker
@@ -54,7 +62,7 @@
54 62
           v-model="end_time"
55 63
           prefix-icon="el-icon-date"
56 64
           :editable="false"
57
-          style="width: 196px;"
65
+          style="width: 150px;"
58 66
           type="date"
59 67
           placeholder="选择日期时间"
60 68
           align="right"
@@ -321,7 +329,8 @@ export default {
321 329
         this.$message.error("结束时间不能小于开始时间");
322 330
         this.start_time = "";
323 331
       } else {
324
-        this.getlist();
332
+        this.getlist()
333
+        this.getDrugWarehouseInfoPrint()
325 334
       }
326 335
     },
327 336
     endTimeChange(val) {
@@ -330,7 +339,8 @@ export default {
330 339
         this.$message.error("结束时间不能小于开始时间");
331 340
         this.end_time = "";
332 341
       } else {
333
-        this.getlist();
342
+        this.getlist()
343
+        this.getDrugWarehouseInfoPrint()
334 344
       }
335 345
     },
336 346
     getTimestamp(time) {
@@ -436,7 +446,6 @@ export default {
436 446
       })
437 447
     },
438 448
     PrintAction(){
439
-      console.log("打印",this.order_type)
440 449
       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)
441 450
     },
442 451
     select(){
@@ -482,10 +491,53 @@ export default {
482 491
          })
483 492
           this.downloadLoading = false
484 493
         })
485
-       },
494
+      },
486 495
      formatJson(filterVal, jsonData) {
487 496
         return jsonData.map(v => filterVal.map(j => v[j]));
488 497
      },
498
+     exportListDetail(){
499
+       
500
+       import('@/vendor/Export2Excel').then(excel => {
501
+       const tHeader = ['序号','单据编号', '药品类型', '药品名称','规格型号','操作时间','制单人','进货价','数量','总价']
502
+       const filterVal = ['index','warehousing_order','drugtype','drug_name', 'specification_name','time','user_name','price','warehousing_count','total']
503
+       console.log(" ba323223323223",this.cancelStockDate.length)
504
+       var newArr = []
505
+       newArr = this.cancelStockDate
506
+       let obj = {'index':'合计','total':0}
507
+       for(let i=0;i<newArr.length;i++){
508
+          newArr.specification_name = ""
509
+          newArr.index = i+1
510
+          if(newArr[i].drug_type == 1){
511
+             newArr[i].drugtype = "西药"
512
+          }
513
+          if(newArr[i].drug_type == 2){
514
+             newArr[i].drugtype = "草药"
515
+          }
516
+          if(newArr[i].drug_type == 3){
517
+             newArr[i].drugtype = "成药"
518
+          }
519
+        
520
+         newArr[i].specification_name = newArr[i].dose + newArr[i].dose_unit +"*" + newArr[i].min_number + newArr[i].min_unit +  "/" + newArr[i].max_unit
521
+
522
+         newArr[i].time = this.getTime(newArr[i].ctime)
523
+         newArr[i].user_name = this.getAdminUser(newArr[i].creater)
524
+         newArr[i].total = (newArr[i].price * newArr[i].warehousing_count).toFixed(2)
525
+         obj.total += (newArr[i].price * newArr[i].warehousing_count)
526
+       }
527
+       obj.total = obj.total.toFixed(2)
528
+       newArr.push(obj)
529
+       const data = this.formatJson(filterVal, newArr)
530
+       console.log("data",data)
531
+       
532
+        excel.export_json_to_excel({
533
+           header: tHeader,
534
+           data,
535
+           filename: '药品入库明细'
536
+         })
537
+          this.downloadLoading = false
538
+        })
539
+
540
+     }
489 541
   }
490 542
 };
491 543
 </script>

+ 75 - 19
src/xt_pages/stock/drugs/components/drugOutDetail.vue View File

@@ -7,14 +7,22 @@
7 7
       @click="PrintAction"
8 8
       type="primary"
9 9
       >打印
10
+    </el-button>
11
+     <el-button
12
+      style="float: right;margin-right:10px"
13
+      size="small"
14
+      @click="exportListDetai"
15
+      type="primary"
16
+      >明细导出
10 17
     </el-button>
11 18
      <el-button
12 19
       style="float: right;margin-right:10px"
13 20
       size="small"
14 21
       @click="exportList"
15 22
       type="primary"
16
-      >导出
23
+      >汇总导出
17 24
     </el-button>
25
+   
18 26
     <div class="cell clearfix">
19 27
       <el-input
20 28
         size="small"
@@ -38,7 +46,7 @@
38 46
           v-model="start_time"
39 47
           prefix-icon="el-icon-date"
40 48
           :editable="false"
41
-          style="width: 196px;"
49
+          style="width: 150px;"
42 50
           type="date"
43 51
           placeholder="选择日期时间"
44 52
           align="right"
@@ -52,7 +60,7 @@
52 60
           v-model="end_time"
53 61
           prefix-icon="el-icon-date"
54 62
           :editable="false"
55
-          style="width: 196px;"
63
+          style="width: 150px;"
56 64
           type="date"
57 65
           placeholder="选择日期时间"
58 66
           align="right"
@@ -462,35 +470,25 @@ export default {
462 470
      exportList(){
463 471
 
464 472
         for(let i=0;i<this.tablePrint.length;i++){
465
-          // for(let j=0;j<this.drugList.length;j++){
466
-          //    if(this.tableList[i].drug_id == this.drugList[j].id){
467
-          //      this.tableList[i].last_price = this.drugList[j].last_price
468
-               
469
-          //    }
470
-          // }
471 473
           this.tablePrint[i].index = i+1
472 474
           
473 475
         }
474 476
         for(let i=0;i<this.tablePrint.length;i++){
475 477
            this.tablePrint[i].count = this.getCount(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_unit,this.tablePrint[i].min_number)
476
-          //  this.tablePrint[i].total_price = this.tablePrint[i].last_price * this.tablePrint[i].count
477 478
            this.tablePrint[i].total_price = this.getTotalPrice(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].price)
478 479
            this.tablePrint[i].unit = this.tablePrint[i].dose + this.tablePrint[i].dose_unit + "*" + this.tablePrint[i].min_number +this.tablePrint[i].min_unit +"/"+this.tablePrint[i].max_unit
480
+            this.tablePrint[i].total = this.getTotalPriceOne(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].price) 
479 481
         }
480 482
        console.log("列表数据333333333",this.tablePrint)
481 483
      
482 484
        import('@/vendor/Export2Excel').then(excel => {
483 485
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','总价','备注']
484 486
        const filterVal = ['index','drug_name', 'unit', 'min_unit','count','price','total_price','remark']
485
-      //  let obj = {'index':'合计','total_price':0}
486
-      //  for(let i=0;i<this.tablePrint.length;i++){
487
-      //    obj.total_price += (this.tablePrint[i].min_price * this.tablePrint[i].count)
488
-      //  }
489
-      //  for(let j=0;j<this.tablePrint.length;j++){
490
-      //     this.tablePrint[j].total_price = this.tablePrint[j].total_price.toFixed(2)
491
-      //  }
492
-      //  obj.total_price = obj.total_price.toFixed(2)
493
-      //  this.tablePrint.push(obj)
487
+       let obj = {'index':'合计','total_price':0}
488
+       for(let i=0;i<this.tablePrint.length;i++){
489
+         obj.total_price += this.tablePrint[i].total 
490
+       }
491
+       this.tablePrint.push(obj)
494 492
        const data = this.formatJson(filterVal, this.tablePrint)
495 493
        console.log("data",data)
496 494
        
@@ -502,9 +500,51 @@ export default {
502 500
           this.downloadLoading = false
503 501
         })
504 502
        },
503
+      
505 504
      formatJson(filterVal, jsonData) {
506 505
         return jsonData.map(v => filterVal.map(j => v[j]));
507 506
      },
507
+    exportListDetai(){
508
+      import('@/vendor/Export2Excel').then(excel => {
509
+       const tHeader = ['序号','单据编号', '药品类型', '药品名称','规格型号','操作时间','制单人','出货价','数量','总价']
510
+       const filterVal = ['index','warehouse_out_order_number', 'drugtype', 'drug_name','specification_name','time','user_name','price','count','total_price']
511
+       for(let i=0;i<this.tableData.length;i++){
512
+         this.tableData[i].index = i+1
513
+         if(this.tableData[i].drug_type == 1){
514
+            this.tableData[i].drugtype = "西药"
515
+         }
516
+         if(this.tableData[i].drug_type == 2){
517
+            this.tableData[i].drugtype = "草药"
518
+         }
519
+         if(this.tableData[i].drug_type == 3){
520
+            this.tableData[i].drugtype = "成药"
521
+         }
522
+        this.tableData[i].specification_name = this.tableData[i].dose + this.tableData[i].dose_unit +"*" + this.tableData[i].min_number + this.tableData[i].min_unit +  "/" + this.tableData[i].max_unit
523
+        this.tableData[i].time = this.getTime(this.tableData[i].ctime)
524
+        this.tableData[i].user_name = this.getAdminUser(this.tableData[i].creater)
525
+        this.tableData[i].total = (this.tableData[i].count * this.tableData[i].price)
526
+        this.tableData[i].total_price = (this.tableData[i].count * this.tableData[i].price)
527
+       }
528
+       let obj = {'index':'合计','total_price':0}
529
+       for(let i=0;i<this.tableData.length;i++){
530
+         obj.total_price += this.tableData[i].total 
531
+       }
532
+       
533
+       this.tableData.push(obj)
534
+       for(let j=0;j<this.tableData.length;j++){
535
+          this.tableData[j].total_price = this.tableData[j].total_price.toFixed(2)
536
+       }
537
+       const data = this.formatJson(filterVal, this.tableData)
538
+       console.log("data",data)
539
+       
540
+       excel.export_json_to_excel({
541
+           header: tHeader,
542
+           data,
543
+           filename: '药品出库明细'
544
+         })
545
+          this.downloadLoading = false
546
+      }) 
547
+    },
508 548
 
509 549
     getBaseDrugLibList() {
510 550
         let params = {
@@ -617,6 +657,22 @@ export default {
617 657
         }
618 658
         console.log("total23232",total)
619 659
         return (total*min_price).toFixed(2)
660
+      },
661
+
662
+      getTotalPriceOne(arr,max_unit,min_number,min_price){
663
+        var total = 0
664
+        for(let i=0;i<arr.length;i++){
665
+          if(arr[i].count_unit == max_unit){
666
+            arr[i].count = arr[i].count * min_number
667
+          }else{
668
+            arr[i].count = arr[i].count
669
+          }
670
+        }  
671
+        for(let j=0;j<arr.length;j++){
672
+          total +=arr[j].count
673
+        }
674
+        console.log("total23232",total)
675
+        return total*min_price
620 676
       }
621 677
   }
622 678
 };

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

@@ -36,11 +36,12 @@
36 36
                 <span>{{item.dose}}{{item.dose_unit}}*{{item.min_number}}{{item.min_unit}}/{{item.max_unit}}</span>
37 37
               </td>
38 38
               <td style="line-height: 50px">
39
-                <span>{{item.min_unit}}</span>
39
+                <span>{{item.unit}}</span>
40 40
               </td>
41 41
             
42 42
               <td style="line-height: 50px">
43 43
                   {{item.count}}
44
+               
44 45
               </td>
45 46
               <td style="line-height:50px">
46 47
                   {{item.price}}
@@ -166,6 +167,17 @@
166 167
           var drugInOrder = response.data.data.order
167 168
           console.log("drug3434444",drugInOrder)
168 169
           this.cancelStockDate = drugInOrder
170
+          var orderPrint = response.data.data.orderPrint
171
+          
172
+          for(let i=0;i<orderPrint.length;i++){
173
+             orderPrint[i].child = []
174
+            for(let j=0;j<drugInOrder.length;j++){
175
+               if(orderPrint[i].drug_id == drugInOrder[j].drug_id){
176
+                 orderPrint[i].child.push(drugInOrder[j])   
177
+               }
178
+            }
179
+          }
180
+          console.log("orderPrint",orderPrint)
169 181
         }
170 182
       })  
171 183
       },

+ 5 - 7
src/xt_pages/stock/drugs/drugDamaged.vue View File

@@ -1010,16 +1010,14 @@ export default {
1010 1010
          if(response.data.state == 1){
1011 1011
            var list = response.data.data.list
1012 1012
            console.log("list",list)
1013
-          //  this.form.total = list.stock_max_number + list.XtBaseDrug.max_unit + list.stock_min_number + list.XtBaseDrug.min_unit
1014
-          if(list.stock_max_number > 0){
1013
+         
1014
+          if(list.stock_max_number >0 ){
1015 1015
             this.form.total = list.stock_max_number + list.XtBaseDrug.max_unit
1016
-            this.form.stock_max_number = list.stock_max_number
1017 1016
           }
1018
-          if(list.stock_min_number >0 ){
1019
-            this.form.total = list.stock_min_number + list.XtBaseDrug.min_unit
1020
-            this.form.stock_min_number = list.stock_min_number
1017
+          if(list.stock_min_number > 0){
1018
+            this.form.total =  this.form.total + list.stock_min_number + list.XtBaseDrug.min_unit 
1021 1019
           }
1022
-          
1020
+          // this.form.total = list.stock_max_number + list.XtBaseDrug.max_unit + list.stock_min_number + list.XtBaseDrug.min_unit
1023 1021
          }
1024 1022
       })
1025 1023
      },

+ 2 - 1
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue View File

@@ -120,7 +120,7 @@
120 120
               <el-form-item
121 121
                 :prop="'recordData.' + scope.$index + '.warehousing_count'"
122 122
                 :rules="tableRules.warehousing_count"
123
-                style="padding-top: 20px"
123
+                style="padding-top: 10px"
124 124
               >
125 125
               <div style="display:flex;">
126 126
                 <el-input
@@ -128,6 +128,7 @@
128 128
                   placeholder="请输入入库数量"
129 129
                   type="number"
130 130
                   v-model="scope.row.warehousing_count"
131
+                  style="width:80px"
131 132
                 ></el-input>
132 133
                  {{scope.row.max_unit}}
133 134
               </div>

+ 2 - 1
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue View File

@@ -185,7 +185,7 @@
185 185
               <el-form-item
186 186
                 :prop="'recordData.' + scope.$index + '.warehousing_count'"
187 187
                 :rules="tableRules.warehousing_count"
188
-                style="padding-top: 20px;"
188
+                style="padding-top: 10px;"
189 189
               >
190 190
                 <div style="display:flex;">
191 191
                   <el-input
@@ -193,6 +193,7 @@
193 193
                     placeholder="请输入入库数量"
194 194
                     type="number"
195 195
                     v-model="scope.row.warehousing_count"
196
+                    style="width:80px"
196 197
                   ></el-input>
197 198
                   {{scope.row.max_unit}}
198 199
                 </div>

+ 48 - 20
src/xt_pages/stock/drugs/drugStockOutOrder.vue View File

@@ -233,8 +233,8 @@
233 233
           </el-table-column> -->
234 234
           <el-table-column label="出库数量" align="center">
235 235
             <template slot-scope="scope">
236
-              <span v-if="scope.row.is_sys ==  0">{{getTotalCount(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
237
-              <span v-if="scope.row.is_sys == 1"> {{getTotalCountOne(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
236
+              <!-- <span v-if="scope.row.is_sys ==  0">{{getTotalCount(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span> -->
237
+              <span> {{getTotalCountOne(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
238 238
             </template>
239 239
           </el-table-column>
240 240
           <el-table-column label="出货单价" align="center">
@@ -249,7 +249,7 @@
249 249
           </el-table-column>
250 250
           <el-table-column label="总价" align="center">
251 251
             <template slot-scope="scope">
252
-              <span>{{getAllPrice(scope.row.drug_id,scope.row.price,scope.row.min_price).toFixed(2)}}</span>
252
+              <span>{{getAllPriceOne(scope.row.drug_id,scope.row.price,scope.row.min_price).toFixed(2)}}</span>
253 253
             </template>
254 254
           </el-table-column>
255 255
           <el-table-column label="生产厂家" align="center">
@@ -667,7 +667,7 @@ export default {
667 667
     handleSearch(val){
668 668
        console.log("val23233232",val)
669 669
        this.getInitializtion()
670
-       this.getSinleOrderDetail(val.id,val.warehouse_out_time)
670
+       this.getSinleOrderDetail(val.id,val.warehouse_out_time,val.is_sys)
671 671
        this.list = []
672 672
       //  this.getDrugAutoMaticList(val.id,val.time,val.warehouse_out_order_number)
673 673
 
@@ -938,7 +938,7 @@ export default {
938 938
      }
939 939
      return name
940 940
    },
941
-   getSinleOrderDetail(id,start_time){
941
+   getSinleOrderDetail(id,start_time,is_sys){
942 942
        var params = {
943 943
          id:id,
944 944
          start_time:start_time,
@@ -948,20 +948,34 @@ export default {
948 948
           this.tableShow = true
949 949
           this.tableList = []
950 950
           var list =  response.data.data.list
951
+          console.log("list",list)
951 952
          this.manufacturerList = response.data.data.manufacturerList
952 953
          this.dealerList = response.data.data.dealerList
953 954
          var drugFlowList = response.data.data.drugFlowList
954
-         for(let i=0;i<drugFlowList.length;i++){
955
-           if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.max_unit){
956
-               drugFlowList[i].count = drugFlowList[i].count * drugFlowList[i].XtBaseDrug.min_number
957
-           }
958
-           if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.min_unit){
959
-              drugFlowList[i].count = drugFlowList[i].count 
955
+         if (is_sys == 1){
956
+            for(let i=0;i<drugFlowList.length;i++){
957
+              if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.max_unit){
958
+                  drugFlowList[i].count = drugFlowList[i].count * drugFlowList[i].XtBaseDrug.min_number
959
+              }
960
+              if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.min_unit){
961
+                  drugFlowList[i].count = drugFlowList[i].count 
962
+              }
963
+
960 964
            }
965
+            this.drugFlowList = drugFlowList
961 966
          }
962
-         console.log("库存柳树",drugFlowList)
963
- 
964
-         this.drugFlowList = drugFlowList
967
+         if(is_sys == 0){
968
+            for(let i=0;i<list.length;i++){
969
+              if(list[i].count_unit == list[i].max_unit){
970
+                  list[i].count = list[i].count * list[i].min_number
971
+              }
972
+              if(list[i].count_unit == list[i].min_unit){
973
+                  list[i].count = list[i].count 
974
+              }
975
+            }
976
+            this.drugFlowList = list
977
+         }
978
+
965 979
          for(let i=0;i<list.length;i++){
966 980
            if(list[i].batch_number == "0" || list[i].batch_number == 0){
967 981
               list[i].batch_number = ""
@@ -1100,14 +1114,16 @@ export default {
1100 1114
         }
1101 1115
         var str = ""
1102 1116
         var min_str = ""
1117
+        var total = 0
1103 1118
         if(arr.length > 0){
1104 1119
           for(let i=0;i<arr.length;i++){
1105
-            if(parseInt(arr[i].count/min_number)!=0){
1106
-              str = parseInt(arr[i].count/min_number)+ max_unit
1107
-            }
1108
-            if(arr[i].count%min_number !=0){
1109
-              min_str =  arr[i].count%min_number + min_unit
1110
-            }
1120
+             total +=arr[i].count
1121
+          }
1122
+          if(parseInt(total/min_number)!=0){
1123
+              str = parseInt(total/min_number)+ max_unit
1124
+          }
1125
+          if(total%min_number !=0){
1126
+            min_str =  total%min_number + min_unit
1111 1127
           }
1112 1128
         }
1113 1129
         return str + min_str 
@@ -1213,6 +1229,18 @@ export default {
1213 1229
      formatJson(filterVal, jsonData) {
1214 1230
       return jsonData.map(v => filterVal.map(j => v[j]));
1215 1231
      },
1232
+      getAllPriceOne(drug_id,price,min_price){
1233
+        var total = 0
1234
+        var all_price = 0
1235
+        for(let i=0;i<this.drugFlowList.length;i++){
1236
+          if(drug_id == this.drugFlowList[i].drug_id){
1237
+              total += this.drugFlowList[i].count
1238
+          }
1239
+        }
1240
+        all_price = total * min_price
1241
+        console.log("total",total,min_price)
1242
+        return  all_price
1243
+      },
1216 1244
   }
1217 1245
 };
1218 1246
 </script>

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

@@ -1111,16 +1111,13 @@ export default {
1111 1111
          if(response.data.state == 1){
1112 1112
            var list = response.data.data.list
1113 1113
            console.log("list",list)
1114
-        
1115
-          if(list.stock_max_number > 0){
1114
+          
1115
+          if(list.stock_max_number >0 ){
1116 1116
             this.form.total = list.stock_max_number + list.XtBaseDrug.max_unit
1117
-            this.form.stock_max_number = list.stock_max_number
1118 1117
           }
1119
-          if(list.stock_min_number >0 ){
1120
-            this.form.total = list.stock_min_number + list.XtBaseDrug.min_unit
1121
-            this.form.stock_min_number = list.stock_min_number
1118
+          if(list.stock_min_number > 0){
1119
+            this.form.total =  this.form.total + list.stock_min_number + list.XtBaseDrug.min_unit 
1122 1120
           }
1123
-          
1124 1121
          }
1125 1122
       })
1126 1123
      },

+ 2 - 2
src/xt_pages/stock/stockFlow.vue View File

@@ -112,11 +112,11 @@
112 112
              <span>{{getTime(scope.row.expire_date,"{y}-{h}-{d}")}}</span>
113 113
            </template>
114 114
         </el-table-column>
115
-        <el-table-column prop="drug_name" label="批准文号" align="center">
115
+        <!-- <el-table-column prop="drug_name" label="批准文号" align="center">
116 116
            <template slot-scope="scope" >
117 117
              <span>{{scope.row.license_number}}</span>
118 118
            </template>
119
-        </el-table-column>
119
+        </el-table-column> -->
120 120
         <el-table-column prop="drug_name" label="生产商" align="center">
121 121
            <template slot-scope="scope">
122 122
              <span > {{getManufacturer(scope.row.manufacturer)}}</span>

+ 30 - 30
src/xt_pages/stock/stockOutOrder.vue View File

@@ -637,15 +637,6 @@
637 637
                <span v-if="scope.row.is_total ==0">{{scope.row.number}}</span>
638 638
             </template>
639 639
           </el-table-column>
640
-<!-- 
641
-          <el-table-column min-width="70" align="center">
642
-            <template slot="header" slot-scope="scope">
643
-              <span>批次详情</span>
644
-            </template>
645
-            <template slot-scope="scope">
646
-              <span v-if="scope.row.is_total == 0">批次详情</span>
647
-            </template>
648
-          </el-table-column> -->
649 640
         </el-table>
650 641
       </el-row>
651 642
     </div>
@@ -1100,19 +1091,18 @@ export default {
1100 1091
         getOrderDetailByOrderId(params).then(response=>{
1101 1092
             if(response.data.state == 1){
1102 1093
               this.tableShow = true
1103
-              var list = response.data.data.list
1104
-              // console.log("list22222222",list)
1105
-              // for(let i=0;i<list.length;i++){
1106
-              //   if(list[i].dealer == 0){
1107
-              //     list[i].dealer = ""
1108
-              //   }
1109
-              //   if(list[i].manufacturer == 0){
1110
-              //     list[i].manufacturer = ""
1111
-              //   }
1112
-              //   this.tableList.push(list[i])
1113
-              // }
1094
+              var info = response.data.data.list
1095
+              console.log("list22222222",info)
1114 1096
               var list = response.data.data.info
1097
+              for(let i=0;i<info.length;i++){
1098
+                for(let j=0;j<list.length;j++){
1099
+                  if(info[i].good_id == list[j].good_id){
1100
+                     list[j].count = info[i].count
1101
+                  }
1102
+                }
1103
+              }
1115 1104
               console.log("info2232323",list)
1105
+              this.tableList = []
1116 1106
               for(let i=0;i<list.length;i++){
1117 1107
                 if(list[i].dealer == 0){
1118 1108
                   list[i].dealer = ""
@@ -1538,16 +1528,7 @@ export default {
1538 1528
               var stockflowlist = response.data.data.stockFlowList
1539 1529
               console.log("stockflowlist",stockflowlist)
1540 1530
               this.stockFlowList = stockflowlist
1541
-              // for (let i = 0; i < arrList.length; i++) {
1542
-              //   var obj = arrList[i]
1543
-              //   obj['is_total'] = 0
1544
-              //   this.userList.push(obj)
1545
-              //   total = total + arrList[i].count
1546
-              // }
1547
-              // this.userList.push({
1548
-              //   is_total: 1,
1549
-              //   total: total,
1550
-              // })
1531
+             
1551 1532
 
1552 1533
               for (let i = 0; i <  this.stockFlowList.length; i++) {
1553 1534
                 var obj =  this.stockFlowList[i]
@@ -1673,6 +1654,24 @@ export default {
1673 1654
     formatJson(filterVal, jsonData) {
1674 1655
     return jsonData.map(v => filterVal.map(j => v[j]));
1675 1656
    },
1657
+   unique(arr) {
1658
+      let newArr = [arr[0]];
1659
+      for (let i = 1; i < arr.length; i++) {
1660
+          let repeat = false;
1661
+          for (let j = 0; j < newArr.length; j++) {
1662
+              if (arr[i] === newArr[j]) {
1663
+                  repeat = true;
1664
+                  break;
1665
+              }else{
1666
+                  
1667
+              }
1668
+          }
1669
+          if (!repeat) {
1670
+              newArr.push(arr[i]);
1671
+          }
1672
+      }
1673
+      return newArr;
1674
+    },
1676 1675
    getBatchNumber(patient_id,good_id){
1677 1676
      var arr = []
1678 1677
      for(let i=0;i<this.stockFlowList.length;i++){
@@ -1680,6 +1679,7 @@ export default {
1680 1679
            arr.push(this.stockFlowList[i].number)
1681 1680
         }
1682 1681
      }
1682
+     arr = this.unique(arr)
1683 1683
      return arr.join(',')
1684 1684
    }
1685 1685
   }

+ 19 - 1
src/xt_pages/stock/stockQuery.vue View File

@@ -165,6 +165,18 @@ import {
165 165
 export default {
166 166
   name: "stockIn",
167 167
   created() {
168
+    var start_time =  window.sessionStorage.getItem('start_time')
169
+    var end_time =  window.sessionStorage.getItem('end_time')
170
+    console.log("start_time",start_time,end_time)
171
+    if(start_time !=null){
172
+      this.start_time = start_time
173
+    }
174
+    if(end_time!=null){
175
+      this.end_time = end_time
176
+    }
177
+   
178
+    window.sessionStorage.removeItem('start_time')
179
+    window.sessionStorage.removeItem('end_time')
168 180
     var nowDate = new Date();
169 181
     var nowYear = nowDate.getFullYear();
170 182
     var nowMonth = nowDate.getMonth() + 1;
@@ -331,8 +343,10 @@ export default {
331 343
       return Math.round(parseFloat(val) * 100) / 100;
332 344
     },
333 345
     startTimeChange: function(val) {
346
+      window.sessionStorage.removeItem('start_time')
347
+     
334 348
       var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
335
-
349
+      console.log("ime2222",time)
336 350
       if (time > 0) {
337 351
         this.$message.error("开始时间不能大于结束时间");
338 352
         this.start_time = "";
@@ -344,7 +358,9 @@ export default {
344 358
       }
345 359
     },
346 360
     endTimeChange: function(val) {
361
+      window.sessionStorage.removeItem('end_time')
347 362
       var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
363
+      console.log("ime2222",time)
348 364
       if (time < 0) {
349 365
         this.$message.error("结束时间不能小于开始时间");
350 366
         this.end_time = "";
@@ -432,6 +448,8 @@ export default {
432 448
        this.getlist()
433 449
       },
434 450
       toPrint(){
451
+        window.sessionStorage.setItem('start_time',this.start_time)
452
+        window.sessionStorage.setItem('end_time',this.end_time)
435 453
         this.$router.push("/stock/stockprint?start_time="+this.start_time+"&end_time="+this.end_time+"&keyword="+this.keywords+"&type_name="+this.type_name+"&page="+this.page+"&limit="+this.limit)
436 454
 
437 455
       },