Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 3 years ago
parent
commit
5a79e3b530

+ 13 - 1
src/xt_pages/data/components/addInspection.vue View File

79
                         <template slot-scope="scope">{{scope.row.number}}</template>
79
                         <template slot-scope="scope">{{scope.row.number}}</template>
80
                     </el-table-column>
80
                     </el-table-column>
81
                     <el-table-column align="center" prop="name" label="单位" width="120">
81
                     <el-table-column align="center" prop="name" label="单位" width="120">
82
-                        <template slot-scope="scope">{{scope.row.unit}}</template>
82
+                        <template slot-scope="scope">
83
+                            <div v-if="scope.row.type == 2">{{scope.row.unit}}</div>
84
+                            <div v-if="scope.row.type == 3">{{getUnit(scope.row.unit)}}</div>
85
+
86
+                        </template>
83
                     </el-table-column>
87
                     </el-table-column>
84
                     <el-table-column align="center" prop="name" label="单价" width="120">
88
                     <el-table-column align="center" prop="name" label="单价" width="120">
85
                         <template slot-scope="scope">{{scope.row.price}}</template>
89
                         <template slot-scope="scope">{{scope.row.price}}</template>
163
       }
167
       }
164
     },
168
     },
165
     methods: {
169
     methods: {
170
+      getUnit(id){
171
+        var arr =  getDataConfig('hemodialysis','units')
172
+        for(let i = 0;i < arr.length; i++){
173
+          if(id == arr[i].id){
174
+            return arr[i].name
175
+          }
176
+        }
177
+      },
166
       changeProject() {
178
       changeProject() {
167
         this.form.number = 1
179
         this.form.number = 1
168
 
180
 

+ 12 - 1
src/xt_pages/data/components/editInspection.vue View File

78
                         <template slot-scope="scope">{{scope.row.number}}</template>
78
                         <template slot-scope="scope">{{scope.row.number}}</template>
79
                     </el-table-column>
79
                     </el-table-column>
80
                     <el-table-column align="center" prop="name" label="单位" width="120">
80
                     <el-table-column align="center" prop="name" label="单位" width="120">
81
-                        <template slot-scope="scope">{{scope.row.unit}}</template>
81
+                        <template slot-scope="scope">
82
+                            <div v-if="scope.row.type == 2">{{scope.row.unit}}</div>
83
+                            <div v-if="scope.row.type == 3">{{getUnit(scope.row.unit)}}</div>
84
+                        </template>
82
                     </el-table-column>
85
                     </el-table-column>
83
                     <el-table-column align="center" prop="name" label="单价" width="120">
86
                     <el-table-column align="center" prop="name" label="单价" width="120">
84
                         <template slot-scope="scope">{{scope.row.price}}</template>
87
                         <template slot-scope="scope">{{scope.row.price}}</template>
166
       }
169
       }
167
     },
170
     },
168
     methods: {
171
     methods: {
172
+      getUnit(id){
173
+        var arr =  getDataConfig('hemodialysis','units')
174
+        for(let i = 0;i < arr.length; i++){
175
+          if(id == arr[i].id){
176
+            return arr[i].name
177
+          }
178
+        }
179
+      },
169
       changeProject() {
180
       changeProject() {
170
         this.form.number = 1
181
         this.form.number = 1
171
 
182
 

+ 20 - 20
src/xt_pages/dialysis/dialysisDoctorAdvice.vue View File

76
           </ul>
76
           </ul>
77
         </div>
77
         </div>
78
       </div>
78
       </div>
79
-     
79
+
80
      <div class="cell clearfix">
80
      <div class="cell clearfix">
81
         <label class="title"> <span class="name">给药途径</span> : </label>
81
         <label class="title"> <span class="name">给药途径</span> : </label>
82
         <div class="time">
82
         <div class="time">
92
           </ul>
92
           </ul>
93
         </div>
93
         </div>
94
       </div>
94
       </div>
95
-    
96
-      <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
95
+
96
+      <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
97
         @selection-change="handleSelectionChange"
97
         @selection-change="handleSelectionChange"
98
         :row-class-name="tableRowClassName"
98
         :row-class-name="tableRowClassName"
99
         :span-method="objectSpanMethod"
99
         :span-method="objectSpanMethod"
222
           </template>
222
           </template>
223
         </el-table-column>
223
         </el-table-column>
224
       </el-table>
224
       </el-table>
225
-         <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
225
+         <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
226
         @selection-change="handleSelectionChange"
226
         @selection-change="handleSelectionChange"
227
         :row-class-name="tableRowClassName"
227
         :row-class-name="tableRowClassName"
228
         :span-method="objectSpanMethod"
228
         :span-method="objectSpanMethod"
450
     },
450
     },
451
 
451
 
452
     selectSchedulType(scheduleType) {
452
     selectSchedulType(scheduleType) {
453
-     
453
+
454
       this.schedulType = scheduleType;
454
       this.schedulType = scheduleType;
455
       this.listQuery.schedul_type = scheduleType;
455
       this.listQuery.schedul_type = scheduleType;
456
       console.log("班次",this.listQuery.schedul_type)
456
       console.log("班次",this.listQuery.schedul_type)
462
       console.log("分区",this.listQuery.partition_type)
462
       console.log("分区",this.listQuery.partition_type)
463
       this.requestSchedualDoctors(this.time);
463
       this.requestSchedualDoctors(this.time);
464
     },
464
     },
465
-    
465
+
466
     selectDeliveryWay(val){
466
     selectDeliveryWay(val){
467
        this.delivery_way = val
467
        this.delivery_way = val
468
        this.requestSchedualDoctors(this.time)
468
        this.requestSchedualDoctors(this.time)
489
       });
489
       });
490
     },
490
     },
491
     requestSchedualDoctors (time) {
491
     requestSchedualDoctors (time) {
492
-        
492
+
493
         var name = ""
493
         var name = ""
494
         for(let i=0;i<this.deliveryWay.length;i++){
494
         for(let i=0;i<this.deliveryWay.length;i++){
495
             if(this.delivery_way == this.deliveryWay[i].id){
495
             if(this.delivery_way == this.deliveryWay[i].id){
501
         }
501
         }
502
 
502
 
503
         let newTime =  moment(time).format('YYYY-MM-DD')
503
         let newTime =  moment(time).format('YYYY-MM-DD')
504
-       
504
+
505
          var schedule_type = this.listQuery.schedul_type
505
          var schedule_type = this.listQuery.schedul_type
506
          var partition_type = this.listQuery.partition_type
506
          var partition_type = this.listQuery.partition_type
507
-        
507
+
508
         console.log("班次",schedule_type,"分区",partition_type)
508
         console.log("班次",schedule_type,"分区",partition_type)
509
         getSchedualDoctors({date: newTime,patient_type: 0,advice_type: 2,delivery_way:name,schedule_type:schedule_type,partition_type:partition_type}).then(rs => {
509
         getSchedualDoctors({date: newTime,patient_type: 0,advice_type: 2,delivery_way:name,schedule_type:schedule_type,partition_type:partition_type}).then(rs => {
510
         var resp = rs.data
510
         var resp = rs.data
525
                     projectArr.push(item)
525
                     projectArr.push(item)
526
                   }
526
                   }
527
                 })
527
                 })
528
-                
528
+
529
               })
529
               })
530
-              
530
+
531
               resp.data.hisAdvices.map((item,index) => {
531
               resp.data.hisAdvices.map((item,index) => {
532
                 if(projectArr[index].project.length > 0){
532
                 if(projectArr[index].project.length > 0){
533
                   projectArr[index].project.map(it => {
533
                   projectArr[index].project.map(it => {
534
                     let obj = {
534
                     let obj = {
535
                       advice_doctor: it.doctor,
535
                       advice_doctor: it.doctor,
536
                       start_time:it.start_time,
536
                       start_time:it.start_time,
537
-                      advice_name: it.type == 2 ? it.project.project_name : it.good_info.good_name,
537
+                      advice_name:it.team_id > 0 && it.is_check_team == 1 ? it.team.project_team : it.type == 2 ? it.project.project_name : it.good_info.good_name,
538
                       execution_time:it.execution_time,
538
                       execution_time:it.execution_time,
539
                       execution_state:it.execution_state,
539
                       execution_state:it.execution_state,
540
                       execution_staff:it.execution_staff,
540
                       execution_staff:it.execution_staff,
597
                     }
597
                     }
598
                 })
598
                 })
599
             }
599
             }
600
-            
600
+
601
             console.log("分区",this.partitionType)
601
             console.log("分区",this.partitionType)
602
             if(this.partitionType == 0){
602
             if(this.partitionType == 0){
603
                 this.scheduleMap = newSchedules
603
                 this.scheduleMap = newSchedules
660
                     }
660
                     }
661
                 })
661
                 })
662
             }
662
             }
663
-            
664
-            
663
+
664
+
665
             if(this.partitionType == 0){
665
             if(this.partitionType == 0){
666
                 this.scheduleMap = newSchedules
666
                 this.scheduleMap = newSchedules
667
             }else {
667
             }else {
735
       for (let index = 0; index < this.selecting_schs.length; index++) {
735
       for (let index = 0; index < this.selecting_schs.length; index++) {
736
         sch_ids.push(this.selecting_schs[index].patient_id);
736
         sch_ids.push(this.selecting_schs[index].patient_id);
737
       }
737
       }
738
-  
738
+
739
       this.$store.dispatch("SetAdviceIDs", sch_ids);
739
       this.$store.dispatch("SetAdviceIDs", sch_ids);
740
        var name = ""
740
        var name = ""
741
         for(let i=0;i<this.deliveryWay.length;i++){
741
         for(let i=0;i<this.deliveryWay.length;i++){
760
       for (let index = 0; index < this.selecting_schs.length; index++) {
760
       for (let index = 0; index < this.selecting_schs.length; index++) {
761
         sch_ids.push(this.selecting_schs[index].patient_id);
761
         sch_ids.push(this.selecting_schs[index].patient_id);
762
       }
762
       }
763
-  
763
+
764
       this.$store.dispatch("SetAdviceIDs", sch_ids);
764
       this.$store.dispatch("SetAdviceIDs", sch_ids);
765
        var name = ""
765
        var name = ""
766
         for(let i=0;i<this.deliveryWay.length;i++){
766
         for(let i=0;i<this.deliveryWay.length;i++){
851
                 }
851
                 }
852
             }
852
             }
853
         }
853
         }
