Przeglądaj źródła

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

csx 3 lat temu
rodzic
commit
5a79e3b530

+ 13 - 1
src/xt_pages/data/components/addInspection.vue Wyświetl plik

@@ -79,7 +79,11 @@
79 79
                         <template slot-scope="scope">{{scope.row.number}}</template>
80 80
                     </el-table-column>
81 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 87
                     </el-table-column>
84 88
                     <el-table-column align="center" prop="name" label="单价" width="120">
85 89
                         <template slot-scope="scope">{{scope.row.price}}</template>
@@ -163,6 +167,14 @@
163 167
       }
164 168
     },
165 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 178
       changeProject() {
167 179
         this.form.number = 1
168 180
 

+ 12 - 1
src/xt_pages/data/components/editInspection.vue Wyświetl plik

@@ -78,7 +78,10 @@
78 78
                         <template slot-scope="scope">{{scope.row.number}}</template>
79 79
                     </el-table-column>
80 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 85
                     </el-table-column>
83 86
                     <el-table-column align="center" prop="name" label="单价" width="120">
84 87
                         <template slot-scope="scope">{{scope.row.price}}</template>
@@ -166,6 +169,14 @@
166 169
       }
167 170
     },
168 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 180
       changeProject() {
170 181
         this.form.number = 1
171 182
 

+ 20 - 20
src/xt_pages/dialysis/dialysisDoctorAdvice.vue Wyświetl plik

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

+ 6 - 6
src/xt_pages/hospitalStation/components/deskPrescription.vue Wyświetl plik

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

+ 4 - 4
src/xt_pages/hospitalStation/outpatientChargesManagement.vue Wyświetl plik

@@ -1210,7 +1210,7 @@
1210 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 1215
       }, getMonthTotalOne() {
1216 1216
         var total = 0
@@ -1235,7 +1235,7 @@
1235 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 1241
       getTotal() {
@@ -1258,7 +1258,7 @@
1258 1258
             }
1259 1259
           }
1260 1260
         }
1261
-        return total.toFixed(2)
1261
+        return total.toFixed(4)
1262 1262
 
1263 1263
       }, getTotalTwo() {
1264 1264
         var total = 0
@@ -1281,7 +1281,7 @@
1281 1281
             }
1282 1282
           }
1283 1283
         }
1284
-        return total.toFixed(2)
1284
+        return total.toFixed(4)
1285 1285
 
1286 1286
       },
1287 1287
       moreState(tab, event) {

+ 1 - 1
src/xt_pages/hospitalStation/treatTemplate/printOne.vue Wyświetl plik

@@ -82,7 +82,7 @@
82 82
 
83 83
             <div class="actionBar">
84 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 86
             </div>
87 87
 
88 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 Wyświetl plik

@@ -23,7 +23,7 @@
23 23
         </div>
24 24
         <div style="display:flex;justify-content: space-between;">
25 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 27
             <div style="position: absolute;top:90px;left:460px;">{{ list.psn_cash_money }}</div>
28 28
             <div style="position: absolute;top:90px;left:640px;">门慢结算</div>
29 29
         </div>
@@ -102,7 +102,7 @@
102 102
                 <span v-else>零</span>
103 103
             </span>
104 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 106
         </div>
107 107
         <div style="position: absolute;top:280px;left:460px">现金:{{ list.psn_cash_money }}</div>
108 108
         <div>

+ 25 - 13
src/xt_pages/outpatientCharges/newStatementPrintTwo.vue Wyświetl plik

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

+ 7 - 7
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Wyświetl plik

@@ -1804,7 +1804,7 @@
1804 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 1810
       getTotalThree(big_prescriptions) {
@@ -1830,7 +1830,7 @@
1830 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,7 +1857,7 @@
1857 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 1863
       getMonthTotalTwo(month_prescriptions) {
@@ -1883,7 +1883,7 @@
1883 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,7 +1909,7 @@
1909 1909
             }
1910 1910
           }
1911 1911
         }
1912
-        return total.toFixed(2)
1912
+        return total.toFixed(4)
1913 1913
 
1914 1914
       }, getTotalTwo() {
1915 1915
         var total = 0
@@ -1932,7 +1932,7 @@
1932 1932
             }
1933 1933
           }
1934 1934
         }
