XMLWAN 3 gadus atpakaļ
vecāks
revīzija
5480c23174
28 mainītis faili ar 642 papildinājumiem un 262 dzēšanām
  1. 8 0
      src/api/drug/drug_stock.js
  2. 8 0
      src/api/stock.js
  3. 1 1
      src/xt_pages/data/components/consumables.vue
  4. 26 12
      src/xt_pages/data/druguseTemplate.vue
  5. 8 4
      src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue
  6. 15 6
      src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue
  7. 1 1
      src/xt_pages/stock/Dialog/goodInfoDailog.vue
  8. 11 1
      src/xt_pages/stock/cancelStockOrderAdd.vue
  9. 2 2
      src/xt_pages/stock/detail/cancelStockDetail.vue
  10. 5 2
      src/xt_pages/stock/detail/stockInDetail.vue
  11. 4 4
      src/xt_pages/stock/detail/stockOutDetail.vue
  12. 11 15
      src/xt_pages/stock/drugs/drugStockFlow.vue
  13. 2 1
      src/xt_pages/stock/drugs/drugStockInOrderAdd.vue
  14. 2 2
      src/xt_pages/stock/drugs/drugStockInOrderDetailPrint.vue
  15. 2 1
      src/xt_pages/stock/drugs/drugStockInOrderEdit.vue
  16. 236 27
      src/xt_pages/stock/drugs/drugStockOutOrder.vue
  17. 53 42
      src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue
  18. 6 5
      src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue
  19. 8 2
      src/xt_pages/stock/drugs/query.vue
  20. 14 7
      src/xt_pages/stock/stockFlow.vue
  21. 6 5
      src/xt_pages/stock/stockInOrder.vue
  22. 3 3
      src/xt_pages/stock/stockInOrderAdd.vue
  23. 2 1
      src/xt_pages/stock/stockInOrderEdit.vue
  24. 88 38
      src/xt_pages/stock/stockOutOrder.vue
  25. 33 58
      src/xt_pages/stock/stockOutOrderAdd.vue
  26. 60 3
      src/xt_pages/stock/stockOutOrderDetailPrint.vue
  27. 24 16
      src/xt_pages/stock/stockOutOrderEdit.vue
  28. 3 3
      src/xt_pages/stock/stockQuery.vue

+ 8 - 0
src/api/drug/drug_stock.js Parādīt failu

@@ -509,3 +509,11 @@ export function getDrugOutOrderDetailPrint(params) {
509 509
     params: params
510 510
   })
511 511
 }
512
+
513
+export function getDrugBatchNumber(params) {
514
+  return request({
515
+    url: '/api/drug/getdrugbatchnumber',
516
+    method: 'Get',
517
+    params: params
518
+  })
519
+}

+ 8 - 0
src/api/stock.js Parādīt failu

@@ -689,3 +689,11 @@ export function getCancelStockOrderPrint(params) {
689 689
     params: params
690 690
   })
691 691
 }
692
+
693
+export function getStockBatchNumber(params) {
694
+  return request({
695
+    url: '/api/stock/getstockbatchnumber',
696
+    method: 'get',
697
+    params: params
698
+  })
699
+}

+ 1 - 1
src/xt_pages/data/components/consumables.vue Parādīt failu

@@ -105,7 +105,7 @@
105 105
           {{ getGoodUnit(scope.row.good_unit) }}
106 106
         </template>
107 107
       </el-table-column> -->
108
-      <el-table-column label="包装零售价" width="100" align="center">
108
+      <el-table-column label="零售价" width="100" align="center">
109 109
         <template slot-scope="scope">
110 110
           {{ scope.row.packing_price }}
111 111
         </template>

+ 26 - 12
src/xt_pages/data/druguseTemplate.vue Parādīt failu

@@ -347,6 +347,7 @@
347 347
                           :fetch-suggestions="querySearch"
348 348
                           placeholder="请输入内容"
349 349
                           @input="changeDrugName"
350
+                          @select="hangleSelectChange"
350 351
                       ></el-autocomplete>
351 352
                     </el-form-item>
352 353
                   </el-col>
@@ -549,6 +550,7 @@
549 550
                           :fetch-suggestions="querySearch"
550 551
                           placeholder="请输入内容"
551 552
                           @input="changeDrugNameTwo"
553
+                          @select="hangdleSelectTwo"
552 554
                          ></el-autocomplete>
553 555
                     </el-form-item>
554 556
                   </el-col>
@@ -1685,6 +1687,7 @@
1685 1687
         let name = encodeURIComponent(this.form.name)
1686 1688
         console.log("params",params)
1687 1689
         let sort = this.form.sort
1690
+        
1688 1691
         postAdviceTemplate(params, name,sort, this.form.advice_type).then(response => {
1689 1692
 
1690 1693
           if (response.data.state == 0) {
@@ -1821,10 +1824,10 @@
1821 1824
       },
1822 1825
       submitTemplate(formName) {
1823 1826
 
1824
-        if(this.src_type == ""){
1825
-            this.templateForm.way = 0
1826
-            this.templateForm.drug_id = 0
1827
-        }
1827
+        // if(this.src_type == ""){
1828
+        //     this.templateForm.way = 0
1829
+        //     this.templateForm.drug_id = 0
1830
+        // }
1828 1831
 
1829 1832
         if(this.src_type == 2){ //自备药
1830 1833
             var arr = this.templateForm.advice_name.split("(自备药)")
@@ -2198,13 +2201,13 @@
2198 2201
       //编辑医嘱
2199 2202
       submitEditTemplate(formName) {
2200 2203
 
2201
-         var drug_id = 0
2202
-         for(let i=0;i<this.all_drug.length;i++){
2203
-           if(this.templateFormEdit.advice_name == this.all_drug[i].drug_name){
2204
-              drug_id = this.all_drug[i].id
2205
-           }
2206
-         }
2207
-        this.templateFormEdit.drug_id = drug_id
2204
+        //  var drug_id = 0
2205
+        //  for(let i=0;i<this.all_drug.length;i++){
2206
+        //    if(this.templateFormEdit.advice_name == this.all_drug[i].drug_name){
2207
+        //       drug_id = this.all_drug[i].id
2208
+        //    }
2209
+        //  }
2210
+        // this.templateFormEdit.drug_id = drug_id
2208 2211
 
2209 2212
         console.log("编辑子药",this.templateFormEdit)
2210 2213
 
@@ -2896,6 +2899,11 @@
2896 2899
             }
2897 2900
         }
2898 2901
       },
2902
+      hangdleSelectTwo(val){
2903
+        console.log("我的223232",val)
2904
+
2905
+        this.templateFormEdit.drug_id = val.id
2906
+      },
2899 2907
       changeDrugDescTwo(name) {
2900 2908
         this.current_drug_spec = name
2901 2909
         for (let i = 0; i < this.drugSpec.length; i++) {
@@ -2913,6 +2921,8 @@
2913 2921
       },
2914 2922
 
2915 2923
 
2924
+
2925
+
2916 2926
      querySearch(queryString, cb) {
2917 2927
         console.log('queryString',queryString)
2918 2928
         var restaurants = this.all_drug;
@@ -2945,7 +2955,11 @@
2945 2955
       },
2946 2956
      sortData(a, b) {
2947 2957
        return a.sort - b.sort
2948
-     }
2958
+     },
2959
+     hangleSelectChange(val){
2960
+      this.templateForm.way = 1
2961
+      this.templateForm.drug_id = val.id
2962
+    }
2949 2963
     }
2950 2964
   }
2951 2965
 </script>

+ 8 - 4
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue Parādīt failu

@@ -1275,7 +1275,6 @@
1275 1275
               this.exceLoading = false
1276 1276
               return false