854
-        
854
+
855
         if (columnIndex === 1) {
855
         if (columnIndex === 1) {
856
             let index = this.indexInfoList.findIndex(item => {  //遍历数组
856
             let index = this.indexInfoList.findIndex(item => {  //遍历数组
857
                 return item.firstIndex === rowIndex
857
                 return item.firstIndex === rowIndex
939
         }
939
         }
940
 
940
 
941
         if (isChild == 1) {
941
         if (isChild == 1) {
942
-          // 不是子药 
942
+          // 不是子药
943
           // console.log(tempDrugSpecDesc)
943
           // console.log(tempDrugSpecDesc)
944
           // console.log(tempPrescribingNumberDesc)
944
           // console.log(tempPrescribingNumberDesc)
945
           // console.log(tempSingleDoseDesc)
945
           // console.log(tempSingleDoseDesc)
972
         // console.log('val',val)
972
         // console.log('val',val)
973
         this.selecting_schs = val;
973
         this.selecting_schs = val;
974
     },
974
     },
975
-    
975
+
976
   },
976
   },
977
   components: {
977
   components: {
978
     BreadCrumb
978
     BreadCrumb

+ 6 - 6
src/xt_pages/hospitalStation/components/deskPrescription.vue View File

1607
               }
1607
               }
1608
             }
1608
             }
1609
 
1609
 
1610
-            total =total.toFixed(2)
1610
+            total =total.toFixed(4)
1611
           }
1611
           }
1612
         }
1612
         }
1613
         return total
1613
         return total
1637
             }
1637
             }
1638
           }
1638
           }
1639
         }
1639
         }
1640
-        return total.toFixed(2)
1640
+        return total.toFixed(4)
1641
 
1641
 
1642
       },
1642
       },
1643
       getCurTotal() {
1643
       getCurTotal() {
1652
           for (let a = 0; a < this.curPrescriptions.project.length; a++) {
1652
           for (let a = 0; a < this.curPrescriptions.project.length; a++) {
1653
             total = total + this.curPrescriptions.project[a].price * this.curPrescriptions.project[a].total
1653
             total = total + this.curPrescriptions.project[a].price * this.curPrescriptions.project[a].total
1654
           }
1654
           }
1655
-          return total.toFixed(2)
1656
-        }
1655
+          return total.toFixed(4)
1657
 
1656
 
1657
+        }
1658
       },
1658
       },
1659
       getTotal() {
1659
       getTotal() {
1660
         var total = 0
1660
         var total = 0
1677
           }
1677
           }
1678
         }
1678
         }
1679
 
1679
 
1680
-        return total.toFixed(2)
1680
+        return total.toFixed(4)
1681
       }, getMonthTotal() {
1681
       }, getMonthTotal() {
1682
         var total = 0
1682
         var total = 0
1683
         for (let i = 0; i < this.month_prescriptions.length; i++) {
1683
         for (let i = 0; i < this.month_prescriptions.length; i++) {
1699
           }
1699
           }
1700
         }
1700
         }
1701
 
1701
 
1702
-        return total.toFixed(2)
1702
+        return total.toFixed(24)
1703
       },
1703
       },
1704
       createFilter(queryString) {
1704
       createFilter(queryString) {
1705
         return (restaurant) => {
1705
         return (restaurant) => {

+ 4 - 4
src/xt_pages/hospitalStation/outpatientChargesManagement.vue View File

1210
             total = parseFloat(total) + parseFloat(this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count)
1210
             total = parseFloat(total) + parseFloat(this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count)
1211
           }
1211
           }
1212
         }
1212
         }
1213
-        return total.toFixed(2)
1213
+        return total.toFixed(4)
1214
 
1214
 
1215
       }, getMonthTotalOne() {
1215
       }, getMonthTotalOne() {
1216
         var total = 0
1216
         var total = 0
1235
             total = parseFloat(total) + parseFloat(this.curMonthPrescriptions.addition[b].price * this.curMonthPrescriptions.addition[b].count)
1235
             total = parseFloat(total) + parseFloat(this.curMonthPrescriptions.addition[b].price * this.curMonthPrescriptions.addition[b].count)
1236
           }
1236
           }
1237
         }
1237
         }
1238
-        return total.toFixed(2)
1238
+        return total.toFixed(4)
1239
 
1239
 
1240
       },
1240
       },
1241
       getTotal() {
1241
       getTotal() {
1258
             }
1258
             }
1259
           }
1259
           }
1260
         }
1260
         }
1261
-        return total.toFixed(2)
1261
+        return total.toFixed(4)
1262
 
1262
 
1263
       }, getTotalTwo() {
1263
       }, getTotalTwo() {
1264
         var total = 0
1264
         var total = 0
1281
             }
1281
             }
1282
           }
1282
           }
1283
         }
1283
         }
1284
-        return total.toFixed(2)
1284
+        return total.toFixed(4)
1285
 
1285
 
1286
       },
1286
       },
1287
       moreState(tab, event) {
1287
       moreState(tab, event) {

+ 1 - 1
src/xt_pages/hospitalStation/treatTemplate/printOne.vue View File

82
 
82
 
83
             <div class="actionBar">
83
             <div class="actionBar">
84
                 <div>执行医生:{{item.doctor?item.doctor:''}}</div>
84
                 <div>执行医生:{{item.doctor?item.doctor:''}}</div>
85
-                <div>费用:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):''}}元</div>
85
+                <div>费用:{{getTotalOne(item.id).toFixed(4)?getTotalOne(item.id).toFixed(4):''}}元</div>
86
             </div>
86
             </div>
87
 
87
 
88
             <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">
88
             <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">

+ 2 - 2
src/xt_pages/outpatientCharges/invoiceTemplate/printTwo.vue View File

23
         </div>
23
         </div>
24
         <div style="display:flex;justify-content: space-between;">
24
         <div style="display:flex;justify-content: space-between;">
25
             <!-- <div>{{ paramsObj.gend == 1 ? '男' : '女' }}</div> -->
25
             <!-- <div>{{ paramsObj.gend == 1 ? '男' : '女' }}</div> -->
26
-            <div style="position: absolute;top:90px;left:290px;">{{ (totalPrice - list.psn_cash_money).toFixed(2) }}</div>
26
+            <div style="position: absolute;top:90px;left:290px;">{{ (totalPrice - list.psn_cash_money).toFixed(4) }}</div>
27
             <div style="position: absolute;top:90px;left:460px;">{{ list.psn_cash_money }}</div>
27
             <div style="position: absolute;top:90px;left:460px;">{{ list.psn_cash_money }}</div>
28
             <div style="position: absolute;top:90px;left:640px;">门慢结算</div>
28
             <div style="position: absolute;top:90px;left:640px;">门慢结算</div>
29
         </div>
29
         </div>
102
                 <span v-else>零</span>
102
                 <span v-else>零</span>
103
             </span>
103
             </span>
104
             </span>
104
             </span>
105
-            <span style="position: absolute;top:250px;left:610px">{{ totalPrice.toFixed(2) }}</span>
105
+            <span style="position: absolute;top:250px;left:610px">{{ totalPrice.toFixed(4) }}</span>
106
         </div>
106
         </div>
107
         <div style="position: absolute;top:280px;left:460px">现金:{{ list.psn_cash_money }}</div>
107
         <div style="position: absolute;top:280px;left:460px">现金:{{ list.psn_cash_money }}</div>
108
         <div>
108
         <div>

+ 25 - 13
src/xt_pages/outpatientCharges/newStatementPrintTwo.vue View File

193
                 scanStyles: false
193
                 scanStyles: false
194
               });
194
               });
195
             }
195
             }
196
-            
197
-            
196
+
197
+
198
           },500)
198
           },500)
199
         }else{
199
         }else{
200
           const style =
200
           const style =
232
 
232
 
233
               return false
233
               return false
234
             } else {
234
             } else {
235
-              
235
+
236
               this.balanceAccounts = response.data.data
236
               this.balanceAccounts = response.data.data
237
               let arr = []
237
               let arr = []
238
               let obj = {
238
               let obj = {
250
                 details: [],
250
                 details: [],
251
                 total: 0
251
                 total: 0
252
               }
252
               }
253
+
254
+              let obj4 = {
255
+                type:4,
256
+                details: [],
257
+                total: 0
258
+              }
253
               let num = 0
259
               let num = 0
254
               this.balanceAccounts.order_info.map(item => {
260
               this.balanceAccounts.order_info.map(item => {
255
-                
261
+
256
                 if(item.advice_id > 0){
262
                 if(item.advice_id > 0){
257
                   obj.details.push(item)
263
                   obj.details.push(item)
258
                   obj.total += (item.pric * item.advice.prescribing_number)
264
                   obj.total += (item.pric * item.advice.prescribing_number)
259
                   num++
265
                   num++
260
                 }else{
266
                 }else{
261
                   if(item.project.type == 2){
267
                   if(item.project.type == 2){
262
-                    obj2.details.push(item)
263
-                    obj2.total += (item.pric * item.project.count)
264
-                    num++
268
+                    if (item.project.team_id > 0) {
269
+                      obj2.details.push(item)
270
+                      obj2.total += (item.pric * item.project.count)
271
+                      num++
272
+                    }else{
273
+                      obj2.details.push(item)
274
+                      obj2.total += (item.pric * item.project.count)
275
+                      num++
276
+
277
+                    }
278
+
265
                   }else{
279
                   }else{
266
                     obj3.details.push(item)
280
                     obj3.details.push(item)
267
                     obj3.total += (item.pric * item.project.count)
281
                     obj3.total += (item.pric * item.project.count)
343
                       price_arr.push(that.info.transBody.outputlist1[i].akc225);
357
                       price_arr.push(that.info.transBody.outputlist1[i].akc225);
344
                       total_arr.push(that.info.transBody.outputlist1[i].akc264)
358
                       total_arr.push(that.info.transBody.outputlist1[i].akc264)
345
                     }
359
                     }
346
-
347
-                    console.log("~~~" + that.info);
360
+                    
348
 
361
 
349
                     that.info['name_arr'] = name_arr;
362
                     that.info['name_arr'] = name_arr;
350
                     that.info['spec_arr'] = spec_arr;
363
                     that.info['spec_arr'] = spec_arr;
353
                     that.info['total_arr'] = total_arr;
366
                     that.info['total_arr'] = total_arr;
354
                     that.info['record_date'] = obj.record_time;
367
                     that.info['record_date'] = obj.record_time;
355
 
368
 
356
-                    console.log("~~" + that.info)
357
 
369
 
358
                     let type_arr = []
370
                     let type_arr = []
359
                     for (let i = 0; i < that.info.transBody.outputlist1.length; i++) {
371
                     for (let i = 0; i < that.info.transBody.outputlist1.length; i++) {
378
                         }
390
                         }
379
                       }
391
                       }
380
                       that.info.new_detail_list.push(obj)
392
                       that.info.new_detail_list.push(obj)
381
-                      
393
+
382
                     }
394
                     }
383
                     let num = 0
395
                     let num = 0
384
                     that.info.new_detail_list.map(item => {
396
                     that.info.new_detail_list.map(item => {
419
                     }
431
                     }
420
                     console.log('that.info.transBody.outputlist2',that.info.transBody.outputlist2)
432
                     console.log('that.info.transBody.outputlist2',that.info.transBody.outputlist2)
421
                     console.log('this.num222',that.num)
433
                     console.log('this.num222',that.num)
422
-                    
434
+
423
                   }
435
                   }
424
                 }
436
                 }
425
               })
