Browse Source

打印单

XMLWAN 4 years ago
parent
commit
f531aed664

+ 1 - 0
src/api/advice.js View File

498
 }
498
 }
499
 
499
 
500
 export function getSchedualDoctors (params) {
500
 export function getSchedualDoctors (params) {
501
+  console.log("params-----",params)
501
   return request({
502
   return request({
502
     url: '/api/schedule/advices',
503
     url: '/api/schedule/advices',
503
     method: 'get',
504
     method: 'get',

+ 53 - 5
src/xt_pages/dialysis/dialysisDoctorAdvice.vue View File

64
           </ul>
64
           </ul>
65
         </div>
65
         </div>
66
       </div>
66
       </div>
67
-
67
+     
68
+     <div class="cell clearfix">
69
+        <label class="title"> <span class="name">给药途径</span> : </label>
70
+        <div class="time">
71
+          <ul class>
72
+            <li
73
+              :class="item.id == delivery_way ? 'active' : ''"
74
+              @click="selectDeliveryWay(item.id)"
75
+              v-for="item in deliveryWay"
76
+              :key="item.id"
77
+            >
78
+              {{ item.name }}
79
+            </li>
80
+          </ul>
81
+        </div>
82
+      </div>
83
+    
68
       <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
84
       <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
69
         @selection-change="handleSelectionChange"
85
         @selection-change="handleSelectionChange"
70
         :row-class-name="tableRowClassName"
86
         :row-class-name="tableRowClassName"
353
         schedul_type: 0,
369
         schedul_type: 0,
354
         partition_type: 0,
370
         partition_type: 0,
355
         schedul_time: "",
371
         schedul_time: "",
356
-        keywords: ""
372
+        keywords: "",
357
       },
373
       },
358
       selecting_schs: [],
374
       selecting_schs: [],
359
       partitionArr: [],
375
       partitionArr: [],
361
       scheduleMap:[],
377
       scheduleMap:[],
362
       show:true,
378
       show:true,
363
       showOne:false,
379
       showOne:false,
380
+      deliveryWay:[],
381
+      delivery_way:0,
364
     };
382
     };
365
   },
383
   },
366
   created() {
384
   created() {
417
       this.listQuery.partition_type = partitionType;
435
       this.listQuery.partition_type = partitionType;
418
       this.requestSchedualDoctors();
436
       this.requestSchedualDoctors();
419
     },
437
     },
438
+    
439
+    selectDeliveryWay(val){
440
+       this.delivery_way = val
441
+       this.requestSchedualDoctors()
442
+    },
443
+
420
 
444
 
421
     changeTime() {
445
     changeTime() {
422
       this.listQuery.schedul_time = this.time;
446
       this.listQuery.schedul_time = this.time;
430
         } else {
454
         } else {
431
           this.partitionArr = response.data.data.zone;
455
           this.partitionArr = response.data.data.zone;
432
           this.partitionArr.unshift({ id: 0, name: "全部" });
456
           this.partitionArr.unshift({ id: 0, name: "全部" });
457
+          var dics  =  response.data.data.dics
458
+          var obj = {id:0,name:"全部"}
459
+          this.deliveryWay.push(obj)
460
+          this.deliveryWay.push(...dics)
433
         }
461
         }
434
       });
462
       });
435
     },
463
     },