1277 1277
             } else {
1278
-
1279 1278
               this.$notify({
1280 1279
                 title: '成功',
1281 1280
                 message: '执行医嘱成功',
@@ -1283,10 +1282,15 @@
1283 1282
                 duration: 2000
1284 1283
               })
1285 1284
               var msg = response.data.data.msg
1286
-              if(msg == "ok"){
1287
-                 this.$message.error("请入库,库存不足")
1285
+              if(msg == 1){
1286
+                this.$message.error("无库存,请入库")
1287
+                return
1288
+              }
1289
+
1290
+              if(msg == 2){
1291
+                this.$message.error("库存不足,请入库")
1292
+                return
1288 1293
               }
1289
-            
1290 1294
               var exid = response.data.data.advice.id
1291 1295
               if (response.data.data.advice.parent_id > 0) {
1292 1296
                 exid = response.data.data.advice.parent_id

+ 15 - 6
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue Parādīt failu

@@ -695,8 +695,9 @@ export default {
695 695
             remark: this.groupForm.remark,
696 696
             parent_id: this.groupForm.parent_id,
697 697
             id:this.groupForm.id,
698
-          };
699 698
          
699
+          };
700
+          console.log("hhhhh",this.drug_id,this.nameForm.way)
700 701
           var adviceNames = [];
701 702
           for (const index in this.groupForm.adviceNames) {
702 703
             adviceNames.unshift(this.groupForm.adviceNames[index]);
@@ -733,7 +734,7 @@ export default {
733 734
              }
734 735
           }
735 736
           console.log("2222",submitForm)
736
-  
737
+         
737 738
           CreateGroupAdvice(this.patientID, 0, submitForm, mode).then(
738 739
             response => {
739 740
               if (response.data.state == 0) {
@@ -857,8 +858,8 @@ export default {
857 858
     submitNameForm(formName) {
858 859
       
859 860
        if(this.src_type == ""){
860
-          this.nameForm.way = 0
861
-          this.nameForm.drug_id = 0
861
+          this.nameForm.way = 1
862
+          this.nameForm.drug_id = this.drug_id
862 863
           this.nameForm.drug_name_id = 0
863 864
        }
864 865
 
@@ -1559,6 +1560,7 @@ export default {
1559 1560
                 obj.type = 2
1560 1561
                 obj.custom_id = this.rand(10000000, 99999999)
1561 1562
                 obj.drug_specs = medicalList[i].drug_specs
1563
+                obj.id = medicalList[i].id
1562 1564
                 this.all_drug.push(obj)
1563 1565
               }
1564 1566
             }
@@ -1594,6 +1596,7 @@ export default {
1594 1596
                 obj.type = 1
1595 1597
                 obj.custom_id = this.rand(10000000, 99999999)
1596 1598
                 obj.drug_specs = base_drug_list[i].drug_specs
1599
+                obj.id = base_drug_list[i].id
1597 1600
                 this.all_drug.push(obj)
1598 1601
 
1599 1602
               }
@@ -1614,8 +1617,10 @@ export default {
1614 1617
             this.drugSpec = this.all_drug[i].drug_specs
1615 1618
           }
1616 1619
        }
1620
+     
1617 1621
     },
1618 1622
     changeDrugDesc(name) {
1623
+      
1619 1624
         this.current_drug_spec = name
1620 1625
         for (let i = 0; i < this.drugSpec.length; i++) {
1621 1626
           if (this.drugSpec[i].drug_spec == name) {
@@ -1673,8 +1678,12 @@ export default {
1673 1678
         cb(results);
1674 1679
       },
1675 1680
 
1676
-      handleSelect(){
1677
-
1681
+      handleSelect(val){
1682
+        console.log("22222",val)
1683
+        this.drug_id = val.id
1684
+        this.nameForm.way = 1 
1685
+        console.log("hhhh23",this.drug_id) 
1686
+        console.log("hhhhhh",this.nameForm.way)
1678 1687
       },
1679 1688
       handleSelect1(){
1680 1689
 

+ 1 - 1
src/xt_pages/stock/Dialog/goodInfoDailog.vue Parādīt failu

@@ -82,7 +82,7 @@
82 82
                 </el-option>
83 83
               </el-select>
84 84
             </el-form-item> -->
85
-            <el-form-item label="包装零售价 : " prop="retail_price">
85
+            <el-form-item label="零售价 : " prop="retail_price">
86 86
               <el-input v-model="form.packing_price" style="width:160px;" placeholder="" maxlength="30"></el-input>
87 87
             </el-form-item>
88 88
             <!-- <el-form-item label="拆零零售价 : " prop="retail_price">

+ 11 - 1
src/xt_pages/stock/cancelStockOrderAdd.vue Parādīt failu

@@ -425,7 +425,16 @@ export default {
425 425
               this.$message.error(response.data.msg);
426 426
               return false;
427 427
             } else {
428
-              this.$notify({
428
+             var msg =  response.data.data.msg
429
+             if (msg == 1){
430
+                this.$message.error("该耗材无出库记录")
431
+                return
432
+             }
433
+             if(msg == 2){
434
+               this.$message.error("退库数量大于出库数量")
435
+             }
436
+             if(msg == 3){
437
+               this.$notify({
429 438
                 title: "成功",
430 439
                 message: "退库成功",
431 440
                 type: "success",
@@ -433,6 +442,7 @@ export default {
433 442
               });
434 443
               this.recordInfo.recordData = [];
435 444
               this.$router.back(-1);
445
+             }        
436 446
             }
437 447
           });
438 448
         } else {

+ 2 - 2
src/xt_pages/stock/detail/cancelStockDetail.vue Parādīt failu

@@ -140,11 +140,11 @@
140 140
           </template>
141 141
         </el-table-column>
142 142
 
143
-        <el-table-column label="单据类型" align="center">
143
+        <!-- <el-table-column label="单据类型" align="center">
144 144
           <template slot-scope="scope">
145 145
             {{ getTypeName(scope.row) }}
146 146
           </template>
147
-        </el-table-column>
147
+        </el-table-column> -->
148 148
 
149 149
         <el-table-column label="操作时间" align="center">
150 150
           <template slot-scope="scope">

+ 5 - 2
src/xt_pages/stock/detail/stockInDetail.vue Parādīt failu

@@ -341,10 +341,12 @@ export default {
341 341
           this.$message.error(response.data.msg);
342 342
           return false;
343 343
         } else {
344
-          
345 344
           this.total = response.data.data.total;
345
+          console.log("hhhhhhshsss",response.data.data.list)
346
+          var total_price = 0
346 347
           for (let i = 0; i < response.data.data.list.length; i++) {
347 348
             var obj = response.data.data.list[i];
349
+            total_price += response.data.data.list[i].price * response.data.data.list[i].warehousing_count
348 350
             obj["is_total"] = 0;
349 351
             this.cancelStockDate.push(obj);
350 352
           }
@@ -352,7 +354,7 @@ export default {
352 354
           this.cancelStockDate.push({
353 355
             warehousing_order: "合计",
354 356
             is_total: 1,
355
-            total: response.data.data.total_price,
357
+            total: total_price,
356 358
             Warehousing: {
357 359
               warehousing_time: 0
358 360
             }
@@ -391,6 +393,7 @@ export default {
391 393
           return false;
392 394
         } else {
393 395
           this.total = response.data.data.total;
396
+          var total_price = ""
394 397
           for (let i = 0; i < response.data.data.list.length; i++) {
395 398
             var obj = response.data.data.list[i];
396 399
             obj["is_total"] = 0;

+ 4 - 4
src/xt_pages/stock/detail/stockOutDetail.vue Parādīt failu

@@ -140,11 +140,11 @@
140 140
           </template>
141 141
         </el-table-column>
142 142
 
143
-        <el-table-column label="单据类型" align="center">
143
+        <!-- <el-table-column label="单据类型" align="center">
144 144
           <template slot-scope="scope">
145 145
             {{ getTypeName(scope.row) }}
146 146
           </template>
147
-        </el-table-column>
147
+        </el-table-column> -->
148 148
 
149 149
         <el-table-column label="操作时间" align="center">
150 150
           <template slot-scope="scope">
@@ -377,12 +377,12 @@ export default {
377 377
         } else {
378 378
 
379 379
           this.total = response.data.data.total;
380
-
380
+          console.log("详情23233323",response.data.data.list)
381 381
           for (let i = 0; i < response.data.data.list.length; i++) {
382 382
             var obj = response.data.data.list[i];
383 383
             obj["is_total"] = 0;
384 384
             this.cancelStockDate.push(obj);
385
-
385
+            
386 386
           }
387 387
           this.cancelStockDate.push({
388 388
             warehouse_out_order_number: "合计",

+ 11 - 15
src/xt_pages/stock/drugs/drugStockFlow.vue Parādīt failu

@@ -84,14 +84,12 @@
84 84
          <el-table-column prop="drug_name" label="出入库数量" align="center">
85 85
            <template slot-scope="scope">
86 86
              <span v-if="scope.row.drug_way == 4"> {{scope.row.warehousing_count}}{{scope.row.max_unit}}</span>
87
-             <span v-if="scope.row.drug_way == 2 || scope.row.drug_way == 1">{{scope.row.count}}{{scope.row.max_unit}}</span>
87
+             <span v-if="scope.row.drug_way == 2 || scope.row.drug_way == 1">{{scope.row.count}}{{scope.row.count_unit}}</span>
88 88
            </template>
89 89
         </el-table-column>
90 90
          <el-table-column prop="drug_name" label="剩余库存量" align="center">
91 91
            <template slot-scope="scope">
92
-             <!-- {{getCountTwo(this.$route.query.drug_id,this.$route.query.min_number,this.$route.query.max_unit,this.$route.query.min_unit)}} -->
93 92
                {{getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}
94
-              <!-- {{getInCount(scope.row.drug_id) - getOutCount(scope.row.drug_id) - getAutoCount(scope.row.drug_id)}} -->
95 93
              <span></span>
96 94
            </template>
97 95
         </el-table-column>
@@ -109,8 +107,8 @@
109 107
         </el-table-column>
110 108
         <el-table-column prop="drug_name" label="批号" align="center">
111 109
            <template slot-scope="scope">
112
-             <span v-if="scope.row.drug_way == 2 || scope.row.drug_way ==1"> {{scope.row.number}}</span>
113
-             <span v-if="scope.row.drug_way == 4">{{scope.row.number}}</span>
110
+             <span v-if="scope.row.drug_way == 2 || scope.row.drug_way ==1"> {{scope.row.batch_number}}</span>
111
+             <span v-if="scope.row.drug_way == 4">{{scope.row.batch_number}}</span>
114 112
            </template>
115 113
         </el-table-column>
116 114
         <el-table-column prop="drug_name" label="生产商" align="center">
@@ -240,11 +238,9 @@
240 238
              limit:this.limit,
241 239
              stock_type:this.stock_type,  
242 240
            }
243
-          console.log("params",params)
244 241
          getDrugStockFlow(params).then(response=>{
245 242
            if(response.data.state == 1){
246 243
             var list = response.data.data.list
247
-            console.log("入库数据0000",list)
248 244
             for(let i=0;i<list.length;i++){
249 245
                list[i].drug_way = 4
250 246
                this.tableList.push(list[i])
@@ -266,18 +262,18 @@
266 262
              limit:this.limit,
267 263
              stock_type:this.stock_type,  
268 264
            }
269
-          console.log("出库数据",params)
270
-
271 265
          getOutDrugStockFlow(params).then(response=>{
272 266
             if(response.data.state == 1){
273 267
                var outList = response.data.data.outList
274 268
                console.log("outlist",outList)
275 269
 
276 270
               for(let i=0;i<outList.length;i++){
271
+               
277 272
                 if(outList[i].is_sys == 1){
278 273
                   outList[i].drug_way = 2
279 274
                 }
280
-                if(outList.is_sys == 0){
275
+                if(outList[i].is_sys == 0){
276
+                  console.log("进来22222")
281 277
                   outList[i].drug_way = 1
282 278
                 }
283 279
                 this.tableList.push(outList[i])
@@ -346,16 +342,16 @@
346 342
       getDrugCountList(params).then(response=>{
347 343
           if(response.data.state == 1){
348 344
             var countlist =  response.data.data.countList
349
-            console.log("入库数据",countlist)
345
+            // console.log("入库数据",countlist)
350 346
             this.countList = countlist
351 347
             var outcountlist = response.data.data.outCountList
352
-            console.log("出库数据",outcountlist)
348
+            // console.log("出库数据",outcountlist)
353 349
             this.outCountList = outcountlist
354 350
             var aucountlist = response.data.data.auCountList
355
-            console.log("自动数据",aucountlist)
351
+            // console.log("自动数据",aucountlist)
356 352
             this.autoCountList = aucountlist
357 353
              var minCount = response.data.data.minCount
358
-            console.log("minCount",minCount)
354
+            // console.log("minCount",minCount)
359 355
             this.minCount = minCount
360 356
             var info = response.data.data.info
361 357
             for(let i=0;i<info.length;i++){
@@ -363,7 +359,7 @@
363 359
                  info[i].count = info[i].count * info[i].min_number
364 360
               }
365 361
             }
366
-            console.log("info2222222",info)
362
+            // console.log("info2222222",info)
367 363
             this.drugOutList = info
368 364
           }
369 365
         })

+ 2 - 1
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue Parādīt failu

@@ -55,7 +55,7 @@
55 55
                     popper-class="my-autocomplete"
56 56
                     v-model="scope.row.drug_name"
57 57
                     :fetch-suggestions="querySearchAsync"
58
-                    :trigger-on-focus="false"
58
+                    :trigger-on-focus="true"
59 59
                     placeholder="请输入药品名称"
60 60
                     @select="handleSelect"
61 61
                     @input="changeDrugName(scope.$index)"
@@ -218,6 +218,7 @@
218 218
             <template slot-scope="scope">
219 219
               <el-form-item style="padding-top: 20px">
220 220
                 <el-input
221
+                 :disabled="true"
221 222
                   placeholder="请输入批准文号"
222 223
                   v-model="scope.row.number"
223 224
                 ></el-input>

+ 2 - 2
src/xt_pages/stock/drugs/drugStockInOrderDetailPrint.vue Parādīt failu

@@ -55,8 +55,8 @@
55 55
                   <span>{{(item.warehousing_count * item.price).toFixed(2)}}</span>
56 56
               </td>
57 57
               <td style="line-height:18px">{{ item.number }}</td>
58
-              <td style="line-height:18px">{{ getTime(item.product_date)}}</td>
59
-              <td style="line-height:18px">{{ getTime(item.expiry_date)}}</td>
58
+              <td style="line-height:18px">{{ getTime(item.product_date,'{y}-{m}-{d}')}}</td>
59
+              <td style="line-height:18px">{{ getTime(item.expiry_date,'{y}-{m}-{d}')}}</td>
60 60
               <td style="line-height:18px">正常<br>入库</td>
61 61
               <td style="line-height:18px">合格</td>
62 62
             </tr>

+ 2 - 1
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue Parādīt failu

@@ -120,7 +120,7 @@
120 120
                     popper-class="my-autocomplete"
121 121
                     v-model="scope.row.drug_name"
122 122
                     :fetch-suggestions="querySearchAsync"
123
-                    :trigger-on-focus="false"
123
+                    :trigger-on-focus="true"
124 124
                     placeholder="请输入药品名称"
125 125
                     @select="handleSelect"
126 126
                     @input="changeDrugName(scope.$index)"
@@ -285,6 +285,7 @@
285 285
             <template slot-scope="scope">
286 286
               <el-form-item style="padding-top: 20px">
287 287
                 <el-input
288
+                  :disabled="true"
288 289
                   placeholder="请输入批准文号"
289 290
                   v-model="scope.row.number"
290 291
                 ></el-input>

+ 236 - 27
src/xt_pages/stock/drugs/drugStockOutOrder.vue Parādīt failu

@@ -231,17 +231,22 @@
231 231
           </el-table-column>
232 232
           <el-table-column label="出库数量" align="center">
233 233
             <template slot-scope="scope">
234
-              {{scope.row.count}}{{scope.row.max_unit}}
234
+              {{getTotalCount(scope.row.drug_id)}}
235 235
             </template>
236 236
           </el-table-column>
237
-          <el-table-column label="进货价" align="center">
237
+          <el-table-column label="出货单价" align="center">
238 238
             <template slot-scope="scope">
239 239
               {{scope.row.price}}
240 240
             </template>
241 241
           </el-table-column>
242
+          <el-table-column label="拆零零售价" align="center">
243
+            <template slot-scope="scope">
244
+              {{scope.row.min_price}}
245
+            </template>
246
+          </el-table-column>
242 247
           <el-table-column label="总价" align="center">
243 248
             <template slot-scope="scope">
244
-              {{(scope.row.count * scope.row.price).toFixed(2)}}
249
+              <span>{{getAllPrice(scope.row.drug_id,scope.row.price,scope.row.min_price).toFixed(2)}}</span>
245 250
             </template>
246 251
           </el-table-column>
247 252
           <el-table-column label="生产厂家" align="center">
@@ -277,7 +282,7 @@
277 282
           </el-table-column>
278 283
           <el-table-column label="操作" align="center">
279 284
             <template slot-scope="scope">
280
-              <span style="color: #589ff8" v-if="scope.row.is_sys == 1" @click="toDetail(scope.row)">使用明细</span>
285
+              <span style="color: #589ff8"  @click="toDetail(scope.row)">使用明细</span>
281 286
             </template>
282 287
           </el-table-column>
283 288
         </el-table>
@@ -332,6 +337,16 @@
332 337
             </template>
333 338
           </el-table-column>
334 339
 
340
+
341
+          <el-table-column min-width="35" align="center">
342
+            <template slot="header" slot-scope="scope">
343
+              <span>批次号</span>
344
+            </template>
345
+            <template slot-scope="scope">
346
+              <span>{{getDrugBatchNumber(scope.row.id)}}</span>
347
+            </template>
348
+          </el-table-column>
349
+
335 350
         </el-table>
336 351
       </span>
337 352
       <span slot="footer" class="dialog-footer">
@@ -339,6 +354,68 @@
339 354
         <el-button type="primary" @click="drugDialogVisible = false">确 定</el-button>
340 355
       </span>
341 356
     </el-dialog>
357
+
358
+
359
+
360
+    <el-dialog
361
+      title="提示"
362
+      :visible.sync="drugDialogVisibleTwo"
363
+      width="90%">
364
+      <span>
365
+        <el-table :data="userListOne" :class="signAndWeighBoxPatients" style="width: 50%"
366
+                  border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
367
+        >
368
+          <el-table-column min-width="35" align="center">
369
+            <template slot="header" slot-scope="scope">
370
+              <span>序号</span>
371
+            </template>
372
+            <template slot-scope="scope">
373
+              {{scope.$index+1}}
374
+            </template>
375
+          </el-table-column>
376
+
377
+          <el-table-column min-width="35" align="center">
378
+            <template slot="header" slot-scope="scope">
379
+              <span>使用人</span>
380
+            </template>
381
+            <template slot-scope="scope">
382
+              <span>系统</span>
383
+            </template>
384
+          </el-table-column>
385
+          <el-table-column min-width="35" align="center">
386
+            <template slot="header" slot-scope="scope">
387
+              <span>使用数量</span>
388
+            </template>
389
+            <template slot-scope="scope">
390
+               {{scope.row.count}}
391
+            </template>
392
+          </el-table-column>
393
+
394
+          <el-table-column min-width="35" align="center">
395
+            <template slot="header" slot-scope="scope">
396
+              <span>使用时间</span>
397
+            </template>
398
+            <template slot-scope="scope">
399
+              <span>{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
400
+            </template>
401
+          </el-table-column>
402
+
403
+         <el-table-column min-width="35" align="center">
404
+            <template slot="header" slot-scope="scope">
405
+              <span>批号</span>
406
+            </template>
407
+            <template slot-scope="scope">
408
+              <span>{{scope.row.batch_number}} </span>
409
+            </template>
410
+          </el-table-column>
411
+
412
+        </el-table>
413
+      </span>
414
+      <span slot="footer" class="dialog-footer">
415
+        <el-button @click="drugDialogVisibleTwo = false">取 消</el-button>
416
+        <el-button type="primary" @click="drugDialogVisibleTwo = false">确 定</el-button>
417
+      </span>
418
+    </el-dialog>
342 419
    </div>
343 420
 </template>
344 421
 
@@ -350,11 +427,11 @@ import {
350 427
   deleteDrugWarehouseOut,
351 428
   GetAllConfig,
352 429
   getDrugWarehouseOutList,
353
-  getDrugWarehouseOutInfo,
354 430
   getDrugWarehouseOutUser,
355 431
   getDrugAutoMaticList,
356 432
   getSinleOrderDetail,
357
-  getAutoDrugDetail
433
+  getAutoDrugDetail,
434
+  getDrugCountList
358 435
 } from "@/api/drug/drug_stock";
359 436
 import BreadCrumb from "../../components/bread-crumb";
360 437
 import { getInitializtion } from '@/api/stock'
@@ -383,8 +460,8 @@ export default {
383 460
       "-" +
384 461
       (nowDay < 10 ? "0" + nowDay : nowDay);
385 462
     this.GetWarehouseOut();
386
-    // this.GetConfigInfo();
387 463
     this.fetchAllAdminUsers();
464
+    this.getDrugCountList()
388 465
   },
389 466
   data() {
390 467
     return {
@@ -427,8 +504,18 @@ export default {
427 504
       tableShow:false,
428 505
       manufacturerList:[],
429 506
       drugDialogVisible:false,
507
+      drugDialogVisibleTwo:false,
430 508
       order_id:0,
431
-      dealerList:[]
509
+      dealerList:[],
510
+      countList:[],
511
+      outCountList:[],
512
+      autoCountList:[],
513
+      keyword:"",
514
+      drug_type:0,
515
+      minCount:[],
516
+      drugOutList:[],
517
+      outList:[],
518
+      userListOne:[],
432 519
     };
433 520
   },
434 521
   methods: {
@@ -441,7 +528,6 @@ export default {
441 528
         type: this.type,
442 529
         keywords: this.searchKey
443 530
       };
444
-      console.log("paras22222222",Params)
445 531
       this.warehouseOutDate = [];
446 532
       getDrugWarehouseOutList(Params).then(response => {
447 533
         if (response.data.state == 0) {
@@ -480,7 +566,7 @@ export default {
480 566
           for (let i = 0; i < response.data.data.list.length; i++) {
481 567
             this.warehouseOutDate.push(response.data.data.list[i]);
482 568
           }
483
-          console.log("列表22222",this.warehouseOutDate)
569
+         
484 570
         }
485 571
       });
486 572
     },
@@ -509,7 +595,6 @@ export default {
509 595
     },
510 596
     fetchAllAdminUsers() {
511 597
       fetchAllAdminUsers().then(response => {
512
-        console.log(response);
513 598
         if (response.data.state == 1) {
514 599
           this.adminUserOptions = response.data.data.users;
515 600
           var alen = this.adminUserOptions.length;
@@ -571,7 +656,7 @@ export default {
571 656
     },
572 657
 
573 658
     handleEdit: function(index, row) {
574
-      console.log("row2222222",row)
659
+   
575 660
       this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys})
576 661
     },
577 662
     handleSearch(val){
@@ -644,18 +729,19 @@ export default {
644 729
       }
645 730
       const ids = [];
646 731
       for (let i = 0; i < this.selectedTableData.length; i++) {
647
-        ids.push(this.selectedTableData[i].id);
732
+        if(this.selectedTableData[i].is_sys == 0){
733
+          ids.push(this.selectedTableData[i].id);
734
+        }
648 735
       }
649 736
       const idStr = ids.join(",");
650 737
       const params = {
651 738
         ids: idStr
652 739
       };
653
-      this.$confirm("确认删除退货单记录?", "删除退货单记录", {
740
+      this.$confirm("确认删除出库单记录?", "删除出库单记录", {
654 741
         confirmButtonText: "确定",
655 742
         cancelButtonText: "取消",
656 743
         type: "warning"
657
-      })
658
-        .then(() => {
744
+      }).then(() => {
659 745
           deleteDrugWarehouseOut(params).then(response => {
660 746
             if (response.data.state == 0) {
661 747
               this.$message.error(response.data.msg);
@@ -699,7 +785,7 @@ export default {
699 785
           } else {
700 786
             this.userList=[]
701 787
             var total = 0
702
-            console.log("888888888888",response.data.data.list)
788
+
703 789
             for (let i = 0; i < response.data.data.list.length; i++) {
704 790
               var obj = response.data.data.list[i]
705 791
               obj['is_total'] = 0
@@ -770,13 +856,11 @@ export default {
770 856
       getDrugAutoMaticList(params).then(response=>{
771 857
          if(response.data.state ==1){
772 858
            var list =   response.data.data.list
773
-           console.log("list222222",list)
774 859
            this.list = list
775 860
            var drugConfig =  response.data.data.drugConfig
776
-           console.log("drugconfig",drugConfig)
861
+         
777 862
            this.drugConfig = drugConfig
778 863
            var drugList = response.data.data.drugList
779
-           console.log("药品列表",drugList)
780 864
            this.drugList = drugList
781 865
            var manulist = response.data.data.manufacturerList
782 866
            this.manufacturerList = manulist
@@ -816,7 +900,7 @@ export default {
816 900
       getInitializtion().then(response=>{
817 901
           if(response.data.state ==1){
818 902
             var drugTypeList = response.data.data.drugTypeList
819
-            console.log("hhhhhhh",drugTypeList)
903
+
820 904
             this.drugTypeList = drugTypeList
821 905
           }
822 906
       })
@@ -857,7 +941,17 @@ export default {
857 941
           this.tableShow = true
858 942
           this.tableList = []
859 943
           var list =  response.data.data.list
860
-          console.log("list",list)
944
+          var outList = response.data.data.outList
945
+          for(let i=0;i<outList.length;i++){
946
+              //如果都是最大单位,把最数量转为最小数量
947
+             if(outList[i].count_unit == outList[i].max_unit){
948
+                outList[i].count = outList[i].min_number * outList[i].count 
949
+             }
950
+          }
951
+          this.outList = outList
952
+       
953
+          // console.log("list",list)
954
+          // console.log("outList222",outList)
861 955
          this.manufacturerList = response.data.data.manufacturerList
862 956
          this.dealerList = response.data.data.dealerList
863 957
          for(let i=0;i<list.length;i++){
@@ -874,28 +968,36 @@ export default {
874 968
      })
875 969
    },
876 970
    toDetail(val){
877
-    
878 971
      console.log("val",val)
879 972
      var params = {
973
+       warehouse_out_id:val.warehouse_out_id,
880 974
        drug_id:val.drug_id,
881 975
        record_time:val.sys_record_time,
882 976
      }
883 977
      this.userList = []
884 978
      getAutoDrugDetail(params).then(response=>{
885 979
        if(response.data.state == 1){
886
-        this.drugDialogVisible = true
980
+      
887 981
         var total = 0
888 982
         for (let i = 0; i < response.data.data.list.length; i++) {
889 983
           var obj = response.data.data.list[i]
890 984
           obj['is_total'] = 0
891 985
           this.userList.push(obj)
892
-          total = total + response.data.data.list[i].count
986
+         total = this.getTotalCount(response.data.data.list[i].drug_id)
893 987
         }
894
-        console.log("出库数据222222222",this.userList)
895 988
         this.userList.push({
896 989
           is_total: 1,
897 990
           total: total,
898 991
         })
992
+        if(val.is_sys == 1){
993
+          this.drugDialogVisible = true
994
+        }
995
+        if(val.is_sys == 0){
996
+          this.drugDialogVisibleTwo = true
997
+        }
998
+         var userListOne = response.data.data.outList
999
+         console.log("手动出库2232332",userListOne)
1000
+         this.userListOne = userListOne
899 1001
        }
900 1002
      })
901 1003
    },
@@ -905,7 +1007,114 @@ export default {
905 1007
      }else{
906 1008
        this.$router.push({path:"/stock/drugStockOutOrderDetailPrint?id="+this.order_id})
907 1009
      }
908
-   }
1010
+   },
1011
+
1012
+    getDrugCountList(){
1013
+         var params = {
1014
+          keyword: this.keywords,
1015
+          start_time:this.start_time,
1016
+          end_time:this.end_time,
1017
+         }
1018
+         console.log("paramsw2ww",params)
1019
+        getDrugCountList(params).then(response=>{
1020
+          if(response.data.state == 1){
1021
+            var countlist =  response.data.data.countList
1022
+            // console.log("入库数据",countlist)
1023
+            this.countList = countlist
1024
+            var outcountlist = response.data.data.outCountList
1025
+            // console.log("出库数据",outcountlist)
1026
+            this.outCountList = outcountlist
1027
+            var aucountlist = response.data.data.auCountList
1028
+            // console.log("自动数据",aucountlist)
1029
+            this.autoCountList = aucountlist
1030
+            var minCount = response.data.data.minCount
1031
+            // console.log("minCount",minCount)
1032
+            this.minCount = minCount
1033
+            var info = response.data.data.info
1034
+            for(let i=0;i<info.length;i++){
1035
+              if(info[i].count_unit == info[i].max_unit){
1036
+                 info[i].count = info[i].count * info[i].min_number
1037
+              }
1038
+            }
1039
+            // console.log("info2222222",info)
1040
+            this.drugOutList = info
1041
+          }
1042
+        })
1043
+      },
1044
+    
1045
+      getCount(drug_id,min_number,max_unit,min_unit){
1046
+        var count= 0
1047
+        var str = ""
1048
+        var min_str = ""
1049
+        for(let i=0;i<this.drugOutList.length;i++){
1050
+          if(drug_id == this.drugOutList[i].drug_id){
1051
+             count += parseInt(this.drugOutList[i].count)
1052
+          }
1053
+        }
1054
+        if(parseInt(count/min_number)!=0){
1055
+          str = parseInt(count/min_number)+ max_unit
1056
+        }
1057
+        if((count%min_number)!=0){
1058
+          min_str =  count%min_number + min_unit
1059
+        }
1060
+        return str + min_str
1061
+      },
1062
+      getTotalCount(drug_id){
1063
+         var str = ""
1064
+         var min_str = ""
1065
+         for(let i=0;i<this.outList.length;i++){
1066
+           if(this.outList[i].drug_id == drug_id){
1067
+            if(parseInt(this.outList[i].count/this.outList[i].min_number)!=0){
1068
+              str = parseInt(this.outList[i].count/this.outList[i].min_number)+ this.outList[i].max_unit
1069
+            }
1070
+            if((this.outList[i].count%this.outList[i].min_number)!=0){
1071
+              min_str =  this.outList[i].count%this.outList[i].min_number + this.outList[i].min_unit
1072
+            }
1073
+           }
1074
+         }
1075
+         return str + min_str
1076
+      },
1077
+      getAllPrice(drug_id,price,min_price){
1078
+         var strprice = 0
1079
+         var minstrprice = 0
1080
+         var str = ""
1081
+         var min_str = ""
1082
+         var total_price = 0
1083
+         for(let i=0;i<this.outList.length;i++){
1084
+           if(this.outList[i].drug_id == drug_id){
1085
+            if(parseInt(this.outList[i].count/this.outList[i].min_number)!=0){
1086
+              str = parseInt(this.outList[i].count/this.outList[i].min_number)
1087
+            }
1088
+            if((this.outList[i].count%this.outList[i].min_number)!=0){
1089
+              min_str =  this.outList[i].count%this.outList[i].min_number
1090
+            }
1091
+           }
1092
+         }
1093
+         strprice = str * price 
1094
+         minstrprice = min_str * min_price 
1095
+        //  console.log("strprice3",strprice)
1096
+        //  console.log("minstrprice",minstrprice)
1097
+         total_price = strprice + minstrprice
1098
+         return  total_price
1099
+      },
1100
+
1101
+      getDrugBatchNumber(id){
1102
+        
1103
+        var arr= []
1104
+        var batchNumber =[]
1105
+        
1106
+        for(let i=0;i<this.userList.length;i++){
1107
+           if(id == this.userList[i].id){
1108
+            arr.push(this.userList[i].drugwarehouseoutinfo)
1109
+           }
1110
+        }
1111
+        if(batchNumber.length > 0 ){
1112
+         for(let j=0;j<arr.length;j++){
1113
+           batchNumber.push(arr[j].batch_number)
1114
+          }
1115
+        }
1116
+        return batchNumber.join(",")
1117
+      }
909 1118
     
910 1119
   }
911 1120
 };

+ 53 - 42
src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue Parādīt failu

@@ -27,12 +27,12 @@
27 27
     <div class="app-container">
28 28
   
29 29
 
30
-      <drugs-stock-dialog
30
+      <!-- <drugs-stock-dialog
31 31
         ref="dialog" :propForm="propForm"
32 32
         :visibility="isVisibility"
33 33
         v-on:dialog-comfirm="comfirm"
34 34
         v-on:dialog-cancle="cancle"
35
-      ></drugs-stock-dialog>
35
+      ></drugs-stock-dialog> -->
36 36
 
37 37
 
38 38
       <div class="cell clearfix">
@@ -73,7 +73,7 @@
73 73
                     popper-class="my-autocomplete"
74 74
                     v-model="scope.row.drug_name"
75 75
                     :fetch-suggestions="querySearchAsync"
76
-                    :trigger-on-focus="false"
76
+                    :trigger-on-focus="true"
77 77
                     placeholder="请输入药品名称"
78 78
                     @select="handleSelect"
79 79
                     @input="changeGoodName(scope.$index)"
@@ -122,10 +122,18 @@
122 122
               </template>
123 123
                 <template slot-scope="scope">
124 124
                   <el-form-item style="padding-top: 20px">
125
-                    <el-input
125
+                    <!-- <el-input
126 126
                       placeholder="请输入批号"
127 127
                       v-model="scope.row.batch_number"
128
-                    ></el-input>
128
+                    ></el-input> -->
129
+                    <el-select v-model="scope.row.batch_number" filterable placeholder="请选择">
130
+                      <el-option
131
+                        v-for="(item,index) in numberList"
132
+                        :key="index"
133
+                        :label="item.batch_number"
134
+                        :value="item.batch_number">
135
+                      </el-option>
136
+                    </el-select>
129 137
                   </el-form-item>
130 138
               </template>
131 139
           </el-table-column>
@@ -145,11 +153,18 @@
145 153
                     type="number"
146 154
                     v-model="scope.row.count"
147 155
                   ></el-input>
148
-                  {{scope.row.packing_unit}}
149 156
                 </div>
150 157
               </el-form-item>
151
-              
158
+              <el-select v-model="scope.row.max_unit" filterable placeholder="请选择单位">
159
+                <el-option
160
+                  v-for="(option, index) in unitList"
161
+                  :key="index"
162
+                  :label="option.name"
163
+                  :value="option.name">
164
+                </el-option>
165
+               </el-select>
152 166
             </template>
167
+
153 168
           </el-table-column>
154 169
           <el-table-column width="120" align="center">
155 170
             <template slot="header" slot-scope="scope">
@@ -220,8 +235,9 @@
220 235
         
221 236
         <el-table-column align="center" width="150" label="批准文号">
222 237
             <template slot-scope="scope">
223
-              <el-form-item style="padding-top: 20px">
238
+              <el-form-item style="padding-top: 20px" :disabled="true">
224 239
                 <el-input
240
+                  :disabled="true"
225 241
                   placeholder="请输入批准文号"
226 242
                   v-model="scope.row.number"
227 243
                 ></el-input>
@@ -235,7 +251,7 @@
235 251
                 <el-option
236 252
                   v-for="(option, index) in dealerList"
237 253
                   :key="index"
238
-                  :label="option.dealer"
254
+                  :label="option.dealer_name"
239 255
                   :value="option.id">
240 256
                 </el-option>
241 257
                </el-select>
@@ -288,7 +304,7 @@
288 304
 
289 305
 <script>
290 306
 import { uParseTime } from "@/utils/tools";
291
-import {  postDrugWarehouseOut,GetAllConfig,GetAllDrugInfoByID } from "@/api/drug/drug_stock";
307
+import {  postDrugWarehouseOut,GetAllConfig,GetAllDrugInfoByID,getDrugBatchNumber } from "@/api/drug/drug_stock";
292 308
 
293 309
 import BreadCrumb from "../../components/bread-crumb";
294 310
 import DrugsStockDialog from './drugsStockDialog/index'
@@ -353,38 +369,12 @@ export default {
353 369
       showTwo:false,
354 370
       drugTypeList:[],
355 371
       totalPrice:0,
372
+      unitList:[],
373
+      numberList:[]
356 374
     };
357 375
   },
358 376
   methods: {
359
-    // comfirm: function(val) {
360
-    //   this.propForm.goodType = []
361
-    //   this.propForm.goods = []
362
-
363
-    //   this.$refs.dialog.hide()
364
-
365
-    //   if (val.selectedGoodInfo.length > 0) {
366
-    //     for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
367
-    //       if (i == 0) {
368
-    //         this.recordInfo.recordData[this.currentIndex].drug_id = val.selectedGoodInfo[i].id
369
-    //         this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].last_price.toString()
370
-    //         this.recordInfo.recordData[this.currentIndex].retail_price = val.selectedGoodInfo[i].retail_price.toString()
371
-    //         this.recordInfo.recordData[this.currentIndex].min_unit = val.selectedGoodInfo[i].min_unit.toString()
372
-    //       } else {
373
-    //         const tempForm = {}
374
-    //         tempForm['drug_id'] = val.selectedGoodInfo[i].id
375
-    //         tempForm['retail_price'] = val.selectedGoodInfo[i].retail_price.toString()
376
-    //         tempForm['price'] =  val.selectedGoodInfo[i].last_price.toString()
377
-    //         tempForm['count'] = ''
378
-    //         tempForm['remark'] = ''
379
-    //         tempForm['min_unit'] = val.selectedGoodInfo[i].min_unit
380
-    //         this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
381
-    //       }
382
-    //     }
383
-    //   }
384
-
385
-    //   this.currentIndex = -1
386
-
387
-    // },
377
+    
388 378
     cancle: function() {
389 379
       this.$refs.dialog.hide();
390 380
     },
@@ -455,6 +445,7 @@ export default {
455 445
       tempObj["min_number"] = ""
456 446
       tempObj["number"] = ""
457 447
       tempObj["batch_number"] = ""
448
+      tempObj["max_unit"] = ""
458 449
       this.recordInfo.recordData.push(tempObj);
459 450
     },
460 451
     handleDelete: function(index, row) {
@@ -592,13 +583,18 @@ export default {
592 583
             } else {
593 584
               var msg = response.data.data.msg
594 585
               var drug_name =  response.data.data.drug_name
586
+              console.log("drug_name",drug_name)
595 587
               var dose = response.data.data.dose
588
+              console.log("dose",dose)
596 589
               var dose_unit = response.data.data.dose_unit
590
+              console.log("dose_unit",dose_unit)
597 591
               var min_number = response.data.data.min_number
592
+              console.log("min_number",min_number)
598 593
               var min_unit =  response.data.data.min_unit
594
+              console.log("min_unit",min_unit)
599 595
               var max_unit =  response.data.data.max_unit
600
-
601
-              var str = drug_name + "" + dose + dose_unit * min_number + min_unit+"/"+max_unit
596
+              console.log("max_unit",max_unit)
597
+              var str = drug_name + " " + dose + dose_unit + "*" + min_number + min_unit+"/"+max_unit
602 598
               console.log("str22222222",str)
603 599
               if(msg == 1){
604 600
                 this.$message.error(str + "库存不足,请入库")
@@ -636,7 +632,6 @@ export default {
636 632
         postSearchDrugList(key).then(response => {
637 633
           if (response.data.state == 1) {
638 634
             searchArray = response.data.data.list;
639
-            
640 635
              var list = response.data.data.list
641 636
              console.log("list99999999",list)
642 637
              this.drugList = list
@@ -644,6 +639,7 @@ export default {
644 639
              this.manufacturerList = manufacturerList
645 640
              var dealerList = response.data.data.dealerList
646 641
              this.dealerList = dealerList
642
+             console.log("经销商",this.dealerList)
647 643
              for(let i=0;i<this.drugList.length;i++){
648 644
                 for(let j=0;j<this.manufacturerList.length;j++){
649 645
                   if(this.drugList[i].manufacturer == this.manufacturerList[j].id){
@@ -669,6 +665,7 @@ export default {
669 665
       },
670 666
       handleSelect(val){
671 667
         console.log("val2222222",val)
668
+         this.getDrugBatchNumber(val.id)
672 669
         for(let i=0;i<this.recordInfo.recordData.length;i++){
673 670
           if(this.currentIndex == i){
674 671
             this.recordInfo.recordData[i].drug_id = val.id
@@ -701,6 +698,18 @@ export default {
701 698
       getDictionaryDataConfig(module, filed_name) {
702 699
         return getDictionaryDataConfig(module, filed_name)
703 700
       },
701
+      getDrugBatchNumber(id){
702
+          var params = {
703
+            id:id
704
+          }
705
+        getDrugBatchNumber(params).then(response=>{
706
+           if(response.data.state == 1){
707
+             var list = response.data.data.list
708
+             console.log("list2222",list)
709
+             this.numberList = list
710
+           }
711
+        })
712
+      }
704 713
   },
705 714
   created() {
706 715
     this.drugTypeList = getDictionaryDataConfig('system','drug_type') 
@@ -731,6 +740,8 @@ export default {
731 740
     this.recordInfo.recordData.push(tempObj);
732 741
     this.GetConfigInfo();
733 742
     this.propForm.goodUnit = this.$store.getters.good_unit;
743
+    this.unitList =  getDataConfig('hemodialysis','units')
744
+    console.log("单位",this.unitList)
734 745
   }
735 746
 };
736 747
 </script>

+ 6 - 5
src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue Parādīt failu

@@ -40,7 +40,7 @@
40 40
                     popper-class="my-autocomplete"
41 41
                     v-model="scope.row.drug_name"
42 42
                     :fetch-suggestions="querySearchAsync"
43
-                    :trigger-on-focus="false"
43
+                    :trigger-on-focus="true"
44 44
                     placeholder="请输入药品名称"
45 45
                     @select="handleSelect"
46 46
                     @input="changeDrugName(scope.$index)"
@@ -115,7 +115,7 @@
115 115
                     type="number"
116 116
                     v-model="scope.row.count"
117 117
                   ></el-input>
118
-                  {{scope.row.packing_unit}}
118
+                  {{scope.row.count_unit}}
119 119
                 </div>
120 120
               </el-form-item>
121 121
               
@@ -143,7 +143,7 @@
143 143
           </el-table-column>
144 144
            <el-table-column label="总价" width="80" align="center">
145 145
             <template slot-scope="scope">
146
-              {{ calculate(scope.row.last_price * scope.row.count) }}
146
+              {{ calculate(scope.row.price * scope.row.count) }}
147 147
             </template>
148 148
           </el-table-column>
149 149
           <el-table-column label="生产厂家" width="140" align="center">
@@ -200,7 +200,7 @@
200 200
           </el-table-column>
201 201
            <el-table-column align="center" width="150" label="批准文号">
202 202
             <template slot-scope="scope">
203
-              <el-form-item style="padding-top: 20px">
203
+              <el-form-item style="padding-top: 20px" :disabled="true">
204 204
                 <el-input
205 205
                  :disabled="drug_show"
206 206
                   placeholder="请输入批准文号"
@@ -570,6 +570,7 @@
570 570
             return false
571 571
           } else {
572 572
              console.log("出库详情",response.data.data.list)
573
+
573 574
             var manulist = response.data.data.manulist
574 575
             this.manufacturerList = manulist
575 576
             this.dealerList =  response.data.data.dealerList
@@ -591,7 +592,7 @@
591 592
               
592 593
              
593 594
               response.data.data.list[i].price = response.data.data.list[i].price.toString()
594
-              response.data.data.list[i].retail_price = response.data.data.list[i].retail_price.toString()
595
+              response.data.data.list[i].retail_price = response.data.data.list[i].price.toString()
595 596
               response.data.data.list[i].count = response.data.data.list[i].count.toString()
596 597
               if(response.data.data.list[i].dealer == "0" || response.data.data.list[i].dealer == 0){
597 598
                   response.data.data.list[i].dealer = ""

+ 8 - 2
src/xt_pages/stock/drugs/query.vue Parādīt failu

@@ -123,8 +123,8 @@
123 123
         </el-table-column>
124 124
         <el-table-column prop="drug_name" label="剩余库存量" align="center">
125 125
            <template slot-scope="scope">
126
-           
127
-            {{getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}
126
+             <span v-if="getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)!=''">{{getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
127
+              <span v-if="getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit) ==''">0{{scope.row.max_unit}}0{{scope.row.min_unit}}</span>
128 128
            </template>
129 129
         </el-table-column>
130 130
         <el-table-column prop="drug_name" label="操作" align="center" width="200px">
@@ -647,20 +647,26 @@ import { min } from 'moment'
647 647
         return count
648 648
       },
649 649
      getCountTwo(drug_id,min_number,max_unit,min_unit){
650
+      
650 651
        var total_count = 0
651 652
        var out_count = 0
652 653
        var count = 0
653 654
        var str = ""
654 655
        var str_min = ""
655 656
        total_count = this.getInCount(drug_id) * min_number
657
+
656 658
        out_count = this.getCountOne(drug_id)
657 659
        count = total_count-out_count
660
+
658 661
        if(parseInt(count/min_number)!=0){
659 662
          str = parseInt(count/min_number) + max_unit
660 663
        }
664
+       console.log("str2222",str)
661 665
        if((count%min_number)!=0){
662 666
          str_min = count%min_number + min_unit
663 667
        }
668
+
669
+       console.log("str0000000",str,str_min)
664 670
        return str+str_min
665 671
      }
666 672
     }

+ 14 - 7
src/xt_pages/stock/stockFlow.vue Parādīt failu

@@ -63,7 +63,7 @@
63 63
         </el-table-column>
64 64
         <el-table-column prop="drug_type" label="出入库方式" width="180" align="center">
65 65
            <template slot-scope="scope">
66
-             <span v-if="scope.row.stock_way == 4">采购入库</span>
66
+             <span v-if="scope.row.stock_way == 4">手动入库</span>
67 67
              <span v-if="scope.row.stock_way == 3">手动出库</span>
68 68
              <span v-if="scope.row.stock_way == 2">自动出库</span>
69 69
            </template>
@@ -86,6 +86,12 @@
86 86
              <span v-if="(scope.row.stock_way == 2 || scope.row.stock_way == 3) && scope.row.count!=0">{{scope.row.count}}{{packing_unit}}</span>
87 87
            </template>
88 88
         </el-table-column>
89
+       <el-table-column label="退库数量" align="center">
90
+         <template slot-scope="scope">
91
+           <span>{{getCancelCount(scope.row.good_id)}}{{packing_unit}}</span>
92
+
93
+         </template>
94
+       </el-table-column>
89 95
          <el-table-column prop="drug_name" label="剩余库存量"  align="center">
90 96
            <template slot-scope="scope">
91 97
              <!-- <span v-if="scope.row.stock_way == 4 && scope.row.stock_count!=0">{{scope.row.stock_count}} </span> -->
@@ -205,7 +211,7 @@
205 211
           {id:0,name:"全部"},
206 212
           {id:3,name:"手动出库"},
207 213
           {id:2,name:"自动出库"},
208
-          {id:4,name:"采购入库"},
214
+          {id:4,name:"手动入库"},
209 215
         ],
210 216
         countList:[],
211 217
         outCountList:[],
@@ -292,7 +298,7 @@
292 298
            }
293 299
            var total = response.data.data.total
294 300
            this.total = total
295
-           console.log("入库数据",this.tableList)
301
+          //  console.log("入库数据",this.tableList)
296 302
            var manufacturerList = response.data.data.manufacturerList
297 303
            this.manufacturerList = manufacturerList
298 304
          }
@@ -320,6 +326,7 @@
320 326
              }
321 327
              this.tableList.push(outList[i])
322 328
            }
329
+          console.log("hhhhhhhhhh",this.tableList)
323 330
           var total = response.data.data.total
324 331
           this.total = total
325 332
         }  
@@ -334,17 +341,17 @@
334 341
       getStockDrugCount(params).then(response=>{
335 342
          if(response.data.state == 1){
336 343
            var count = response.data.data.count
337
-           console.log("详情入库统计",count)
344
+          //  console.log("详情入库统计",count)
338 345
            this.countList = count
339 346
            var outlist = response.data.data.outList
340
-           console.log("详情出库数量",outlist)
347
+          //  console.log("详情出库数量",outlist)
341 348
           
342 349
            this.outCountList = outlist
343 350
            var autoCount = response.data.data.autoCount
344
-           console.log("详情自动出库",autoCount)
351
+          //  console.log("详情自动出库",autoCount)
345 352
            this.autoCountList = autoCount
346 353
            var totalCount = response.data.data.totalCount
347
-           console.log("totalcount",totalCount)
354
+          //  console.log("totalcount",totalCount)
348 355
            this.cancelCountList = totalCount
349 356
          }
350 357
       })

+ 6 - 5
src/xt_pages/stock/stockInOrder.vue Parādīt failu

@@ -1474,7 +1474,7 @@ export default {
1474 1474
            }
1475 1475
           for(let i=0;i<list.length;i++){
1476 1476
             list[i].unit = list[i].specification_name + list[i].packing_unit
1477
-            list[i].total_price = (list[i].total_count * list[i].price).toFixed(2)
1477
+            list[i].total_price = (list[i].warehousing_count * list[i].price).toFixed(2)
1478 1478
             list[i].expiry_date = this.getTime(list[i].expiry_date,"{y}-{m}-{d}")
1479 1479
             list[i].product_date = this.getTime(list[i].product_date,"{y}-{m}-{d}")
1480 1480
             for(let j=0;j<this.manufacturer.length;j++){
@@ -1482,14 +1482,15 @@ export default {
1482 1482
                   list[i].manufacturer = this.manufacturer[j].manufacturer_name
1483 1483
                }
1484 1484
             }
1485
-
1485
+           console.log("经销⬆商",this.dealer)
1486 1486
            for(let z=0;z<this.dealer.length;z++){
1487
-               if(list[i].dealer = this.dealer[z].id){
1487
+               if(list[i].dealer == this.dealer[z].id){
1488 1488
                  list[i].dealer = this.dealer[z].dealer_name
1489 1489
                }
1490 1490
             }
1491 1491
           }
1492 1492
           console.log("表格2222222",this.exportList)
1493
+          
1493 1494
           this.exportList = list
1494 1495
         }
1495 1496
       })
@@ -1501,8 +1502,8 @@ export default {
1501 1502
       }
1502 1503
       import('@/vendor/Export2Excel').then(excel => {
1503 1504
 
1504
-      const tHeader = ['耗材名称','注册证号/批准文号/备案凭证号', '规格型号','生产厂家','单位','进货价','入库数量','总价','批号','生产日期','有效日期']
1505
-      const filterVal = ['good_name', 'license_number', 'unit','manufacturer','packing_unit','price','warehousing_count','total_price','number','product_date','expiry_date']
1505
+      const tHeader = ['耗材名称','注册证号/批准文号/备案凭证号', '规格型号','生产厂家','单位','进货价','入库数量','总价','批号','生产日期','有效日期','经销商']
1506
+      const filterVal = ['good_name', 'license_number', 'unit','manufacturer','packing_unit','price','warehousing_count','total_price','number','product_date','expiry_date','dealer']
1506 1507
 
1507 1508
       console.log("table",this.exportList)
1508 1509
       

+ 3 - 3
src/xt_pages/stock/stockInOrderAdd.vue Parādīt failu

@@ -42,7 +42,7 @@
42 42
                     popper-class="my-autocomplete"
43 43
                     v-model="scope.row.good_name"
44 44
                     :fetch-suggestions="querySearchAsync"
45
-                    :trigger-on-focus="false"
45
+                    :trigger-on-focus="true"
46 46
                     placeholder="请输入耗材名称"
47 47
                     @select="handleSelect"
48 48
                     @input="changeGoodName(scope.$index)"
@@ -167,7 +167,7 @@
167 167
             </template>
168 168
             <template slot-scope="scope">
169 169
               <el-form-item style="padding-top: 20px">
170
-                <el-input placeholder="请输入批号" v-model="scope.row.license_number"></el-input>
170
+                <el-input placeholder="请输入批号" v-model="scope.row.license_number" ></el-input>
171 171
               </el-form-item>
172 172
             </template>
173 173
           </el-table-column>
@@ -732,10 +732,10 @@
732 732
         })
733 733
       },
734 734
       changeGoodName(val){
735
+        console.log("val",val)
735 736
         this.currentIndex = val
736 737
       },
737 738
       handleSelect(val){
738
-        console.log("val",val)
739 739
          for(let i=0;i<this.recordInfo.recordData.length;i++){
740 740
            if(this.currentIndex == i){
741 741
               this.recordInfo.recordData[i].good_type_id = val.id

+ 2 - 1
src/xt_pages/stock/stockInOrderEdit.vue Parādīt failu

@@ -109,7 +109,7 @@
109 109
                     popper-class="my-autocomplete"
110 110
                     v-model="scope.row.good_name"
111 111
                     :fetch-suggestions="querySearchAsync"
112
-                    :trigger-on-focus="false"
112
+                    :trigger-on-focus="true"
113 113
                     placeholder="请输入耗材名称"
114 114
                     @select="handleSelect"
115 115
                     @input="changeGoodName(scope.$index)"
@@ -273,6 +273,7 @@
273 273
                 <el-input
274 274
                   placeholder="请输入批号"
275 275
                   v-model="scope.row.license_number"
276
+                  
276 277
                 ></el-input>
277 278
               </el-form-item>
278 279
             </template>

+ 88 - 38
src/xt_pages/stock/stockOutOrder.vue Parādīt failu

@@ -194,11 +194,11 @@
194 194
               {{ scope.row.specification_name}} / {{scope.row.packing_unit}}
195 195
             </template>
196 196
           </el-table-column>
197
-          <el-table-column label="批号" align="center">
197
+          <!-- <el-table-column label="批号" align="center">
198 198
             <template slot-scope="scope">
199 199
               {{ scope.row.number}}
200 200
             </template>
201
-          </el-table-column>
201
+          </el-table-column> -->
202 202
           <el-table-column label="出库数量" align="center">
203 203
             <template slot-scope="scope">
204 204
               <span v-if="scope.row.is_sys == 0">{{ scope.row.count}}{{scope.row.packing_unit}}</span> 
@@ -212,7 +212,8 @@
212 212
           </el-table-column>
213 213
           <el-table-column label="总价" align="center">
214 214
             <template slot-scope="scope">
215
-              {{ (scope.row.count * scope.row.price).toFixed(2)}}
215
+             <span v-if="scope.row.is_sys == 0">{{ (scope.row.count * scope.row.price).toFixed(2)}}</span> 
216
+             <span v-if="scope.row.is_sys == 1">{{(getOutStockCount(scope.row.good_id)*scope.row.price).toFixed(2)}}</span>
216 217
             </template>
217 218
           </el-table-column>
218 219
           <el-table-column label="生产厂家" align="center">
@@ -235,11 +236,11 @@
235 236
               {{ getTime(scope.row.expiry_date,"{y}-{m}-{d}")}}
236 237
             </template>
237 238
           </el-table-column>
238
-          <el-table-column label="批准文号" align="center">
239
+          <!-- <el-table-column label="批准文号" align="center">
239 240
             <template slot-scope="scope">
240 241
               {{ scope.row.license_number}}
241 242
             </template>
242
-          </el-table-column>
243
+          </el-table-column> -->
243 244
           <el-table-column label="备注" align="center">
244 245
             <template slot-scope="scope">
245 246
               {{ scope.row.remark }}
@@ -247,7 +248,7 @@
247 248
           </el-table-column>
248 249
           <el-table-column label="操作" align="center">
249 250
             <template slot-scope="scope">
250
-              <span v-if="scope.row.is_sys == 1"  style="color: #589ff8" @click="GetOrderDetailById(scope.row)">使用明细</span>
251
+              <span style="color: #589ff8" @click="GetOrderDetailById(scope.row)">使用明细</span>
251 252
             </template>
252 253
           </el-table-column>
253 254
         </el-table>
@@ -384,7 +385,7 @@
384 385
       </div>
385 386
      
386 387
        <el-row :gutter="12" style="margin-top: 10px">
387
-        <el-table :data="userList" :class="signAndWeighBoxPatients" style="width: 80%"
388
+        <el-table :data="infoList" :class="signAndWeighBoxPatients" style="width: 80%"
388 389
                   border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
389 390
         >
390 391
           <el-table-column min-width="35" align="center">
@@ -392,8 +393,7 @@
392 393
               <span>序号</span>
393 394
             </template>
394 395
             <template slot-scope="scope">
395
-              <span v-if="scope.row.is_total == 0">{{scope.$index+1}}</span>
396
-              <span v-if="scope.row.is_total == 1">{{'合计'}}</span>
396
+              {{scope.$index+1}}
397 397
             </template>
398 398
           </el-table-column>
399 399
 
@@ -402,8 +402,7 @@
402 402
               <span>使用人</span>
403 403
             </template>
404 404
             <template slot-scope="scope">
405
-              <span v-if="scope.row.is_total == 0">{{scope.row.user.name}}</span>
406
-              <span v-if="scope.row.is_total == 1"></span>
405
+              系统
407 406
             </template>
408 407
           </el-table-column>
409 408
           <el-table-column min-width="35" align="center">
@@ -411,9 +410,15 @@
411 410
               <span>使用数量</span>
412 411
             </template>
413 412
             <template slot-scope="scope">
414
-              <span v-if="scope.row.is_total == 0">{{scope.row.count}}{{scope.row.info.packing_unit}}</span>
415
-              <span  v-if="scope.row.is_total == 1">{{scope.row.total}}{{scope.row.info.packing_unit}} </span>
416
-
413
+             {{scope.row.count}}
414
+            </template>
415
+          </el-table-column>
416
+          <el-table-column min-width="35" align="center">
417
+            <template slot="header" slot-scope="scope">
418
+              <span>批次号</span>
419
+            </template>
420
+            <template slot-scope="scope">
421
+               {{scope.row.number}}
417 422
             </template>
418 423
           </el-table-column>
419 424
           <el-table-column min-width="35" align="center">
@@ -422,7 +427,6 @@
422 427
             </template>
423 428
             <template slot-scope="scope">
424 429
               <span>{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
425
-
426 430
             </template>
427 431
           </el-table-column>
428 432
 
@@ -430,8 +434,8 @@
430 434
       </el-row>
431 435
     </span>
432 436
     <span slot="footer" class="dialog-footer">
433
-      <el-button @click="editdialogVisible = false">取 消</el-button>
434
-      <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
437
+      <el-button @click="editdialogVisibleTwo = false">取 消</el-button>
438
+      <el-button type="primary" @click="editdialogVisibleTwo = false">确 定</el-button>
435 439
     </span>
436 440
   </el-dialog>
437 441
   
@@ -574,7 +578,7 @@
574 578
     <el-dialog
575 579
       title="出库明细"
576 580
       :visible.sync="editdialogVisibleThree"
577
-      width="60%">
581
+      width="70%">
578 582
       <span>
579 583
          <div class="app-container">
580 584
 
@@ -582,11 +586,6 @@
582 586
         <span style="font-size: 18px;color: #606266">商品使用明细</span>
583 587
       </div>
584 588
 
585
-       <!-- <div class="cell clearfix">
586
-        <span style="width: 300px;color: #606266">商品类型: {{userList[0].type.type_name}} </span>
587
-        <span style="width: 300px;color: #606266">规格名称: {{userList[0].info.specification_name}}</span>
588
-      </div> -->
589
-
590 589
       <el-row :gutter="12" style="margin-top: 10px">
591 590
       <el-table :data="userList" :class="signAndWeighBoxPatients" style="width: 50%"
592 591
               border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}">
@@ -619,7 +618,7 @@
619 618
 
620 619
             </template>
621 620
           </el-table-column>
622
-          <el-table-column min-width="35" align="center">
621
+          <el-table-column min-width="60" align="center">
623 622
             <template slot="header" slot-scope="scope">
624 623
               <span>使用时间</span>
625 624
             </template>
@@ -628,7 +627,23 @@
628 627
 
629 628
             </template>
630 629
           </el-table-column>
631
-
630
+         <el-table-column min-width="70" align="center">
631
+            <template slot="header" slot-scope="scope">
632
+              <span>批次号</span>
633
+            </template>
634
+            <template slot-scope="scope">
635
+              <span v-if="scope.row.is_total == 0">{{getNumber(scope.row.id)}}</span>
636
+            </template>
637
+          </el-table-column>
638
+<!-- 
639
+          <el-table-column min-width="70" align="center">
640
+            <template slot="header" slot-scope="scope">
641
+              <span>批次详情</span>
642
+            </template>
643
+            <template slot-scope="scope">
644
+              <span v-if="scope.row.is_total == 0">批次详情</span>
645
+            </template>
646
+          </el-table-column> -->
632 647
         </el-table>
633 648
       </el-row>
634 649
     </div>
@@ -788,7 +803,9 @@ export default {
788 803
       editdialogVisibleThree:false,
789 804
       order_id:"",
790 805
       warehouse_out_time:"",
791
-      exportList:[]
806
+      exportList:[],
807
+      is_sys:0,
808
+      infoList:[]
792 809
     };
793 810
   },
794 811
   methods: {
@@ -933,8 +950,8 @@ export default {
933 950
           this.dealer = response.data.data.dealer;
934 951
           this.goodInfo = response.data.data.goodInfo
935 952
           this.goodType = response.data.data.goodType
936
-          this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
937
-          this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
953
+          // this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
954
+          // this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
938 955
           this.getlist()
939 956
         }
940 957
       });
@@ -1004,6 +1021,7 @@ export default {
1004 1021
       }
1005 1022
     },
1006 1023
     select(selection) {
1024
+      
1007 1025
       var ids = []
1008 1026
       for(let i=0;i<selection.length;i++){
1009 1027
         ids.push(selection[i].id)
@@ -1017,19 +1035,22 @@ export default {
1017 1035
 
1018 1036
     },
1019 1037
     batchDelete() {
1038
+    
1020 1039
       if (this.selectedTableData.length <= 0) {
1021 1040
         this.$message.error("请选择要删除的记录");
1022 1041
         return;
1023 1042
       }
1024 1043
       const ids = [];
1025 1044
       for (let i = 0; i < this.selectedTableData.length; i++) {
1026
-        ids.push(this.selectedTableData[i].id);
1045
+         if(this.selectedTableData[i].is_sys == 0){
1046
+           ids.push(this.selectedTableData[i].id);
1047
+         }
1027 1048
       }
1028 1049
       const idStr = ids.join(",");
1029 1050
       const params = {
1030 1051
         ids: idStr
1031 1052
       };
1032
-      this.$confirm("确认删除退货单记录?", "删除退货单记录", {
1053
+      this.$confirm("确认删除出库单记录?", "删除出库单记录", {
1033 1054
         confirmButtonText: "确定",
1034 1055
         cancelButtonText: "取消",
1035 1056
         type: "warning"
@@ -1060,10 +1081,6 @@ export default {
1060 1081
         .catch(() => {});
1061 1082
     },
1062 1083
 
1063
- 
1064
-
1065
-    
1066
-  
1067 1084
 
1068 1085
     handleSearch(val){
1069 1086
       this.tableList = []
@@ -1083,6 +1100,12 @@ export default {
1083 1100
               var list = response.data.data.list
1084 1101
               console.log("list22222222",list)
1085 1102
               for(let i=0;i<list.length;i++){
1103
+                if(list[i].dealer == 0){
1104
+                  list[i].dealer = ""
1105
+                }
1106
+                if(list[i].manufacturer == 0){
1107
+                  list[i].manufacturer = ""
1108
+                }
1086 1109
                 this.tableList.push(list[i])
1087 1110
               }
1088 1111
             }
@@ -1479,8 +1502,10 @@ export default {
1479 1502
       }, 
1480 1503
      
1481 1504
       GetOrderDetailById(val){
1505
+        console.log("val",val)
1482 1506
          this.userList =[]
1483 1507
          var params = {
1508
+           id:val.warehouse_out_id,
1484 1509
            good_id:val.good_id,
1485 1510
            record_time:val.sys_record_time,
1486 1511
           }
@@ -1489,6 +1514,9 @@ export default {
1489 1514
               var total = 0
1490 1515
               var list = response.data.data.list
1491 1516
               var arrList =  this.unique(list)
1517
+              var info = response.data.data.info
1518
+              this.infoList = info
1519
+              console.log("info列表22222222",info)
1492 1520
               for (let i = 0; i < arrList.length; i++) {
1493 1521
                 var obj = arrList[i]
1494 1522
                 obj['is_total'] = 0
@@ -1499,18 +1527,40 @@ export default {
1499 1527
                 is_total: 1,
1500 1528
                 total: total,
1501 1529
               })
1502
-              // this.type_name = this.userList[0].type.type_name
1503
-              // this.specification_name = this.userList[0].info.specification_name
1530
+
1504 1531
               console.log("详情数据区",this.userList)
1505
-              this.editdialogVisibleThree = true
1532
+              if(val.is_sys == 1){
1533
+                this.editdialogVisibleThree = true
1534
+              }
1535
+              if(val.is_sys == 0){
1536
+                this.editdialogVisibleTwo = true
1537
+              }  
1506 1538
             }
1507 1539
          })
1508 1540
       },
1541
+      getNumber(id){
1542
+        var str = ""
1543
+        var arr = []
1544
+        var ids = []
1545
+        for(let i=0;i<this.userList.length;i++){
1546
+          if(id == this.userList[i].id){
1547
+            arr.push(...this.userList[i].warehouseOutInfo)
1548
+          }
1549
+        }
1550
+        console.log("arr",arr)
1551
+        if(arr.length > 0){
1552
+          for(let i=0;i<arr.length;i++){
1553
+              ids.push(arr[i].number)
1554
+          }
1555
+        }
1556
+        str = ids.join(",")
1557
+        return str
1558
+      },
1509 1559
       toPrint(){
1510 1560
         if(this.order_id == ""){
1511 1561
           this.$message.error("请选择出库单")
1512 1562
         }else{
1513
-            this.$router.push({path:"/stock/out/detail/print?id="+this.order_id+"&warehouse_out_time="+this.warehouse_out_time})
1563
+            this.$router.push({path:"/stock/out/detail/print?id="+this.order_id+"&warehouse_out_time="+this.warehouse_out_time+"&keyword="+this.searchKey+"&start_time="+this.start_time+"&end_time="+this.end_time})
1514 1564
         }
1515 1565
       },
1516 1566
       getlist(){

+ 33 - 58
src/xt_pages/stock/stockOutOrderAdd.vue Parādīt failu

@@ -52,46 +52,7 @@
52 52
         ></el-date-picker>
53 53
       </div>
54 54
 
55
-      <!-- <div class="cell clearfix">
56
-        <label class="title"><span class="name">经销商</span> : </label>
57
-        <el-select
58
-          size="small"
59
-          v-model="form.dealer"
60
-          filterable
61
-          placeholder="请选择经销商"
62
-          @change="changeDealer"
63
-          style="width: 200px;"
64
-        >
65
-          <el-option
66
-            v-for="(option, index) in dealer"
67
-            :key="index"
68
-            :label="option.dealer_name"
69
-            :value="option.id"
70
-          >
71
-          </el-option>
72
-        </el-select>
73
-      </div> -->
74
-
75
-      <!-- <div class="cell clearfix">
76
-        <label class="title"><span class="name">厂商</span> : </label>
77
-        <el-select
78
-          size="small"
79
-          v-model="form.manufacturer"
80
-          filterable
81
-          placeholder="请选择厂商"
82
-          @change="changeManufacturer"
83
-          style="width: 200px;"
84
-        >
85
-          <el-option
86
-            v-for="(option, index) in manufacturer"
87
-            :key="index"
88
-            :label="option.manufacturer_name"
89
-            :value="option.id"
90
-          >
91
-          </el-option>
92
-        </el-select>
93
-      </div> -->
94
-
55
+    
95 56
       <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
96 57
         <el-table
97 58
           :data="recordInfo.recordData"
@@ -113,7 +74,7 @@
113 74
                     popper-class="my-autocomplete"
114 75
                     v-model="scope.row.good_name"
115 76
                     :fetch-suggestions="querySearchAsync"
116
-                    :trigger-on-focus="false"
77
+                    :trigger-on-focus="true"
117 78
                     placeholder="请输入耗材名称"
118 79
                     @select="handleSelect"
119 80
                     @input="changeGoodName(scope.$index)"
@@ -162,15 +123,15 @@
162 123
               <span>批号<span style="color: red"></span></span>
163 124
             </template>
164 125
             <template slot-scope="scope">
165
-               <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input>
166
-                <!-- <el-select v-model="scope.row.number" filterable placeholder="请选择">
126
+               <!-- <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input> -->
127
+                <el-select v-model="scope.row.number" filterable placeholder="请选择">
167 128
                   <el-option
168 129
                     v-for="(item,index) in numberList"
169 130
                     :key="index"
170 131
                     :label="item.number"
171 132
                     :value="item.number">
172 133
                   </el-option>
173
-                </el-select> -->
134
+                </el-select>
174 135
             </template>
175 136
           </el-table-column>
176 137
 
@@ -263,10 +224,10 @@
263 224
          
264 225
           <el-table-column  width="150" align="center">
265 226
             <template slot="header" slot-scope="scope">
266
-            <span>批准文号<span style="color: red"></span></span>
227
+            <span>批准文号<span style="color: red" ></span></span>
267 228
           </template>
268 229
           <template slot-scope="scope">
269
-              <el-input placeholder="请输入批准文号" v-model="scope.row.license_number"></el-input>
230
+              <el-input placeholder="请输入批准文号" v-model="scope.row.license_number" ></el-input>
270 231
           </template>
271 232
         </el-table-column>
272 233
 
@@ -332,11 +293,11 @@
332 293
 
333 294
 <script>
334 295
 import { uParseTime } from "@/utils/tools";
335
-import { getSalesReturnConfig, postWarehouseOut,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList } from "@/api/stock";
296
+import { getSalesReturnConfig, postWarehouseOut,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList,getStockBatchNumber } from "@/api/stock";
336 297
 
337 298
 import BreadCrumb from "../components/bread-crumb";
338 299
 import StockInDialog from './Dialog/stockInDialog'
339
-
300
+import { getDataConfig } from '@/utils/data'
340 301
 export default {
341 302
   components: { StockInDialog,  BreadCrumb },
342 303
   name: "salesReturnOrderAdd",
@@ -690,7 +651,6 @@ export default {
690 651
       console.log("keyrowrd",key)
691 652
       postSearchGoodList(key).then(response => {
692 653
         if (response.data.state == 1) {
693
-          
694 654
             var list = response.data.data.list
695 655
             console.log("33334445555",list)
696 656
             this.goodList = list
@@ -723,6 +683,9 @@ export default {
723 683
       this.currentIndex = val
724 684
     },
725 685
     handleSelect(val){
686
+       console.log("val2222222222",val)
687
+        //获取当前耗材的批号
688
+        this.getStockBatchNumber(val.id)
726 689
         for(let i=0;i<this.recordInfo.recordData.length;i++){
727 690
           if(this.currentIndex == i){
728 691
             this.recordInfo.recordData[i].good_type_id = val.id
@@ -744,19 +707,29 @@ export default {
744 707
             }else{
745 708
              this.recordInfo.recordData[i].dealer = val.dealer
746 709
             }
747
-           
748 710
          }
711
+
712
+       
749 713
       }
750 714
 
751
-       if(val.xt_warehouse_info.length > 0){
752
-           var obj = {id:"",name:""}
753
-          for(let j=0;j<val.xt_warehouse_info.length;j++){
754
-            this.numberList.push(val.xt_warehouse_info[j])
755
-          }
756
-          
715
+       
716
+    },
717
+
718
+    getStockBatchNumber(id){
719
+       var params = {
720
+         id:id
721
+       }
722
+      getStockBatchNumber(params).then(response=>{
723
+        if(response.data.state == 1){
724
+          var list = response.data.data.list
725
+          console.log("list2243444",list)
726
+          this.numberList = list
757 727
         }
758
-        console.log("9999999",this.numberList)
759
-    }
728
+     })
729
+    },
730
+    getDataConfig(module, filed_name) {
731
+      return getDataConfig(module, filed_name)
732
+    },
760 733
   },
761 734
   created() {
762 735
     var nowDate = new Date();
@@ -784,6 +757,8 @@ export default {
784 757
     this.recordInfo.recordData.push(tempObj);
785 758
     this.GetConfigInfo();
786 759
     this.propForm.goodUnit = this.$store.getters.good_unit;
760
+    this.unitList =  getDataConfig('hemodialysis','units')
761
+    console.log("单位",this.unitList)
787 762
   }
788 763
 };
789 764
 </script>

+ 60 - 3
src/xt_pages/stock/stockOutOrderDetailPrint.vue Parādīt failu

@@ -82,7 +82,7 @@
82 82
 
83 83
 <script>
84 84
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
85
-import { GetAllConfig,getWarehouseOutInfo,GetOutStockTotalCount,getGoodInfoList,getWarehouseOrderInfoList,getOrderDetailByOrderId } from "@/api/stock";
85
+import { GetAllConfig,getWarehouseOutInfo,GetOutStockTotalCount,getGoodInfoList,getWarehouseOrderInfoList,getOrderDetailByOrderId,getStockDrugCount } from "@/api/stock";
86 86
 import print from 'print-js'
87 87
 const moment = require('moment');
88 88
 import { uParseTime } from '@/utils/tools'
@@ -125,7 +125,11 @@ export default {
125 125
             orgName:'',
126 126
             orderInList:[],
127 127
             tableList:[],
128
-            orderList:[]
128
+            orderList:[],
129
+            countList:[],
130
+            outCountList:[],
131
+            autoCountList:[],
132
+            cancelCountList:[]
129 133
         }
130 134
     },
131 135
     methods:{
@@ -337,8 +341,60 @@ export default {
337 341
           }
338 342
         }
339 343
         return total_price
344
+      },
345
+
346
+     getStockDrugCount(){
347
+        var params ={
348
+          keywords: this.keywords,
349
+          start_time:this.start_time,
350
+          end_time:this.end_time,
351
+        }
352
+      getStockDrugCount(params).then(response=>{
353
+         if(response.data.state == 1){
354
+           var count = response.data.data.count
355
+           console.log("入库统计",count)
356
+           this.countList = count
357
+           var outlist = response.data.data.outList
358
+           console.log("出库数量",outlist)
359
+           this.outCountList = outlist
360
+           var autoCount = response.data.data.autoCount
361
+           console.log("autoCount",autoCount)
362
+           this.autoCountList = autoCount
363
+           var totalCount = response.data.data.totalCount
364
+           console.log("totalcount",totalCount)
365
+           this.cancelCountList = totalCount
366
+         }
367
+      })
368
+    },
369
+     stockInCount: function(row) {
370
+      let total = 0;
371
+      for (let i = 0; i < row.query_warehousing_info.length; i++) {
372
+        total = total + row.query_warehousing_info[i].warehousing_count;
373
+      }
374
+      return total;
375
+    },
376
+    salesReturnCount: function(row) {
377
+      let total = 0;
378
+      for (let i = 0; i < row.query_sales_return_info.length; i++) {
379
+        total = total + row.query_sales_return_info[i].count;
340 380
       }
381
+      return total;
382
+    },
383
+    stockOutCount: function(row) {
341 384
 
385
+      let total = 0;
386
+      for (let i = 0; i < row.query_warehouseout_info.length; i++) {
387
+        total = total + row.query_warehouseout_info[i].count;
388
+      }
389
+      return total;
390
+    },
391
+    cancelStockCount: function(row) {
392
+      let total = 0;
393
+      for (let i = 0; i < row.query_cancel_stock_info.length; i++) {
394
+        total = total + row.query_cancel_stock_info[i].count;
395
+      }
396
+      return total;
397
+    },
342 398
     },
343 399
     created(){
344 400
       this.orgName = this.$store.getters.xt_user.org.org_name;
@@ -346,9 +402,10 @@ export default {
346 402
       const order_id = this.$route.query.id;
347 403
       const warehouse_out_time = this.$route.query.warehouse_out_time;
348 404
       this.GetConfigInfo();
349
-      this.GetTotalCount(warehouse_out_time);
405
+      // this.GetTotalCount(warehouse_out_time);
350 406
       this.GetOrderDetailOne(order_id)
351 407
       this.getList()
408
+      this.getStockDrugCount()
352 409
     }
353 410
 }
354 411
 </script>

+ 24 - 16
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -54,7 +54,7 @@
54 54
                       popper-class="my-autocomplete"
55 55
                       v-model="scope.row.good_name"
56 56
                       :fetch-suggestions="querySearchAsync"
57
-                      :trigger-on-focus="false"
57
+                      :trigger-on-focus="true"
58 58
                       placeholder="请输入耗材名称"
59 59
                       @select="handleSelect"
60 60
                       @input="changeGoodName(scope.$index)"
@@ -104,15 +104,15 @@
104 104
             </template>
105 105
             <template slot-scope="scope">
106 106
               <el-form-item style="padding-top: 20px">
107
-                <el-input placeholder="请输入批号" v-model="scope.row.number"  :disabled="stockShow"></el-input>
108
-               <!-- <el-select v-model="scope.row.number" filterable placeholder="请选择">
107
+                <!-- <el-input placeholder="请输入批号" v-model="scope.row.number"  :disabled="stockShow"></el-input> -->
108
+               <el-select v-model="scope.row.number" filterable placeholder="请选择" :disabled="stockTrue">
109 109
                   <el-option
110 110
                     v-for="(item,index) in numberList"
111 111
                     :key="index"
112 112
                     :label="item.number"
113 113
                     :value="item.number">
114 114
                   </el-option>
115
-                </el-select> -->
115
+                </el-select>
116 116
               </el-form-item>
117 117
             </template>
118 118
           </el-table-column>
@@ -196,7 +196,7 @@
196 196
             <span>批准文号<span style="color: red"></span></span>
197 197
           </template>
198 198
           <template slot-scope="scope">
199
-              <el-input placeholder="请输入批准文号" v-model="scope.row.license_number"></el-input>
199
+              <el-input placeholder="请输入批准文号" v-model="scope.row.license_number" ></el-input>
200 200
           </template>
201 201
         </el-table-column>
202 202
 
@@ -252,7 +252,7 @@
252 252
 <script>
253 253
   import { uParseTime } from '@/utils/tools'
254 254
 
255
-  import { deleteWarehouseOutInfo, editWarehouseoutInfo, getSalesReturnConfig, getWarehouseOutInfo,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList,getSingleOutOrderDetail } from '@/api/stock'
255
+  import { deleteWarehouseOutInfo, editWarehouseoutInfo, getSalesReturnConfig, getWarehouseOutInfo,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList,getSingleOutOrderDetail,getStockBatchNumber } from '@/api/stock'
256 256
   import BreadCrumb from '../components/bread-crumb'
257 257
   import StockInDialog from './Dialog/stockInDialog'
258 258
 
@@ -320,7 +320,8 @@
320 320
         goodType: [],
321 321
         goodInfo:[],
322 322
         numberList:[],
323
-        stockShow:false
323
+        stockShow:false,
324
+        stockTrue:true,
324 325
       }
325 326
     },
326 327
     methods: {
@@ -400,6 +401,7 @@
400 401
         return name;
401 402
       }, 
402 403
       handleEdit: function(index, row) {
404
+        this.stockTrue = false
403 405
         if(this.stockShow == true){
404 406
          this.$message.error("自动出库数据无法编辑")
405 407
          return
@@ -624,6 +626,7 @@
624 626
     },
625 627
     handleSelect(val){
626 628
        console.log("val22222",val)
629
+        this.getStockBatchNumber(val.id)
627 630
         for(let i=0;i<this.recordInfo.recordData.length;i++){
628 631
           if(this.currentIndex == i){
629 632
             this.recordInfo.recordData[i].good_type_id = val.id
@@ -649,14 +652,6 @@
649 652
            
650 653
          }
651 654
       }
652
-      // if(val.xt_warehouse_info.length > 0){
653
-      //     for(let j=0;j<val.xt_warehouse_info.length;j++){
654
-      //       this.numberList.push(val.xt_warehouse_info[j])
655
-      //     }
656
-      //    this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
657
-      // }else{
658
-      //   this.recordInfo.recordData[i].number = ""
659
-      // }
660 655
     },
661 656
      getSingleOutOrderDetail(order_id){
662 657
 
@@ -699,7 +694,19 @@
699 694
           loading.close();
700 695
         }
701 696
       })
702
-    }
697
+    },
698
+      getStockBatchNumber(id){
699
+        var params = {
700
+          id:id
701
+        }
702
+        getStockBatchNumber(params).then(response=>{
703
+          if(response.data.state == 1){
704
+            var list = response.data.data.list
705
+            console.log("list2243444",list)
706
+            this.numberList = list
707
+          }
708
+      })
709
+      }
703 710
     },
704 711
     created() {
705 712
       var nowDate = new Date();
@@ -722,6 +729,7 @@
722 729
       if(is_sys == 1){
723 730
         this.stockShow = true
724 731
       }
732
+      
725 733
     }
726 734
 
727 735
   }

+ 3 - 3
src/xt_pages/stock/stockQuery.vue Parādīt failu

@@ -514,9 +514,9 @@ export default {
514 514
     },
515 515
     getStockDrugCount(){
516 516
         var params ={
517
-          keywords: this.keywords,
518
-          start_time:this.start_time,
519
-          end_time:this.end_time,
517
+          keywords: this.$route.query.keywords,
518
+          start_time:this.$route.query.start_time,
519
+          end_time:this.$route.query.end_time,
520 520
         }
521 521
       getStockDrugCount(params).then(response=>{
522 522
          if(response.data.state == 1){