437
               })
450
 
462
 
451
     created() {
463
     created() {
452
       this.org_id = this.$store.getters.xt_user.org_id
464
       this.org_id = this.$store.getters.xt_user.org_id
453
-      
465
+
454
       this.getInfo(this.paramsObj)
466
       this.getInfo(this.paramsObj)
455
     },
467
     },
456
     watch:{
468
     watch:{

+ 7 - 7
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

1804
             total = parseFloat(total) + parseFloat(this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count)
1804
             total = parseFloat(total) + parseFloat(this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count)
1805
           }
1805
           }
1806
         }
1806
         }
1807
-        return total.toFixed(2)
1807
+        return total.toFixed(4)
1808
 
1808
 
1809
       },
1809
       },
1810
       getTotalThree(big_prescriptions) {
1810
       getTotalThree(big_prescriptions) {
1830
             total = parseFloat(total) + parseFloat(big_prescriptions.curPrescriptions.addition[b].price * big_prescriptions.curPrescriptions.addition[b].count)
1830
             total = parseFloat(total) + parseFloat(big_prescriptions.curPrescriptions.addition[b].price * big_prescriptions.curPrescriptions.addition[b].count)
1831
           }
1831
           }
1832
         }
1832
         }
1833
-        return total.toFixed(2)
1833
+        return total.toFixed(4)
1834
 
1834
 
1835
       },
1835
       },
1836
 
1836
 
1857
             total = parseFloat(total) + parseFloat(this.curMonthPrescriptions.addition[b].price * this.curMonthPrescriptions.addition[b].count)
1857
             total = parseFloat(total) + parseFloat(this.curMonthPrescriptions.addition[b].price * this.curMonthPrescriptions.addition[b].count)
1858
           }
1858
           }
1859
         }
1859
         }
1860
-        return total.toFixed(2)
1860
+        return total.toFixed(4)
1861
 
1861
 
1862
       },
1862
       },
1863
       getMonthTotalTwo(month_prescriptions) {
1863
       getMonthTotalTwo(month_prescriptions) {
1883
             total = parseFloat(total) + parseFloat(month_prescriptions.addition[b].price * month_prescriptions.addition[b].count)
1883
             total = parseFloat(total) + parseFloat(month_prescriptions.addition[b].price * month_prescriptions.addition[b].count)
1884
           }
1884
           }
1885
         }
1885
         }
1886
-        return total.toFixed(2)
1886
+        return total.toFixed(4)
1887
 
1887
 
1888
       },
1888
       },
1889
 
1889
 
1909
             }
1909
             }
1910
           }
1910
           }
1911
         }
1911
         }
1912
-        return total.toFixed(2)
1912
+        return total.toFixed(4)
1913
 
1913
 
1914
       }, getTotalTwo() {
1914
       }, getTotalTwo() {
1915
         var total = 0
1915
         var total = 0
1932
             }
1932
             }
1933
           }
1933
           }
1934
         }
1934
         }
1935
-        return total.toFixed(2)
1935
+        return total.toFixed(4)
1936
 
1936
 
1937
       }, getTotalFour(month_prescriptions) {
1937
       }, getTotalFour(month_prescriptions) {
1938
         var total = 0
1938
         var total = 0
1954
             }
1954
             }
1955
           }
1955
           }
1956
         }
1956
         }
1957
-        return total.toFixed(2)
1957
+        return total.toFixed(4)
1958
       },
1958
       },
