Browse Source

打印单

XMLWAN 4 years ago
parent
commit
f531aed664

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

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

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

@@ -64,7 +64,23 @@
64 64
           </ul>
65 65
         </div>
66 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 84
       <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
69 85
         @selection-change="handleSelectionChange"
70 86
         :row-class-name="tableRowClassName"
@@ -353,7 +369,7 @@ export default {
353 369
         schedul_type: 0,
354 370
         partition_type: 0,
355 371
         schedul_time: "",
356
-        keywords: ""
372
+        keywords: "",
357 373
       },
358 374
       selecting_schs: [],
359 375
       partitionArr: [],
@@ -361,6 +377,8 @@ export default {
361 377
       scheduleMap:[],
362 378
       show:true,
363 379
       showOne:false,
380
+      deliveryWay:[],
381
+      delivery_way:0,
364 382
     };
365 383
   },
366 384
   created() {
@@ -417,6 +435,12 @@ export default {
417 435
       this.listQuery.partition_type = partitionType;
418 436
       this.requestSchedualDoctors();
419 437
     },
438
+    
439
+    selectDeliveryWay(val){
440
+       this.delivery_way = val
441
+       this.requestSchedualDoctors()
442
+    },
443
+
420 444
 
421 445
     changeTime() {
422 446
       this.listQuery.schedul_time = this.time;
@@ -430,16 +454,31 @@ export default {
430 454
         } else {
431 455
           this.partitionArr = response.data.data.zone;
432 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 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 476
         let newTime =  moment(time).format('YYYY-MM-DD')
438 477
         getSchedualDoctors({
439 478
         date: newTime,
440 479
         patient_type: 0,
441
-        advice_type: 2
442
-        }).then(rs => {
480
+        advice_type: 2,
481
+        delivery_way:name}).then(rs => {
443 482
         var resp = rs.data
444 483
         if (resp.state == 1) {
445 484
             this.admin_users = resp.data.adminUser
@@ -609,7 +648,16 @@ export default {
609 648
       }
610 649
     //   console.log("sch_ids",sch_ids)
611 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 663
     batchPrintActionOne: function() {

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

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

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

@@ -27,11 +27,11 @@
27 27
               <td style="line-height: 50px" width="250">规格型号</td>
28 28
               <td style="line-height: 50px" width="50">单位</td>
29 29
               <!-- <td style="line-height: 50px" width="250">耗材类型</td> -->
30
-            
31
-              
30
+
31
+
32 32
               <td style="line-height: 50px" width="80">数量</td>
33 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 35
               <td style="line-height: 50px" width="80" v-if="type == 1 || type == 3">总价</td>
36 36
               <td style="line-height: 50px" width="">备 注</td>
37 37
             </tr>
@@ -40,10 +40,10 @@
40 40
               <td style="line-height: 50px">&nbsp;
41 41
                 {{index+1}}
42 42
               </td>
43
-               <td style="line-height: 50px">
43
+              <td style="line-height: 50px">
44 44
                 <span>{{stock.good_name}}</span>
45 45
               </td>
46
-               <td style="line-height: 50px">
46
+              <td style="line-height: 50px">
47 47
                 <span v-if="stock">{{stock.specification_name}}</span>
48 48
               </td>
49 49
               <td style="line-height: 50px">
@@ -150,7 +150,7 @@
150 150
           style: style,
151 151
           scanStyles: false
152 152
         })
153
-      }, 
153
+      },
154 154
       getDialysisRecord() {
155 155
         this.loading = true
156 156
         getPrintStockGood(this.queryParams).then(response => {
@@ -225,6 +225,8 @@
225 225
 
226 226
       }, calTotal(stock) {
227 227
 
228
+        console.log(stock)
229
+
228 230
         var array = []
229 231
         if (this.type == 1) {
230 232
           array = stock.query_warehousing_info
@@ -234,7 +236,12 @@
234 236
 
235 237
         let total_price = 0.0
236 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 246
         return  Math.floor(total_price * 100) / 100
240 247
       }, calTotalPrice() {
@@ -280,9 +287,9 @@
280 287
       getUnit(id){
281 288
         var name = ""
282 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 294
         return name
288 295
       }

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

@@ -310,11 +310,25 @@ export default {
310 310
     calculate: function(val) {
311 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 333
     stockInCount: function(row) {
320 334
       let total = 0;
@@ -386,7 +400,12 @@ export default {
386 400
            } 
387 401
         }
388 402
         return name
389
-      }
403
+      },
404
+
405
+      getTimestamp(time) {
406
+      // 把时间日期转成时间戳
407
+      return new Date(time).getTime() / 1000;
408
+    },
390 409
   }
391 410
 };
392 411
 </script>