1935
-        return total.toFixed(2)
1935
+        return total.toFixed(4)
1936 1936
 
1937 1937
       }, getTotalFour(month_prescriptions) {
1938 1938
         var total = 0
@@ -1954,7 +1954,7 @@
1954 1954
             }
1955 1955
           }
1956 1956
         }
1957
-        return total.toFixed(2)
1957
+        return total.toFixed(4)
1958 1958
       },
1959 1959
       moreState(tab, event) {
1960 1960
         if (tab == 'more') {

+ 19 - 4
src/xt_pages/outpatientCharges/statementPrint.vue Wyświetl plik

@@ -15,7 +15,7 @@
15 15
       <div class='dialysisPage' style="padding-top:40px;">
16 16
         <div v-if="org_id == 9990 || org_id == 10138 || org_id == 9504 || org_id == 10028 || org_id == 0">
17 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 19
           <printFour v-if="org_id == 9504 || org_id == 10028 || org_id == 0" :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts"></printFour>
20 20
         </div>
21 21
         <printOne :info="info" v-else></printOne>
@@ -79,7 +79,7 @@ export default {
79 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 83
         setTimeout(() => {
84 84
           const style =
85 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,7 +301,7 @@ export default {
301 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 305
           getPrivateExpenses(params).then(response => {
306 306
             if (response.data.state == 0) {
307 307
               // this.$message.error(response.data.msg)
@@ -327,8 +327,13 @@ export default {
327 327
                 total: 0
328 328
               }
329 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 337
                 if(item.advice_id > 0){
333 338
                   obj.details.push(item)
334 339
                   obj.total += (item.pric * item.advice.prescribing_number)
@@ -345,10 +350,20 @@ export default {
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 361
               this.balanceAccounts.new_detail_list = []
349 362
               this.balanceAccounts.new_detail_list.push(obj)
350 363
               this.balanceAccounts.new_detail_list.push(obj2)
351 364
               this.balanceAccounts.new_detail_list.push(obj3)
365
+              this.balanceAccounts.new_detail_list.push(obj4)
366
+
352 367
               console.log(111,this.balanceAccounts)
353 368
               this.num = num
354 369
               console.log('this.num',this.num)

+ 2 - 2
src/xt_pages/outpatientCharges/statementTemplate/printFour.vue Wyświetl plik

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

+ 274 - 209
src/xt_pages/outpatientCharges/statementTemplate/printThree.vue Wyświetl plik

@@ -1,216 +1,281 @@
1 1
 <template>
2 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 5
             <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
5 6
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
6 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 15
             </div>
11 16
             <div style="display:flex;justify-content: space-between;">
12 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 30
                 </div>
20 31
                 <div style="float:right">金额单位:元</div>
21 32
             </div>
22 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 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 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 133
             </div>
104 134
             <div style="float:right;margin:10px 0;display:flex;">
105 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 138
             </div>
108 139
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
109 140
         </div>
110 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 143
             <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
113 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 149
                 <div>电脑号:<span style="display:inline-block;width:80px;"></span></div>
117 150
             </div>
118 151
             <div style="display:flex;justify-content: space-between;">
119 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 163
                 </div>
127 164
                 <div style="float:right">金额单位:元</div>
128 165
             </div>
129 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 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 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 272
             </div>
211 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 279
             </div>
215 280
             <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
216 281
         </div>
@@ -246,7 +311,7 @@
246 311
     props: {
247 312
       paramsObj: Object,
248 313
       info: Object,
249
-      balanceAccounts:Object
314
+      balanceAccounts: Object
250 315
     },
251 316
     methods: {
252 317
       getName(list) {
@@ -258,62 +323,62 @@
258 323
         }
259 324
 
260 325
         switch (new_list[0].bcc334) {
261
-          case "A31001":
262
-            return "深圳医保1档"
326
+          case 'A31001':
327
+            return '深圳医保1档'
263 328
             break
264
-          case "A31002":
265
-            return "深圳医保2档"
329
+          case 'A31002':
330
+            return '深圳医保2档'
266 331
 
267 332
             break
268
-          case "A31003":
269
-            return "深圳医保3档"
333
+          case 'A31003':
334
+            return '深圳医保3档'
270 335
 
271 336
             break
272
-          case "A31004":
273
-            return "二档(少儿)"
337
+          case 'A31004':
338
+            return '二档(少儿)'
274 339
 
275 340
             break
276
-          case "A31005":
277
-            return "学生二档"
341
+          case 'A31005':
342
+            return '学生二档'
278 343
 
279 344
             break
280
-          case "A31006":
281
-            return "大学生二档"
345
+          case 'A31006':
346
+            return '大学生二档'
282 347
 
283 348
             break
284
-          case "A32001":
285
-            return "在职公务员"
349
+          case 'A32001':
350
+            return '在职公务员'
286 351
             break
287
-          case "A32002":
288
-            return "在职驻深公务员"
352
+          case 'A32002':
353
+            return '在职驻深公务员'
289 354
 
290 355
             break
291
-          case "A39301":
292
-            return "家属统筹医疗"
356
+          case 'A39301':
357
+            return '家属统筹医疗'
293 358
 
294 359
             break
295
-          case "A41001":
296
-            return "工伤在职"
360
+          case 'A41001':
361
+            return '工伤在职'
297 362
 
298 363
             break
299
-          case "A51001":
300
-            return "生育在职"
364
+          case 'A51001':
365
+            return '生育在职'
301 366
 
302 367
             break
303
-          case "A52001":
304
-            return "生育医疗一档"
368
+          case 'A52001':
369
+            return '生育医疗一档'
305 370
 
306 371
             break
307
-          case "A52002":
308
-            return "生育医疗一档"
372
+          case 'A52002':
373
+            return '生育医疗一档'
309 374
 
310 375
             break
311
-          case "C31001":
312
-            return "一档医疗退休"
376
+          case 'C31001':
377
+            return '一档医疗退休'
313 378
 
314 379
             break
315
-          case "C31002":
316
-            return "二档医疗退休"
380
+          case 'C31002':
381
+            return '二档医疗退休'
317 382
             break
318 383
 
319 384
         }

+ 2 - 2
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Wyświetl plik

@@ -1613,7 +1613,7 @@
1613 1613
               }
1614 1614
             }
1615 1615
 
1616
-            total = Math.floor(total * 100) / 100
1616
+            total = total.toFixed(4)
1617 1617
           }
1618 1618
         }
1619 1619
         return total
@@ -2223,7 +2223,7 @@
2223 2223
             for (let i = 0; i < this.prescriptions.length; i++) {
2224 2224
               for(let b = 0; b < this.prescriptions[i].advices.length; b++){
2225 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 2227
                   return
2228 2228
                 }
2229 2229
               }

+ 3 - 1
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue Wyświetl plik

@@ -416,7 +416,9 @@
416 416
         for (let i = 0; i < this.prescriptions.length; i++) {
417 417
           for (let b = 0; b < this.prescriptions[i].advices.length; b++) {
418 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 422
               return
421 423
             }
422 424
 

+ 1 - 1
src/xt_pages/outpatientDoctorStation/template/printFour.vue Wyświetl plik

@@ -55,7 +55,7 @@
55 55
                  <p>配对:</p>
56 56
                  <p>核对:</p>
57 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 59
           </div>
60 60
           <div style="page-break-after:always"></div>
61 61
       </div>

+ 1 - 1
src/xt_pages/outpatientDoctorStation/template/printOne.vue Wyświetl plik

@@ -55,7 +55,7 @@
55 55
                  <p>配对:</p>
56 56
                  <p>核对:</p>
57 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 59
           </div>
60 60
           <div style="page-break-after:always"></div>
61 61
       </div>

+ 1 - 1
src/xt_pages/outpatientDoctorStation/treatTemplate/printOne.vue Wyświetl plik

@@ -82,7 +82,7 @@
82 82
 
83 83
             <div class="actionBar">
84 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 86
             </div>
87 87
 
88 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 Wyświetl plik

@@ -72,21 +72,24 @@
72 72
             <el-table-column align="center" prop="name" label="项目名称">
73 73
                 <template slot-scope="scope">{{scope.row.item_name}}</template>
74 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 78
             <el-table-column align="center" prop="name" label="数量">
76 79
                 <template slot-scope="scope">{{scope.row.count}}</template>
77 80
             </el-table-column>
78 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 83
             </el-table-column>
81 84
             <el-table-column align="center" prop="name" label="费用">
82 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 87
                 </template>
85 88
             </el-table-column>
86 89
 
87 90
             <el-table-column align="center" prop="total" label="费用总额">
88 91
                 <template slot-scope="scope">
89
-                    <div>{{scope.row.total.toFixed(2)}}</div>
92
+                    <div>{{scope.row.total.toFixed(4)}}</div>
90 93
                 </template>
91 94
             </el-table-column>
92 95
 
@@ -214,26 +217,27 @@
214 217
                   newObj['price'] = orders[b].order_info[c].pric
215 218
                   if (orders[b].order_info[c].advice_id > 0 && orders[b].order_info[c].project_id == 0) {
216 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 221
                     newObj['item_id'] = orders[b].order_info[c].advice.drug_id
219 222
 
220 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 225
                     } else {
223 226
 
224
-                      newObj['item_name'] = ''
227
+                      newObj['item_spec'] = ''
225 228
                     }
226 229
 
227 230
                   }
228 231
                   if (orders[b].order_info[c].advice_id == 0 && orders[b].order_info[c].project_id > 0) {
229 232
                     newObj['type'] = 2
230 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 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 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,6 +275,8 @@
271 275
                 obj['price'] = project[i].price
272 276
                 obj['type'] = project[i].type
273 277
                 obj['item_name'] = project[i].item_name
278
+                obj['item_spec'] = project[i].item_spec
279
+
274 280
                 obj['item_id'] = project[i].item_id
275 281
                 obj['name'] = tempPatientsTwo[d].name
276 282
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
@@ -290,6 +296,7 @@
290 296
                 obj['price'] = advice[i].price
291 297
                 obj['type'] = advice[i].type
292 298
                 obj['item_name'] = advice[i].item_name
299
+                obj['item_spec'] = advice[i].item_spec
293 300
                 obj['item_id'] = advice[i].item_id
294 301
                 obj['name'] = tempPatientsTwo[d].name
295 302
                 obj['patient_id'] = tempPatientsTwo[d].patient_id
@@ -303,11 +310,23 @@
303 310
               let total = 0
304 311
               for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
305 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 331
               tempPatientsTwo[i]['total'] = total
313 332
             }
@@ -317,13 +336,12 @@
317 336
               if (tempPatientsTwo[i].new_order_info.length > 0) {
318 337
 
319 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 345
                     let obj = {
328 346
                       name: tempPatientsTwo[i].name,
329 347
                       patient_id: tempPatientsTwo[i].patient_id,
@@ -331,17 +349,18 @@
331 349
                       type: tempPatientsTwo[i].new_order_info[b].type,
332 350
                       item_name: tempPatientsTwo[i].new_order_info[b].item_name,
333 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 357
                     // if(b == 0){
339 358
                     obj['total'] = tempPatientsTwo[i].total
340 359
                     // }else{
341 360
                     //   obj['total'] = 0
342 361
                     // }
343 362
                     this.tableData.push(obj)
344
-                  }
363
+
345 364
 
346 365
                 }
347 366
               }
@@ -471,7 +490,7 @@
471 490
         })
472 491
         this.sameRowArr = sameRowArr
473 492
       }, merge({ row, column, rowIndex, columnIndex }) {
474
-        if (columnIndex === 0 || columnIndex === 5) {
493
+        if (columnIndex === 0 || columnIndex === 6) {
475 494
           const _row = this.tempArr[rowIndex]
476 495
           const _col = _row > 0 ? 1 : 0
477 496
           return {
@@ -487,9 +506,9 @@
487 506
           let name = order.name
488 507
           let item_name = order.item_name
489 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 513
           let obj = {
495 514
             '患者姓名': name,
@@ -537,9 +556,9 @@
537 556
             // sums[index] = sums[index].toFixed(2)
538 557
             let num = 0
539 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 562
           } else {
544 563
             sums[index] = ''
545 564
           }

+ 5 - 5
src/xt_pages/outpatientTool/components/gather.vue Wyświetl plik

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

+ 3 - 3
src/xt_pages/outpatientTool/components/settle.vue Wyświetl plik

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

+ 9 - 9
src/xt_pages/stock/drugs/drugPrint.vue Wyświetl plik

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

+ 7 - 7
src/xt_pages/stock/stockOutOrderDetailPrint.vue Wyświetl plik

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