1959
       moreState(tab, event) {
1959
       moreState(tab, event) {
1960
         if (tab == 'more') {
1960
         if (tab == 'more') {

+ 19 - 4
src/xt_pages/outpatientCharges/statementPrint.vue View File

15
       <div class='dialysisPage' style="padding-top:40px;">
15
       <div class='dialysisPage' style="padding-top:40px;">
16
         <div v-if="org_id == 9990 || org_id == 10138 || org_id == 9504 || org_id == 10028 || org_id == 0">
16
         <div v-if="org_id == 9990 || org_id == 10138 || org_id == 9504 || org_id == 10028 || org_id == 0">
17
           <printTwo :info="info" v-if="org_id == 9990"></printTwo>
17
           <printTwo :info="info" v-if="org_id == 9990"></printTwo>
18
-          <printThree :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts" v-if="org_id == 10138"></printThree>
18
+          <printThree :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts" v-if="org_id == 10138 || org_id == 0"></printThree>
19
           <printFour v-if="org_id == 9504 || org_id == 10028 || org_id == 0" :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts"></printFour>
19
           <printFour v-if="org_id == 9504 || org_id == 10028 || org_id == 0" :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts"></printFour>
20
         </div>
20
         </div>
21
         <printOne :info="info" v-else></printOne>
21
         <printOne :info="info" v-else></printOne>
79
       this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
79
       this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
80
 
80
 
81
 
81
 
82
-      if(this.$store.getters.xt_user.org_id == 10138){
82
+      if(this.$store.getters.xt_user.org_id == 10138 || this.$store.getters.xt_user.org_id == 0){
83
         setTimeout(() => {
83
         setTimeout(() => {
84
           const style =
84
           const style =
85
           '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 47%;}}}';
85
           '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 47%;}}}';
301
           id: obj.order_id,
301
           id: obj.order_id,
302
 
302
 
303
         }
303
         }
304
-        if(this.org_id == 10138){
304
+        if(this.org_id == 10138 || this.org_id == 0){
305
           getPrivateExpenses(params).then(response => {
305
           getPrivateExpenses(params).then(response => {
306
             if (response.data.state == 0) {
306
             if (response.data.state == 0) {
307
               // this.$message.error(response.data.msg)
307
               // this.$message.error(response.data.msg)
327
                 total: 0
327
                 total: 0
328
               }
328
               }
329
               let num = 0
329
               let num = 0
330
-              this.balanceAccounts.order_info.map(item => {
331
 
330
 
331
+              let obj4 = {
332
+                type:4,
333
+                details: [],
334
+                total: 0
335
+              }
336
+              this.balanceAccounts.order_info.map(item => {
332
                 if(item.advice_id > 0){
337
                 if(item.advice_id > 0){
333
                   obj.details.push(item)
338
                   obj.details.push(item)
334
                   obj.total += (item.pric * item.advice.prescribing_number)
339
                   obj.total += (item.pric * item.advice.prescribing_number)
345
                   }
350
                   }
346
                 }
351
                 }
347
               })
352
               })
353
+              this.balanceAccounts.new_order_info.map(item => {
354
+                    obj4.total = item.Total
355
+                     obj4.details.push(item)
356
+                     num++
357
+
358
+
359
+              })
360
+
348
               this.balanceAccounts.new_detail_list = []
361
               this.balanceAccounts.new_detail_list = []
349
               this.balanceAccounts.new_detail_list.push(obj)
362
               this.balanceAccounts.new_detail_list.push(obj)
350
               this.balanceAccounts.new_detail_list.push(obj2)
363
               this.balanceAccounts.new_detail_list.push(obj2)
351
               this.balanceAccounts.new_detail_list.push(obj3)
364
               this.balanceAccounts.new_detail_list.push(obj3)
365
+              this.balanceAccounts.new_detail_list.push(obj4)
366
+
352
               console.log(111,this.balanceAccounts)
367
               console.log(111,this.balanceAccounts)
353
               this.num = num
368
               this.num = num
354
               console.log('this.num',this.num)
369
               console.log('this.num',this.num)

+ 2 - 2
src/xt_pages/outpatientCharges/statementTemplate/printFour.vue View File

111
                                 </div>
111
                                 </div>
112
                                 <div style="width:15%;text-align:center;">
112
                                 <div style="width:15%;text-align:center;">
113
                                     <p class="chargeP">
113
                                     <p class="chargeP">
114
-                                        <span>{{(item.cnt * item.pric).toFixed(2)}}元</span>
114
+                                        <span>{{(item.cnt * item.pric).toFixed(4)}}元</span>
115
                                     </p>
115
                                     </p>
116
                                 </div>
116
                                 </div>
117
                             </div>
117
                             </div>
216
                               </div>
216
                               </div>
217
                               <div style="width:15%;text-align:center;">
217
                               <div style="width:15%;text-align:center;">
218
                                   <p class="chargeP">
218
                                   <p class="chargeP">
219
-                                      <span>{{(item.cnt * item.pric).toFixed(2)}}元</span>
219
+                                      <span>{{(item.cnt * item.pric).toFixed(4)}}元</span>
220
                                   </p>
220
                                   </p>
221
                               </div>
221
                               </div>
222
                           </div>
222
                           </div>

+ 274 - 209
src/xt_pages/outpatientCharges/statementTemplate/printThree.vue View File

1
 <template>
1
 <template>
2
     <div>
2
     <div>
3
-        <div v-if="paramsObj.balance_accounts_type != 2" id='prescription-print' class="prescription-print" style="position: relative;">
3
+        <div v-if="paramsObj.balance_accounts_type != 2" id='prescription-print' class="prescription-print"
4
+             style="position: relative;">
4
             <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
5
             <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
5
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
6
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
6
             <div style="display:flex;">
7
             <div style="display:flex;">
7
-                <div>单据号:<span style="display:inline-block;width:200px;">{{info.order_number ? info.order_number : ''}}</span></div>
8
-                <div>透析号:<span style="display:inline-block;width:200px;">{{info.patient.dialysis_no ? info.patient.dialysis_no : ''}}</span></div>
9
-                <div style="margin-left:2px;">电脑号:<span style="display:inline-block;">{{info.psn_no ? info.psn_no : ''}}</span></div>
8
+                <div>单据号:<span
9
+                        style="display:inline-block;width:200px;">{{info.order_number ? info.order_number : ''}}</span>
10
+                </div>
11
+                <div>透析号:<span style="display:inline-block;width:200px;">{{info.patient.dialysis_no ? info.patient.dialysis_no : ''}}</span>
12
+                </div>
13
+                <div style="margin-left:2px;">电脑号:<span
14
+                        style="display:inline-block;">{{info.psn_no ? info.psn_no : ''}}</span></div>
10
             </div>
15
             </div>
11
             <div style="display:flex;justify-content: space-between;">
16
             <div style="display:flex;justify-content: space-between;">
12
                 <div style="display:flex;">
17
                 <div style="display:flex;">
13
-                  <div>姓名:<span style="display:inline-block;width:50px;">{{info.patient.name ? info.patient.name.indexOf("(") > -1 ? info.patient.name.substring(0,info.patient.name.indexOf("(")) : info.patient.name : ''}}</span></div>
14
-                  <div>性别:<span style="display:inline-block;width:30px;">{{info.patient.gender == '1' ? '男' : '女'}}</span></div>
15
-                  <div>年龄:<span style="display:inline-block;width:50px;">{{info.patient.age ? info.patient.age : ''}}岁</span></div>
16
-                  <div>费别:<span style="display:inline-block;min-width:80px;">医保</span>
17
-                  </div>
18
-                  <div>收费日期:<span style="display:inline-block;width:100px;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span></div>
18
+                    <div>姓名:<span style="display:inline-block;width:50px;">{{info.patient.name ? info.patient.name.indexOf('(') > -1 ? info.patient.name.substring(0,info.patient.name.indexOf('(')) : info.patient.name : ''}}</span>
19
+                    </div>
20
+                    <div>性别:<span
21
+                            style="display:inline-block;width:30px;">{{info.patient.gender == '1' ? '男' : '女'}}</span>
22
+                    </div>
23
+                    <div>年龄:<span
24
+                            style="display:inline-block;width:50px;">{{info.patient.age ? info.patient.age : ''}}岁</span>
25
+                    </div>
26
+                    <div>费别:<span style="display:inline-block;min-width:80px;">医保</span>
27
+                    </div>
28
+                    <div>收费日期:<span style="display:inline-block;width:100px;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span>
29
+                    </div>
19
                 </div>
30
                 </div>
20
                 <div style="float:right">金额单位:元</div>
31
                 <div style="float:right">金额单位:元</div>
21
             </div>
32
             </div>
22
             <div style="min-height: 300px;">
33
             <div style="min-height: 300px;">
23
-              <table border='1' style="width:100%;" cellspacing="0">
24
-                  <tr>
25
-                      <td width="70">类别</td>
26
-                      <td>项目</td>
27
-                      <td min-width="180" style="min-width:60px;">规格</td>
28
-                      <td width="40">单位</td>
29
-                      <td width="40">数量</td>
30
-                      <td width="60">单价</td>
31
-                      <td width="70">总额</td>
32
-                      <td width="130">小计</td>
33
-                  </tr>
34
-                  <div v-for="(item,i) in info.new_detail_list" :key="i" style="width:100%;display: table-row-group;">
35
-                      <tr v-for="(subItem,index) in item.details" :key="index">
36
-                        <td>
37
-                          <span v-if="item.type == 1">药品费</span>
38
-                          <span v-if="item.type == 2">治疗费</span>
39
-                          <span v-if="item.type == 3">耗材费</span>
40
-                        </td>
41
-                        <td>
42
-                          <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
43
-                          <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
44
-                          <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
45
-                        </td>
46
-                        <td>
47
-                          <span v-if="item.type == 1"><span v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
48
-                          <span v-if="item.type == 2"></span>
49
-                          <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
50
-                        </td>
51
-                        <td>
52
-                          <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
53
-                          <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
54
-                          <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
34
+                <table border='1' style="width:100%;" cellspacing="0">
35
+                    <tr>
36
+                        <td width="70">类别</td>
37
+                        <td>项目</td>
38
+                        <td min-width="180" style="min-width:60px;">规格</td>
39
+                        <td width="40">单位</td>
40
+                        <td width="40">数量</td>
41
+                        <td width="60">单价</td>
42
+                        <td width="70">总额</td>
43
+                        <td width="130">小计</td>
44
+                    </tr>
45
+                    <div v-for="(item,i) in info.new_detail_list" :key="i" style="width:100%;display: table-row-group;">
46
+                        <tr v-for="(subItem,index) in item.details" :key="index">
47
+                            <td>
48
+                                <span v-if="item.type == 1">药品费</span>
49
+                                <span v-if="item.type == 2">治疗费</span>
50
+                                <span v-if="item.type == 3">耗材费</span>
51
+                                <span v-if="item.type == 4">检验费</span>
52
+
53
+                            </td>
54
+                            <td>
55
+                                <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
56
+                                <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
57
+                                <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
58
+                                <span v-if="item.type == 4">{{ subItem.project.project.team_name }}</span>
59
+
60
+                            </td>
61
+                            <td>
62
+                                <span v-if="item.type == 1"><span
63
+                                        v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
64
+                                <span v-if="item.type == 2"></span>
65
+                                <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
66
+                                <span v-if="item.type == 4"></span>
67
+
68
+                            </td>
69
+                            <td>
70
+                                <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
71
+                                <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
72
+                                <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
73
+                                <span v-if="item.type == 4"></span>
74
+
75
+                            </td>
76
+                            <td>
77
+                                <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
78
+                                <span v-if="item.type == 2">{{ subItem.project.count }}</span>
79
+                                <span v-if="item.type == 3">{{ subItem.project.count }}</span>
80
+                                <span v-if="item.type == 4"></span>
81
+
82
+                            </td>
83
+                            <td>
84
+                                <span v-if="item.type == 1">{{ subItem.pric }}</span>
85
+                                <span v-if="item.type == 2">{{ subItem.pric }}</span>
86
+                                <span v-if="item.type == 3">{{ subItem.pric }}</span>
87
+                                <span v-if="item.type == 4"></span>
88
+
89
+                            </td>
90
+                            <td>
91
+                                <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(4) }}</span>
92
+                                <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(4) }}</span>
93
+                                <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(4) }}</span>
94
+                                <span v-if="item.type == 4"></span>
95
+
96
+                            </td>
97
+                            <td :rowspan="item.details.length" v-if="index == 0"
98
+                                style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(4) }}
99
+                            </td>
100
+                        </tr>
101
+                    </div>
102
+                    <tr>
103
+                        <td colspan="7">
104
+                            <div style="display:flex;flez-wrap:wrap;">
105
+                                <div style="width:33%;" v-for="(item,index) in info.new_detail_list" :key="index">
106
+                                    <span v-if="item.type == 1">药品费: {{ item.total.toFixed(4) }}</span>
107
+                                    <span v-if="item.type == 2">治疗费: {{ item.total.toFixed(4) }}</span>
108
+                                    <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(4) }}</span>
109
+                                    <span v-if="item.type == 4">检验费: {{ item.total.toFixed(4) }}</span>
110
+
111
+                                </div>
112
+                            </div>
55
                         </td>
113
                         </td>
56
-                        <td>
57
-                          <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
58
-                          <span v-if="item.type == 2">{{ subItem.project.count }}</span>
59
-                          <span v-if="item.type == 3">{{ subItem.project.count }}</span>
114
+                        <td>合计: {{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
115
+                    </tr>
116
+                    <tr>
117
+                        <td colspan="7">
118
+                            <div style="display:flex;flez-wrap:wrap;margin-bottom:10px;font-size:16px;">
119
+                                <div style="width:33%;">医疗费总额:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</div>
120
+                                <div style="width:33%;">基金支付金额:{{info.hifp_pay?info.hifp_pay:0}}元</div>
121
+                                <div style="width:33%;">个人账户支付金额:{{info.acct_pay?info.acct_pay:0}}元</div>
122
+
123
+                            </div>
124
+                            <div style="display:flex;flez-wrap:wrap;font-size:16px;">
125
+                                <div style="width:33%;">个人支付金额:{{ info.psn_pay?info.psn_pay:0 }}元</div>
126
+                                <div style="width:33%;">个人账户金额:{{info.balc >= 0 ? info.balc : 0 }}元</div>
127
+                            </div>
60
                         </td>
128
                         </td>
61
-                        <td>
62
-                          <span v-if="item.type == 1">{{ subItem.pric }}</span>
63
-                          <span v-if="item.type == 2">{{ subItem.pric }}</span>
64
-                          <span v-if="item.type == 3">{{ subItem.pric }}</span>
65
-                        </td>
66
-                        <td>
67
-                          <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(2) }}</span>
68
-                          <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
69
-                          <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
70
-                        </td>
71
-                        <td :rowspan="item.details.length" v-if="index == 0" style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(2) }}</td>
72
-                      </tr>
73
-                  </div>
74
-                  <tr>
75
-                    <td colspan="7">
76
-                      <div style="display:flex;flez-wrap:wrap;">
77
-                        <div style="width:33%;" v-for="(item,index) in info.new_detail_list" :key="index">
78
-                          <span v-if="item.type == 1">药品费: {{ item.total.toFixed(2) }}</span>
79
-                          <span v-if="item.type == 2">治疗费: {{ item.total.toFixed(2) }}</span>
80
-                          <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(2) }}</span>
81
-                        </div>
82
-                      </div>
83
-                    </td>
84
-                    <td>合计: {{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
85
-                  </tr>
86
-                  <tr>
87
-                      <td colspan="7">
88
-                          <div style="display:flex;flez-wrap:wrap;margin-bottom:10px;font-size:16px;">
89
-                              <div style="width:33%;">医疗费总额:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</div>
90
-                              <div style="width:33%;">基金支付金额:{{info.hifp_pay?info.hifp_pay:0}}元</div>
91
-                              <div style="width:33%;">个人账户支付金额:{{info.acct_pay?info.acct_pay:0}}元</div>
92
-
93
-                          </div>
94
-                          <div style="display:flex;flez-wrap:wrap;font-size:16px;">
95
-                              <div style="width:33%;">个人支付金额:{{ info.psn_pay?info.psn_pay:0 }}元</div>
96
-                              <div style="width:33%;">个人账户金额:{{info.balc >= 0 ? info.balc : 0 }}元</div>
97
-                          </div>
98
-                      </td>
99
-                      <td style="font-size:16px;">合计:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
100
-                  </tr>
101
-
102
-              </table>
129
+                        <td style="font-size:16px;">合计:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
130
+                    </tr>
131
+
132
+                </table>
103
             </div>
133
             </div>
104
             <div style="float:right;margin:10px 0;display:flex;">
134
             <div style="float:right;margin:10px 0;display:flex;">
105
                 <div>操作人:<span style="width:100px;display:inline-block;">{{info.p_admin.user_name}}</span></div>
135
                 <div>操作人:<span style="width:100px;display:inline-block;">{{info.p_admin.user_name}}</span></div>
106
-                <div>操作日期:<span style="width:100px;display:inline-block;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span></div>
136
+                <div>操作日期:<span style="width:100px;display:inline-block;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span>
137
+                </div>
107
             </div>
138
             </div>
108
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
139
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
109
         </div>
140
         </div>
110
         <div v-else id='prescription-print' class="prescription-print" style="position: relative;">
141
         <div v-else id='prescription-print' class="prescription-print" style="position: relative;">
111
-          <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
142
+            <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
112
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
143
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
113
             <div style="display:flex;">
144
             <div style="display:flex;">
114
-                <div>单据号:<span style="display:inline-block;width:200px;">{{balanceAccounts.his.number ? balanceAccounts.his.number : ''}}</span></div>
115
-                <div>透析号:<span style="display:inline-block;width:200px;">{{balanceAccounts.patient ? balanceAccounts.patient.dialysis_no : ''}}</span></div>
145
+                <div>单据号:<span style="display:inline-block;width:200px;">{{balanceAccounts.his.number ? balanceAccounts.his.number : ''}}</span>
146
+                </div>
147
+                <div>透析号:<span style="display:inline-block;width:200px;">{{balanceAccounts.patient ? balanceAccounts.patient.dialysis_no : ''}}</span>
148
+                </div>
116
                 <div>电脑号:<span style="display:inline-block;width:80px;"></span></div>
149
                 <div>电脑号:<span style="display:inline-block;width:80px;"></span></div>
117
             </div>
150
             </div>
118
             <div style="display:flex;justify-content: space-between;">
151
             <div style="display:flex;justify-content: space-between;">
119
                 <div style="display:flex;">
152
                 <div style="display:flex;">
120
-                  <div>姓名:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.name.indexOf("(") > -1 ? balanceAccounts.patient.name.substring(0,balanceAccounts.patient.name.indexOf("(")) : balanceAccounts.patient.name : ''}}</span></div>
121
-                  <div>性别:<span style="display:inline-block;width:30px;">{{balanceAccounts.patient.gender == '1' ? '男' : '女'}}</span></div>
122
-                  <div>年龄:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.age : ''}}岁</span></div>
123
-                  <div>费别:<span style="display:inline-block;width:80px;">自费</span>
124
-                  </div>
125
-                  <div>收费日期:<span style="display:inline-block;width:100px;">{{getTime(new Date(),"{y}-{m}-{d}")?getTime(new Date(),"{y}-{m}-{d}"):""}}</span></div>
153
+                    <div>姓名:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.name.indexOf('(') > -1 ? balanceAccounts.patient.name.substring(0,balanceAccounts.patient.name.indexOf('(')) : balanceAccounts.patient.name : ''}}</span>
154
+                    </div>
155
+                    <div>性别:<span style="display:inline-block;width:30px;">{{balanceAccounts.patient.gender == '1' ? '男' : '女'}}</span>
156
+                    </div>
157
+                    <div>年龄:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.age : ''}}岁</span>
158
+                    </div>
159
+                    <div>费别:<span style="display:inline-block;width:80px;">自费</span>
160
+                    </div>
161
+                    <div>收费日期:<span style="display:inline-block;width:100px;">{{getTime(new Date(),'{y}-{m}-{d}')?getTime(new Date(),'{y}-{m}-{d}'):''}}</span>
162
+                    </div>
126
                 </div>