436
     requestSchedualDoctors (time) {
464
     requestSchedualDoctors (time) {
465
+        
466
+        var name = ""
467
+        for(let i=0;i<this.deliveryWay.length;i++){
468
+            if(this.delivery_way == this.deliveryWay[i].id){
469
+              name = this.deliveryWay[i].name
470
+            }
471
+        }
472
+        if(name == '全部'){
473
+          name = ""
474
+        }
475
+
437
         let newTime =  moment(time).format('YYYY-MM-DD')
476
         let newTime =  moment(time).format('YYYY-MM-DD')
438
         getSchedualDoctors({
477
         getSchedualDoctors({
439
         date: newTime,
478
         date: newTime,
440
         patient_type: 0,
479
         patient_type: 0,
441
-        advice_type: 2
442
-        }).then(rs => {
480
+        advice_type: 2,
481
+        delivery_way:name}).then(rs => {
443
         var resp = rs.data
482
         var resp = rs.data
444
         if (resp.state == 1) {
483
         if (resp.state == 1) {
445
             this.admin_users = resp.data.adminUser
484
             this.admin_users = resp.data.adminUser
609
       }
648
       }
610
     //   console.log("sch_ids",sch_ids)
649
     //   console.log("sch_ids",sch_ids)
611
       this.$store.dispatch("SetAdviceIDs", sch_ids);
650
       this.$store.dispatch("SetAdviceIDs", sch_ids);
612
-      this.$router.push({ path: "/dialysis/doctorAdvicePrint",query:{time: new Date(this.time).getTime()} });
651
+       var name = ""
652
+        for(let i=0;i<this.deliveryWay.length;i++){
653
+            if(this.delivery_way == this.deliveryWay[i].id){
654
+              name = this.deliveryWay[i].name
655
+            }
656
+        }
657
+        if(name == '全部'){
658
+          name = ""
659
+       }
660
+      this.$router.push({ path: "/dialysis/doctorAdvicePrint",query:{time: new Date(this.time).getTime(),delivery_way:name} });
613
 
661
 
614
     },
662
     },
615
     batchPrintActionOne: function() {
663
     batchPrintActionOne: function() {

+ 6 - 1
src/xt_pages/dialysis/doctorAdvicePrint.vue View File

258
             time:'',
258
             time:'',
259
             show:true,
259
             show:true,
260
             showOne:false,
260
             showOne:false,
261
+            delivery_way:""
261
         }
262
         }
262
     },
263
     },
263
     methods:{
264
     methods:{
277
             getSchedualDoctors({
278
             getSchedualDoctors({
278
             date: newTime,
279
             date: newTime,
279
             patient_type: 0,
280
             patient_type: 0,
280
-            advice_type: 2
281
+            advice_type: 2,
282
+            delivery_way:this.delivery_way,
281
             }).then(rs => {
283
             }).then(rs => {
282
                 var resp = rs.data
284
                 var resp = rs.data
283
                 if (resp.state == 1) {
285
                 if (resp.state == 1) {
741
     },
743
     },
742
     created(){
744
     created(){
743
       var time = this.$route.query.time
745
       var time = this.$route.query.time
746
+      var delivery_way = this.$route.query.delivery_way
747
+      console.log("delivery_Way",delivery_way)
748
+      this.delivery_way = delivery_way
744
       this.time = moment(time).format('YYYY-MM-DD')
749
       this.time = moment(time).format('YYYY-MM-DD')
745
       console.log(11,this.$route.query)
750
       console.log(11,this.$route.query)
746
       this.requestSchedualDoctors(time)
751
       this.requestSchedualDoctors(time)

+ 17 - 10
src/xt_pages/stock/detail/print.vue View File

27
               <td style="line-height: 50px" width="250">规格型号</td>
27
               <td style="line-height: 50px" width="250">规格型号</td>
28
               <td style="line-height: 50px" width="50">单位</td>
28
               <td style="line-height: 50px" width="50">单位</td>
29
               <!-- <td style="line-height: 50px" width="250">耗材类型</td> -->
29
               <!-- <td style="line-height: 50px" width="250">耗材类型</td> -->
30
-            
31
-              
30
+
31
+
32
               <td style="line-height: 50px" width="80">数量</td>
32
               <td style="line-height: 50px" width="80">数量</td>
33
               <td style="line-height:50px" width="80" v-if="type == 1">进货价</td>
33
               <td style="line-height:50px" width="80" v-if="type == 1">进货价</td>
34
-             <td style="line-height:50px" width="80" v-if="type == 3">出货价</td>
34
+              <td style="line-height:50px" width="80" v-if="type == 3">出货价</td>
35
               <td style="line-height: 50px" width="80" v-if="type == 1 || type == 3">总价</td>
35
               <td style="line-height: 50px" width="80" v-if="type == 1 || type == 3">总价</td>
36
               <td style="line-height: 50px" width="">备 注</td>
36
               <td style="line-height: 50px" width="">备 注</td>
37
             </tr>
37
             </tr>
40
               <td style="line-height: 50px">&nbsp;
40
               <td style="line-height: 50px">&nbsp;
41
                 {{index+1}}
41
                 {{index+1}}
42
               </td>
42
               </td>
43
-               <td style="line-height: 50px">
43
+              <td style="line-height: 50px">
44
                 <span>{{stock.good_name}}</span>
44
                 <span>{{stock.good_name}}</span>
45
               </td>
45
               </td>
46
-               <td style="line-height: 50px">
46
+              <td style="line-height: 50px">
47
                 <span v-if="stock">{{stock.specification_name}}</span>
47
                 <span v-if="stock">{{stock.specification_name}}</span>
48
               </td>
48
               </td>
49
               <td style="line-height: 50px">
49
               <td style="line-height: 50px">
150
           style: style,
150
           style: style,
151
           scanStyles: false
151
           scanStyles: false
152
         })
152
         })
153
-      }, 
153
+      },
154
       getDialysisRecord() {
154
       getDialysisRecord() {
155
         this.loading = true
155
         this.loading = true
156
         getPrintStockGood(this.queryParams).then(response => {
156
         getPrintStockGood(this.queryParams).then(response => {
225
 
225
 
226
       }, calTotal(stock) {
226
       }, calTotal(stock) {
227
 
227
 
228
+        console.log(stock)
229
+
228
         var array = []
230
         var array = []
229
         if (this.type == 1) {
231
         if (this.type == 1) {
230
           array = stock.query_warehousing_info
232
           array = stock.query_warehousing_info
234
 
236
 
235
         let total_price = 0.0
237
         let total_price = 0.0
236
         for (let i = 0; i < array.length; i++) {
238
         for (let i = 0; i < array.length; i++) {
237
-          total_price = total_price + array[i].total_price
239
+          if(this.type == 1) {
240
+            total_price = total_price + array[i].warehousing_count * array[i].price
241
+          }else if(this.type == 3){
242
+            total_price = total_price + array[i].count * array[i].price
243
+
244
+          }
238
         }
245
         }
239
         return  Math.floor(total_price * 100) / 100
246
         return  Math.floor(total_price * 100) / 100
240
       }, calTotalPrice() {
247
       }, calTotalPrice() {
280
       getUnit(id){
287
       getUnit(id){
281
         var name = ""
288
         var name = ""
282
         for(let i=0;i<this.goodUnit.length;i++){
289
         for(let i=0;i<this.goodUnit.length;i++){
283
-           if(this.goodUnit[i].id == id){
284
-              name = this.goodUnit[i].name
285
-           }
290
+          if(this.goodUnit[i].id == id){
291
+            name = this.goodUnit[i].name
292
+          }
286
         }
293
         }
287
         return name
294
         return name
288
       }
295
       }

+ 24 - 5
src/xt_pages/stock/stockQuery.vue View File

310
     calculate: function(val) {
310
     calculate: function(val) {
311
       return Math.round(parseFloat(val) * 100) / 100;
311
       return Math.round(parseFloat(val) * 100) / 100;
312
     },
312
     },
313
-    startTimeChange: function() {
314
-      this.GetAllStockQuery();
313
+    startTimeChange: function(val) {
314
+      var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
315
+      
316
+      if (time > 0) {
317
+        this.$message.error("开始时间不能大于结束时间");
318
+        this.start_time = "";
319
+      } else {
320
+        this.GetAllStockQuery();
321
+      }
315
     },
322
     },
316
-    endTimeChange: function() {
317
-      this.GetAllStockQuery();
323
+    endTimeChange: function(val) {
324
+      var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
325
+      if (time < 0) {
326
+        this.$message.error("结束时间不能小于开始时间");
327
+        this.end_time = "";
328
+      } else {
329
+        this.GetAllStockQuery();
330
+      }
331
+     
318
     },
332
     },
319
     stockInCount: function(row) {
333
     stockInCount: function(row) {
320
       let total = 0;
334
       let total = 0;
386
            } 
400
            } 
387
         }
401
         }
388
         return name
402
         return name
389
-      }
403
+      },
404
+
405
+      getTimestamp(time) {
406
+      // 把时间日期转成时间戳
407
+      return new Date(time).getTime() / 1000;
408
+    },
390
   }
409
   }
391
 };
410
 };
392
 </script>
411
 </script>