163
                 </div>
127
                 <div style="float:right">金额单位:元</div>
164
                 <div style="float:right">金额单位:元</div>
128
             </div>
165
             </div>
129
             <div style="min-height: 300px;">
166
             <div style="min-height: 300px;">
130
-              <table border='1' style="width:100%;" cellspacing="0">
131
-                  <tr>
132
-                      <td width="70">类别</td>
133
-                      <td>项目</td>
134
-                      <td min-width="180" style="min-width:60px;">规格</td>
135
-                      <td width="40">单位</td>
136
-                      <td width="40">数量</td>
137
-                      <td width="60">单价</td>
138
-                      <td width="70">总额</td>
139
-                      <td width="130">小计</td>
140
-                  </tr>
141
-                  <div v-for="(item,i) in balanceAccounts.new_detail_list" :key="i" style="width:100%;display: table-row-group;">
142
-                      <tr v-for="(subItem,index) in item.details" :key="index">
143
-                        <td>
144
-                          <span v-if="item.type == 1">药品费</span>
145
-                          <span v-if="item.type == 2">治疗费</span>
146
-                          <span v-if="item.type == 3">耗材费</span>
147
-                        </td>
148
-                        <td>
149
-                          <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
150
-                          <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
151
-                          <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
152
-                        </td>
153
-                        <td>
154
-                          <span v-if="item.type == 1"><span v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
155
-                          <span v-if="item.type == 2"></span>
156
-                          <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
157
-                        </td>
158
-                        <td>
159
-                          <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
160
-                          <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
161
-                          <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
167
+                <table border='1' style="width:100%;" cellspacing="0">
168
+                    <tr>
169
+                        <td width="70">类别</td>
170
+                        <td>项目</td>
171
+                        <td min-width="180" style="min-width:60px;">规格</td>
172
+                        <td width="40">单位</td>
173
+                        <td width="40">数量</td>
174
+                        <td width="60">单价</td>
175
+                        <td width="70">总额</td>
176
+                        <td width="130">小计</td>
177
+                    </tr>
178
+                    <div v-for="(item,i) in balanceAccounts.new_detail_list" :key="i"
179
+                         style="width:100%;display: table-row-group;">
180
+                        <tr v-for="(subItem,index) in item.details" :key="index">
181
+                            <td>
182
+                                <span v-if="item.type == 1">药品费</span>
183
+                                <span v-if="item.type == 2">治疗费</span>
184
+                                <span v-if="item.type == 3">耗材费</span>
185
+                                <span v-if="item.type == 4">检验费</span>
186
+
187
+                            </td>
188
+                            <td>
189
+                                <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
190
+                                <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
191
+                                <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
192
+                                <span v-if="item.type == 4">{{ subItem.Name }}</span>
193
+
194
+                            </td>
195
+                            <td>
196
+                                <span v-if="item.type == 1"><span
197
+                                        v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
198
+                                <span v-if="item.type == 2"></span>
199
+                                <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
200
+                                <span v-if="item.type == 4"></span>
201
+
202
+                            </td>
203
+                            <td>
204
+                                <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
205
+                                <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
206
+                                <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
207
+                                <span v-if="item.type == 4"></span>
208
+
209
+                            </td>
210
+                            <td>
211
+                                <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
212
+                                <span v-if="item.type == 2">{{ subItem.project.count }}</span>
213
+                                <span v-if="item.type == 3">{{ subItem.project.count }}</span>
214
+                                <span v-if="item.type == 4">1</span>
215
+
216
+                            </td>
217
+                            <td>
218
+                                <span v-if="item.type == 1">{{ subItem.pric }}</span>
219
+                                <span v-if="item.type == 2">{{ subItem.pric }}</span>
220
+                                <span v-if="item.type == 3">{{ subItem.pric }}</span>
221
+                                <span v-if="item.type == 4">{{subItem.Total}}</span>
222
+
223
+                            </td>
224
+                            <td>
225
+                                <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(2) }}</span>
226
+                                <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
227
+                                <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
228
+                                <span v-if="item.type == 4">{{subItem.Total}}</span>
229
+
230
+                            </td>
231
+                            <td :rowspan="item.details.length" v-if="index == 0"
232
+                                style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(2) }}
233
+                            </td>
234
+                        </tr>
235
+                    </div>
236
+                    <tr>
237
+                        <td colspan="7">
238
+                            <div style="display:flex;flez-wrap:wrap;">
239
+                                <div style="width:33%;" v-for="(item,index) in balanceAccounts.new_detail_list"
240
+                                     :key="index">
241
+                                    <span v-if="item.type == 1">药品费: {{ item.total.toFixed(2) }}</span>
242
+                                    <span v-if="item.type == 2">治疗费: {{ item.total.toFixed(2) }}</span>
243
+                                    <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(2) }}</span>
244
+                                    <span v-if="item.type == 4">检验费: {{ item.total.toFixed(2) }}</span>
245
+
246
+                                </div>
247
+                            </div>
162
                         </td>
248
                         </td>
163
-                        <td>
164
-                          <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
165
-                          <span v-if="item.type == 2">{{ subItem.project.count }}</span>
166
-                          <span v-if="item.type == 3">{{ subItem.project.count }}</span>
249
+                        <td>合计: {{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
250
+                    </tr>
251
+                    <tr>
252
+                        <td colspan="7">
253
+                            <div style="display:flex;flez-wrap:wrap;">
254
+                                <div style="width:33%;">
255
+                                    医疗费总额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元
256
+                                </div>
257
+                                <div style="width:33%;">基金支付金额:0元</div>
258
+                                <div style="width:33%;">个人账户支付金额:0元</div>
259
+
260
+                            </div>
261
+                            <div style="display:flex;flez-wrap:wrap;">
262
+                                <div style="width:33%;">
263
+                                    个人支付金额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元
264
+                                </div>
265
+                                <div style="width:33%;">个人账户金额:0元</div>
266
+                            </div>
167
                         </td>
267
                         </td>
168
-                        <td>
169
-                          <span v-if="item.type == 1">{{ subItem.pric }}</span>
170
-                          <span v-if="item.type == 2">{{ subItem.pric }}</span>
171
-                          <span v-if="item.type == 3">{{ subItem.pric }}</span>
172
-                        </td>
173
-                        <td>
174
-                          <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(2) }}</span>
175
-                          <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
176
-                          <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
177
-                        </td>
178
-                        <td :rowspan="item.details.length" v-if="index == 0" style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(2) }}</td>
179
-                      </tr>
180
-                  </div>
181
-                  <tr>
182
-                    <td colspan="7">
183
-                      <div style="display:flex;flez-wrap:wrap;">
184
-                        <div style="width:33%;" v-for="(item,index) in balanceAccounts.new_detail_list" :key="index">
185
-                          <span v-if="item.type == 1">药品费: {{ item.total.toFixed(2) }}</span>
186
-                          <span v-if="item.type == 2">治疗费: {{ item.total.toFixed(2) }}</span>
187
-                          <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(2) }}</span>
188
-                        </div>
189
-                      </div>
190
-                    </td>
191
-                    <td>合计: {{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
192
-                  </tr>
193
-                  <tr>
194
-                      <td colspan="7">
195
-                          <div style="display:flex;flez-wrap:wrap;">
196
-                              <div style="width:33%;">医疗费总额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</div>
197
-                              <div style="width:33%;">基金支付金额:0元</div>
198
-                              <div style="width:33%;">个人账户支付金额:0元</div>
199
-
200
-                          </div>
201
-                          <div style="display:flex;flez-wrap:wrap;">
202
-                              <div style="width:33%;">个人支付金额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</div>
203
-                              <div style="width:33%;">个人账户金额:0元</div>
204
-                          </div>
205
-                      </td>
206
-                      <td>合计:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
207
-                  </tr>
208
-
209
-              </table>
268
+                        <td>合计:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
269
+                    </tr>
270
+
271
+                </table>
210
             </div>
272
             </div>
211
             <div style="float:right;margin:10px 0;display:flex;">
273
             <div style="float:right;margin:10px 0;display:flex;">
212
-                <div>操作人:<span style="width:100px;display:inline-block;">{{balanceAccounts.current_admin.user_name}}</span></div>
213
-                <div>操作日期:<span style="width:100px;display:inline-block;">{{getTime(new Date(),"{y}-{m}-{d}")?getTime(new Date(),"{y}-{m}-{d}"):""}}</span></div>
274
+                <div>操作人:<span
275
+                        style="width:100px;display:inline-block;">{{balanceAccounts.current_admin.user_name}}</span>
276
+                </div>
277
+                <div>操作日期:<span style="width:100px;display:inline-block;">{{getTime(new Date(),'{y}-{m}-{d}')?getTime(new Date(),'{y}-{m}-{d}'):''}}</span>
278
+                </div>
214
             </div>
279
             </div>
215
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
280
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
216
         </div>
281
         </div>
246
     props: {
311
     props: {
247
       paramsObj: Object,
312
       paramsObj: Object,
248
       info: Object,
313
       info: Object,
249
-      balanceAccounts:Object
314
+      balanceAccounts: Object
250
     },
315
     },
251
     methods: {
316
     methods: {
252
       getName(list) {
317
       getName(list) {
258
         }
323
         }
259
 
324
 
260
         switch (new_list[0].bcc334) {
325
         switch (new_list[0].bcc334) {
261
-          case "A31001":
262
-            return "深圳医保1档"
326
+          case 'A31001':
327
+            return '深圳医保1档'
263
             break
328
             break
264
-          case "A31002":
265
-            return "深圳医保2档"
329
+          case 'A31002':
330
+            return '深圳医保2档'
266
 
331
 
267
             break
332
             break
268
-          case "A31003":
269
-            return "深圳医保3档"
333
+          case 'A31003':
334
+            return '深圳医保3档'
270
 
335
 
271
             break
336
             break
272
-          case "A31004":
273
-            return "二档(少儿)"
337
+          case 'A31004':
338
+            return '二档(少儿)'
274
 
339
 
275
             break
340
             break
276
-          case "A31005":
277
-            return "学生二档"
341
+          case 'A31005':
342
+            return '学生二档'
278
 
343
 
279
             break
344
             break
280
-          case "A31006":
281
-            return "大学生二档"
345
+          case 'A31006':
346
+            return '大学生二档'
282
 
347
 
283
             break
348
             break
284
-          case "A32001":
285
-            return "在职公务员"
349
+          case 'A32001':
350
+            return '在职公务员'
286
             break
351
             break
287
-          case "A32002":
288
-            return "在职驻深公务员"
352
+          case 'A32002':
353
+            return '在职驻深公务员'
289
 
354
 
290
             break
355
             break
291
-          case "A39301":
292
-            return "家属统筹医疗"
356
+          case 'A39301':
357
+            return '家属统筹医疗'
293
 
358
 
294
             break
359
             break
295
-          case "A41001":
296
-            return "工伤在职"
360
+          case 'A41001':
361
+            return '工伤在职'
297
 
362
 
298
             break
363
             break
299
-          case "A51001":
300
-            return "生育在职"
364
+          case 'A51001':
365
+            return '生育在职'
301
 
366
 
302
             break
367
             break
303
-          case "A52001":
304
-            return "生育医疗一档"
368
+          case 'A52001':
369
+            return '生育医疗一档'
305
 
370
 
306
             break
371
             break
307
-          case "A52002":
308
-            return "生育医疗一档"
372
+          case 'A52002':
373
+            return '生育医疗一档'
309
 
374
 
310
             break
375
             break
311
-          case "C31001":
312
-            return "一档医疗退休"
376
+          case 'C31001':
377
+            return '一档医疗退休'
313
 
378
 
314
             break
379
             break
315
-          case "C31002":
316
-            return "二档医疗退休"
380
+          case 'C31002':
381
+            return '二档医疗退休'
317
             break
382
             break
318
 
383
 
319
         }
384
         }

+ 2 - 2
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

1613
               }
1613
               }
1614
             }
1614
             }
1615
 
1615
 
1616
-            total = Math.floor(total * 100) / 100
1616
+            total = total.toFixed(4)
1617
           }
1617
           }
1618
         }
1618
         }
1619
         return total
1619
         return total
2223
             for (let i = 0; i < this.prescriptions.length; i++) {
2223
             for (let i = 0; i < this.prescriptions.length; i++) {
2224
               for(let b = 0; b < this.prescriptions[i].advices.length; b++){
2224
               for(let b = 0; b < this.prescriptions[i].advices.length; b++){
2225
                 if (this.prescriptions[i].med_type == 14 && this.prescriptions[i].advices[b].drug.is_special_diseases != 1) {
2225
                 if (this.prescriptions[i].med_type == 14 && this.prescriptions[i].advices[b].drug.is_special_diseases != 1) {
2226
-                  this.$message.error(this.prescriptions[i].name.toString() +"属于特病类型处方,开非特病类型的药")
2226
+                  this.$message.error(this.prescriptions[i].name.toString() +"属于特病类型处方,不能开非特病类型的药")
2227
                   return
2227
                   return
2228
                 }
2228
                 }
2229
               }
2229
               }

+ 3 - 1
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue View File

416
         for (let i = 0; i < this.prescriptions.length; i++) {
416
         for (let i = 0; i < this.prescriptions.length; i++) {
417
           for (let b = 0; b < this.prescriptions[i].advices.length; b++) {
417
           for (let b = 0; b < this.prescriptions[i].advices.length; b++) {
418
             if (this.prescriptions[i].med_type == 14 && this.prescriptions[i].advices[b].drug.is_special_diseases != 1) {
418
             if (this.prescriptions[i].med_type == 14 && this.prescriptions[i].advices[b].drug.is_special_diseases != 1) {
419
-              this.$message.error('处方' + (i + 1).toString() + '属于特病类型处方,开非特病类型的药')
419
+              this.$message.error('处方' + (i + 1).toString() + '属于特病类型处方,不能开非特病类型的药')
420
+
421
+
420
               return
422
               return
421
             }
423
             }
422
 
424
 

+ 1 - 1
src/xt_pages/outpatientDoctorStation/template/printFour.vue View File

55
                  <p>配对:</p>
55
                  <p>配对:</p>
56
                  <p>核对:</p>
56
                  <p>核对:</p>
57
                  <p>发药:</p>
57
                  <p>发药:</p>
58
-                 <p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
58
+                 <p>药费:{{getTotalOne(item.id).toFixed(4)?getTotalOne(item.id).toFixed(4):0}}元</p>
59
           </div>
59
           </div>
60
           <div style="page-break-after:always"></div>
60
           <div style="page-break-after:always"></div>
61
       </div>
61
       </div>

+ 1 - 1
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

55
                  <p>配对:</p>
55
                  <p>配对:</p>
56
                  <p>核对:</p>
56
                  <p>核对:</p>
57
                  <p>发药:</p>
57
                  <p>发药:</p>
58
-                 <p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
58
+                 <p>药费:{{getTotalOne(item.id).toFixed(4)?getTotalOne(item.id).toFixed(4):0}}元</p>
59
           </div>
59
           </div>
60
           <div style="page-break-after:always"></div>
60
           <div style="page-break-after:always"></div>
61
       </div>
61
       </div>

+ 1 - 1
src/xt_pages/outpatientDoctorStation/treatTemplate/printOne.vue View File

82
 
82
 
83
             <div class="actionBar">
83
             <div class="actionBar">
84
                 <div>执行医生:{{item.doctor?item.doctor:''}}</div>
84
                 <div>执行医生:{{item.doctor?item.doctor:''}}</div>
85
-                <div>费用:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):''}}元</div>
85
+                <div>费用:{{getTotalOne(item.id).toFixed(4)?getTotalOne(item.id).toFixed(4):''}}元</div>
86
             </div>
86
             </div>
87
 
87
 
88
             <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">
88
             <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">

+ 46 - 27
src/xt_pages/outpatientTool/components/detail.vue View File

72
             <el-table-column align="center" prop="name" label="项目名称">
72
             <el-table-column align="center" prop="name" label="项目名称">
73
                 <template slot-scope="scope">{{scope.row.item_name}}</template>
73
                 <template slot-scope="scope">{{scope.row.item_name}}</template>
74
             </el-table-column>
74
             </el-table-column>
75
+            <el-table-column align="center" prop="name" label="规格">
76
+                <template slot-scope="scope">{{scope.row.item_spec}}</template>
77
+            </el-table-column>
75
             <el-table-column align="center" prop="name" label="数量">
78
             <el-table-column align="center" prop="name" label="数量">
76
                 <template slot-scope="scope">{{scope.row.count}}</template>
79
                 <template slot-scope="scope">{{scope.row.count}}</template>
77
             </el-table-column>
80
             </el-table-column>
78
             <el-table-column align="center" prop="name" label="单价">
81
             <el-table-column align="center" prop="name" label="单价">
79
-                <template slot-scope="scope">{{scope.row.price.toFixed(2)}}</template>
82
+                <template slot-scope="scope">{{scope.row.price.toFixed(4)}}</template>
80
             </el-table-column>
83
             </el-table-column>
81
             <el-table-column align="center" prop="name" label="费用">
84
             <el-table-column align="center" prop="name" label="费用">
82
                 <template slot-scope="scope">
85
                 <template slot-scope="scope">
83
-                    <div>{{(scope.row.price.toFixed(2)*scope.row.count).toFixed(2)}}</div>
86
+                    <div>{{(scope.row.price.toFixed(4)*scope.row.count).toFixed(4)}}</div>
84
                 </template>
87
                 </template>
85
             </el-table-column>
88
             </el-table-column>
86
 
89
 
87
             <el-table-column align="center" prop="total" label="费用总额">
90
             <el-table-column align="center" prop="total" label="费用总额">
88
                 <template slot-scope="scope">
91
                 <template slot-scope="scope">
89
-                    <div>{{scope.row.total.toFixed(2)}}</div>
92
+                    <div>{{scope.row.total.toFixed(4)}}</div>
90
                 </template>
93
                 </template>
91
             </el-table-column>
94
             </el-table-column>
92
 
95
 
214
                   newObj['price'] = orders[b].order_info[c].pric
217
                   newObj['price'] = orders[b].order_info[c].pric
215
                   if (orders[b].order_info[c].advice_id > 0 && orders[b].order_info[c].project_id == 0) {
218
                   if (orders[b].order_info[c].advice_id > 0 && orders[b].order_info[c].project_id == 0) {
216
                     newObj['type'] = 1
219
                     newObj['type'] = 1
217
-                    // newObj['item_name'] = orders[b].order_info[c].advice.advice_name
220
+                    newObj['item_name'] = orders[b].order_info[c].advice.advice_name
218
                     newObj['item_id'] = orders[b].order_info[c].advice.drug_id
221
                     newObj['item_id'] = orders[b].order_info[c].advice.drug_id
219
 
222
 
220
                     if (orders[b].order_info[c].advice.drug.min_unit != orders[b].order_info[c].advice.drug.dose_unit) {
223
                     if (orders[b].order_info[c].advice.drug.min_unit != orders[b].order_info[c].advice.drug.dose_unit) {
221
-                      newObj['item_name'] = orders[b].order_info[c].advice.advice_name + '( ' + orders[b].order_info[c].advice.drug.dose + orders[b].order_info[c].advice.drug.dose_unit + '*' + orders[b].order_info[c].advice.drug.min_number + orders[b].order_info[c].advice.drug.min_unit + '/' + orders[b].order_info[c].advice.drug.max_unit + ' )'
224
+                      newObj['item_spec'] =  orders[b].order_info[c].advice.drug.dose + orders[b].order_info[c].advice.drug.dose_unit + '*' + orders[b].order_info[c].advice.drug.min_number + orders[b].order_info[c].advice.drug.min_unit + '/' + orders[b].order_info[c].advice.drug.max_unit
222
                     } else {
225
                     } else {
223
 
226
 
224
-                      newObj['item_name'] = ''
227
+                      newObj['item_spec'] = ''
225
                     }
228
                     }
226
 
229
 
227
                   }
230
                   }
228
                   if (orders[b].order_info[c].advice_id == 0 && orders[b].order_info[c].project_id > 0) {
231
                   if (orders[b].order_info[c].advice_id == 0 && orders[b].order_info[c].project_id > 0) {
229
                     newObj['type'] = 2
232
                     newObj['type'] = 2
230
                     newObj['item_id'] = orders[b].order_info[c].project.project_id
233
                     newObj['item_id'] = orders[b].order_info[c].project.project_id
234
+                    newObj['item_name'] = orders[b].order_info[c].project.project.project_name
231
 
235
 
232
                     if (orders[b].order_info[c].project.type == 2) {
236
                     if (orders[b].order_info[c].project.type == 2) {
233
-                      newObj['item_name'] = orders[b].order_info[c].project.project.project_name
237
+                      newObj['item_spec'] =""
234
 
238
 
235
                     } else if (orders[b].order_info[c].project.type == 3) {
239
                     } else if (orders[b].order_info[c].project.type == 3) {
236
-                      newObj['item_name'] = orders[b].order_info[c].project.good_info.good_name + '( ' + orders[b].order_info[c].project.good_info.specification_name + ' )'
240
+                      newObj['item_spec'] =    orders[b].order_info[c].project.good_info.specification_name
237
 
241
 
238
                     }
242
                     }
239
                   }
243
                   }
271
                 obj['price'] = project[i].price
275
                 obj['price'] = project[i].price
272
                 obj['type'] = project[i].type
276
                 obj['type'] = project[i].type
273
                 obj['item_name'] = project[i].item_name
277
                 obj['item_name'] = project[i].item_name
278
+                obj['item_spec'] = project[i].item_spec
279
+
274
                 obj['item_id'] = project[i].item_id
280
                 obj['item_id'] = project[i].item_id
275
                 obj['name'] = tempPatientsTwo[d].name
281
                 obj['name'] = tempPatientsTwo[d].name
276
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
282
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
290
                 obj['price'] = advice[i].price
296
                 obj['price'] = advice[i].price
291
                 obj['type'] = advice[i].type
297
                 obj['type'] = advice[i].type
292
                 obj['item_name'] = advice[i].item_name
298
                 obj['item_name'] = advice[i].item_name
299
+                obj['item_spec'] = advice[i].item_spec
293
                 obj['item_id'] = advice[i].item_id
300
                 obj['item_id'] = advice[i].item_id
294
                 obj['name'] = tempPatientsTwo[d].name
301
                 obj['name'] = tempPatientsTwo[d].name
295
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
302
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
303
               let total = 0
310
               let total = 0
304
               for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
311
               for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
305
                 let new_name = tempPatientsTwo[i].new_order_info[b].item_name
312
                 let new_name = tempPatientsTwo[i].new_order_info[b].item_name
306
-                new_name = new_name.replace('( ', '')
307
-                new_name = new_name.replace(' )', '')
308
-                if (new_name.length != 0) {
309
-                  total = parseFloat(total) + parseFloat((parseFloat(tempPatientsTwo[i].new_order_info[b].count.toString()) * parseFloat(tempPatientsTwo[i].new_order_info[b].price.toString().toString())).toFixed(2))
313
+                // console.log('3 ' + new_name)
314
+                if (new_name != undefined){
315
+                  // console.log('3 ' + tempPatientsTwo[i].new_order_info[b].patient_id)
316
+                  // console.log('3 ' + tempPatientsTwo[i].new_order_info[b].price)
317
+                  // console.log('3 ' + tempPatientsTwo[i].new_order_info[b].count)
318
+                  //
319
+                  // new_name = new_name.replace('( ', '')
320
+                  // new_name = new_name.replace(' )', '')
321
+                  if (new_name.length != 0) {
322
+                    total = parseFloat(total) + parseFloat((parseFloat(tempPatientsTwo[i].new_order_info[b].count.toString()) * parseFloat(tempPatientsTwo[i].new_order_info[b].price.toString().toString())).toFixed(2))
323
+                  }
324
+
325
+
326
+
310
                 }
327
                 }
328
+
329
+
311
               }
330
               }
312
               tempPatientsTwo[i]['total'] = total
331
               tempPatientsTwo[i]['total'] = total
313
             }
332
             }
317
               if (tempPatientsTwo[i].new_order_info.length > 0) {
336
               if (tempPatientsTwo[i].new_order_info.length > 0) {
318
 
337
 
319
                 for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
338
                 for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
320
-                  let new_name = tempPatientsTwo[i].new_order_info[b].item_name
321
-                  console.log('2 ' + new_name)
322
-
323
-                  new_name = new_name.replace('( ', '')
324
-                  new_name = new_name.replace(' )', '')
339
+                  // let new_name = tempPatientsTwo[i].new_order_info[b].item_name
340
+                  // console.log('2 ' + new_name)
341
+                  //
342
+                  // new_name = new_name.replace('( ', '')
343
+                  // new_name = new_name.replace(' )', '')
325
 
344
 
326
-                  if (new_name.length != 0) {
327
                     let obj = {
345
                     let obj = {
328
                       name: tempPatientsTwo[i].name,
346
                       name: tempPatientsTwo[i].name,
329
                       patient_id: tempPatientsTwo[i].patient_id,
347
                       patient_id: tempPatientsTwo[i].patient_id,
331
                       type: tempPatientsTwo[i].new_order_info[b].type,
349
                       type: tempPatientsTwo[i].new_order_info[b].type,
332
                       item_name: tempPatientsTwo[i].new_order_info[b].item_name,
350
                       item_name: tempPatientsTwo[i].new_order_info[b].item_name,
333
                       item_id: tempPatientsTwo[i].new_order_info[b].item_id,
351
                       item_id: tempPatientsTwo[i].new_order_info[b].item_id,
334
-                      count: tempPatientsTwo[i].new_order_info[b].count
335
-
352
+                      count: tempPatientsTwo[i].new_order_info[b].count,
353
+                      item_spec: tempPatientsTwo[i].new_order_info[b].item_spec
336
                     }
354
                     }
337
 
355
 
356
+
338
                     // if(b == 0){
357
                     // if(b == 0){
339
                     obj['total'] = tempPatientsTwo[i].total
358
                     obj['total'] = tempPatientsTwo[i].total
340
                     // }else{
359
                     // }else{
341
                     //   obj['total'] = 0
360
                     //   obj['total'] = 0
342
                     // }
361
                     // }
343
                     this.tableData.push(obj)
362
                     this.tableData.push(obj)
344
-                  }
363
+
345
 
364
 
346
                 }
365
                 }
347
               }
366
               }
471
         })
490
         })
472
         this.sameRowArr = sameRowArr
491
         this.sameRowArr = sameRowArr
473
       }, merge({ row, column, rowIndex, columnIndex }) {
492
       }, merge({ row, column, rowIndex, columnIndex }) {
474
-        if (columnIndex === 0 || columnIndex === 5) {
493
+        if (columnIndex === 0 || columnIndex === 6) {
475
           const _row = this.tempArr[rowIndex]
494
           const _row = this.tempArr[rowIndex]
476
           const _col = _row > 0 ? 1 : 0
495
           const _col = _row > 0 ? 1 : 0
477
           return {
496
           return {
487
           let name = order.name
506
           let name = order.name
488
           let item_name = order.item_name
507
           let item_name = order.item_name
489
           let count = order.count
508
           let count = order.count
490
-          let price = order.price.toFixed(2)
491
-          let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
492
-          let total = order.total.toFixed(2)
509
+          let price = order.price.toFixed(4)
510
+          let pay_sumamt = (order.price.toFixed(4) * order.count).toFixed(4)
511
+          let total = order.total.toFixed(4)
493
 
512
 
494
           let obj = {
513
           let obj = {
495
             '患者姓名': name,
514
             '患者姓名': name,
537
             // sums[index] = sums[index].toFixed(2)
556
             // sums[index] = sums[index].toFixed(2)
538
             let num = 0
557
             let num = 0
539
             data.map(item => {
558
             data.map(item => {
540
-              num += item.price.toFixed(2) * item.count
559
+              num += item.price.toFixed(4) * item.count
541
             })
560
             })
542
-            sums[index] = num.toFixed(2)
561
+            sums[index] = num.toFixed(4)
543
           } else {
562
           } else {
544
             sums[index] = ''
563
             sums[index] = ''
545
           }
564
           }

+ 5 - 5
src/xt_pages/outpatientTool/components/gather.vue View File

69
               <template slot-scope="scope">{{scope.row.item_name}}</template>
69
               <template slot-scope="scope">{{scope.row.item_name}}</template>
70
           </el-table-column>
70
           </el-table-column>
71
           <el-table-column align="center" prop="price" label="费用">
71
           <el-table-column align="center" prop="price" label="费用">
72
-              <template slot-scope="scope">{{scope.row.price.toFixed(2)}}</template>
72
+              <template slot-scope="scope">{{scope.row.price.toFixed(4)}}</template>
73
           </el-table-column>
73
           </el-table-column>
74
           <el-table-column align="center" prop="sum" label="费用总额">
74
           <el-table-column align="center" prop="sum" label="费用总额">
75
               <template slot-scope="scope">
75
               <template slot-scope="scope">
76
-                  <div>{{scope.row.sum.toFixed(2)}}</div>
76
+                  <div>{{scope.row.sum.toFixed(4)}}</div>
77
               </template>
77
               </template>
78
           </el-table-column>
78
           </el-table-column>
79
 
79
 
466
                 return prev
466
                 return prev
467
               }
467
               }
468
             }, 0)
468
             }, 0)
469
-            sums[index] = sums[index].toFixed(2)
469
+            sums[index] = sums[index].toFixed(4)
470
           } else {
470
           } else {
471
             sums[index] = ''
471
             sums[index] = ''
472
           }
472
           }
480
           let order = this.tableData[i]
480
           let order = this.tableData[i]
481
           let name = order.name
481
           let name = order.name
482
           let item_name = order.item_name
482
           let item_name = order.item_name
483
-          let pay_sumamt = order.price.toFixed(2)
484
-          let total = order.sum.toFixed(2)
483
+          let pay_sumamt = order.price.toFixed(4)
484
+          let total = order.sum.toFixed(4)
485
 
485
 
486
 
486
 
487
           let obj = {
487
           let obj = {

+ 3 - 3
src/xt_pages/outpatientTool/components/settle.vue View File

93
           </el-table-column>
93
           </el-table-column>
94
           <el-table-column align="center" prop="total" label="费用总额">
94
           <el-table-column align="center" prop="total" label="费用总额">
95
               <template slot-scope="scope">
95
               <template slot-scope="scope">
96
-                  <div>{{scope.row.total.toFixed(2)}}</div>
96
+                  <div>{{scope.row.total.toFixed(4)}}</div>
97
               </template>
97
               </template>
98
           </el-table-column>
98
           </el-table-column>
99
 
99
 
194
               for (let b = 0; b < data[i].orders.length; b++) {
194
               for (let b = 0; b < data[i].orders.length; b++) {
195
                 let order = data[i].orders[b]
195
                 let order = data[i].orders[b]
196
                 order['other_name'] = data[i].name
196
                 order['other_name'] = data[i].name
197
-                total = parseFloat((parseFloat(total.toString()) + parseFloat(data[i].orders[b].medfee_sumamt.toString())).toFixed(2).toString())
197
+                total = parseFloat((parseFloat(total.toString()) + parseFloat(data[i].orders[b].medfee_sumamt.toString())).toFixed(4).toString())
198
               }
198
               }
199
 
199
 
200
               data[i]['total'] = total
200
               data[i]['total'] = total
312
                 return prev
312
                 return prev
313
               }
313
               }
314
             }, 0)
314
             }, 0)
315
-            sums[index] = sums[index].toFixed(2)
315
+            sums[index] = sums[index].toFixed(4)
316
           } else {
316
           } else {
317
             sums[index] = ''
317
             sums[index] = ''
318
           }
318
           }

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

40
               <td style="line-height: 50px">
40
               <td style="line-height: 50px">
41
                 <span>{{item.XtBaseDrug.min_unit}}</span>
41
                 <span>{{item.XtBaseDrug.min_unit}}</span>
42
               </td>
42
               </td>
43
-            
43
+
44
               <td style="line-height: 50px">
44
               <td style="line-height: 50px">
45
                   {{getCount(item.drug_id)}}
45
                   {{getCount(item.drug_id)}}
46
               </td>
46
               </td>
48
                   {{item.price}}
48
                   {{item.price}}
49
               </td>
49
               </td>
50
               <td style="line-height:50px">
50
               <td style="line-height:50px">
51
-                 {{(getCount(item.drug_id)*item.price).toFixed(2)}}
51
+                 {{(getCount(item.drug_id)*item.price).toFixed(4)}}
52
               </td>
52
               </td>
53
               <td style="line-height: 50px">
53
               <td style="line-height: 50px">
54
                  {{item.remark}}
54
                  {{item.remark}}
65
               <td style="line-height: 50px" width="50"></td>
65
               <td style="line-height: 50px" width="50"></td>
66
               <td style="line-height: 50px" width="80"></td>
66
               <td style="line-height: 50px" width="80"></td>
67
               <td style="line-height: 50px" width="80"></td>
67
               <td style="line-height: 50px" width="80"></td>
68
-              <td style="line-height: 50px" width="80">{{getTotal().toFixed(2)}}</td>
68
+              <td style="line-height: 50px" width="80">{{getTotal().toFixed(4)}}</td>
69
               <td style="line-height: 50px" width="80"></td>
69
               <td style="line-height: 50px" width="80"></td>
70
             </tr>
70
             </tr>
71
 
71
 
108
           { path: false, name: '打印单' }
108
           { path: false, name: '打印单' }
109
         ],
109
         ],
110
         loading: false,
110
         loading: false,
111
-        orgname: '',   
111
+        orgname: '',
112
         totalPrice: 0,
112
         totalPrice: 0,
113
         stockDatas: [],
113
         stockDatas: [],
114
         goodUnit: [],
114
         goodUnit: [],
151
           scanStyles: false
151
           scanStyles: false
152
         })
152
         })
153
       },
153
       },
154
-   
154
+
155
       getUnit(id){
155
       getUnit(id){
156
         var name = ""
156
         var name = ""
157
         for(let i=0;i<this.goodUnit.length;i++){
157
         for(let i=0;i<this.goodUnit.length;i++){
218
           var total = response.data.data.total
218
           var total = response.data.data.total
219
           this.total = total
219
           this.total = total
220
         }
220
         }
221
-      })  
221
+      })
222
       },
222
       },
223
 
223
 
224
       getTotal(){
224
       getTotal(){
240
              var list = response.data.data.list
240
              var list = response.data.data.list
241
              console.log("入库单详情",list)
241
              console.log("入库单详情",list)
242
              this.cancelStockDate  = list
242
              this.cancelStockDate  = list
243
-           }   
243
+           }
244
         })
244
         })
245
 
245
 
246
-        
246
+
247
       },
247
       },
248
       getCount(drug_id){
248
       getCount(drug_id){
249
         var total = 0
249
         var total = 0
275
       var xtuser = this.$store.getters.xt_user
275
       var xtuser = this.$store.getters.xt_user
276
       this.orgname = xtuser.org.org_name
276
       this.orgname = xtuser.org.org_name
277
       // this.getlist()
277
       // this.getlist()
278
-     
278
+
279
 
279
 
280
       this.getDrugWarehouseInfoPrint()
280
       this.getDrugWarehouseInfoPrint()
281
        this.getDrugCountList()
281
        this.getDrugCountList()

+ 7 - 7
src/xt_pages/stock/stockOutOrderDetailPrint.vue View File

53
                                 <tr>
53
                                 <tr>
54
                                   <td>合计</td>
54
                                   <td>合计</td>
55
                                   <td colspan="7"></td>
55
                                   <td colspan="7"></td>
56
-                                  <td>{{getAllPice(it.id).toFixed(2)}}</td>
56
+                                  <td>{{getAllPice(it.id).toFixed(4)}}</td>
57
                                </tr>
57
                                </tr>
58
                             </tbody>
58
                             </tbody>
59
                         </table>
59
                         </table>
222
             return false
222
             return false
223
           } else {
223
           } else {
224
             this.list = [];
224
             this.list = [];
225
-        
225
+
226
             for (let i = 0; i < response.data.data.list.length; i++) {
226
             for (let i = 0; i < response.data.data.list.length; i++) {
227
 
227
 
228
-              
228
+
229
               this.list.push(response.data.data.list[i])
229
               this.list.push(response.data.data.list[i])
230
             }
230
             }
231
-          
231
+
232
           }
232
           }
233
         })
233
         })
234
       },
234
       },
256
          for(let i=0;i<this.orderList.length;i++){
256
          for(let i=0;i<this.orderList.length;i++){
257
           if(this.orderList[i].warehouse_out_id == warehouse_out_id && this.orderList[i].good_id == good_id){
257
           if(this.orderList[i].warehouse_out_id == warehouse_out_id && this.orderList[i].good_id == good_id){
258
              count += this.orderList[i].count
258
              count += this.orderList[i].count
259
-          } 
259
+          }
260
          }
260
          }
261
          return count
261
          return count
262
       },
262
       },
308
           return uParseTime(val, '{y}-{m}-{d}')
308
           return uParseTime(val, '{y}-{m}-{d}')
309
          }
309
          }
310
       },
310
       },
311
-     
311
+
312
       GetOrderDetailOne(id){
312
       GetOrderDetailOne(id){
313
         const params = {
313
         const params = {
314
           'id': id
314
           'id': id
334
         })
334
         })
335
      },
335
      },
336
      getAllPice(id){
336
      getAllPice(id){
337
-        var  total_price = 0 
337
+        var  total_price = 0
338
         for(let i=0;i<this.orderList.length;i++){
338
         for(let i=0;i<this.orderList.length;i++){
339
           if(id == this.orderList[i].warehouse_out_id){
339
           if(id == this.orderList[i].warehouse_out_id){
340
              total_price += this.orderList[i].count * this.orderList[i].price
340
              total_price += this.orderList[i].count * this.orderList[i].price