Kaynağa Gözat

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 yıl önce
ebeveyn
işleme
313ba40a04

+ 9 - 0
src/api/patient.js Dosyayı Görüntüle

@@ -803,4 +803,13 @@ export function getPatientDetailInformedconsent(id,params){
803 803
     method:"get",
804 804
     params:params,
805 805
   })
806
+}
807
+
808
+export function getExportList(params){
809
+  
810
+  return request({
811
+    url:"/api/patient/getexportlist",
812
+    metod:"get",
813
+    params:params,
814
+  })
806 815
 }

+ 9 - 0
src/api/schedule.js Dosyayı Görüntüle

@@ -38,6 +38,15 @@ export function getSchedulesTwo(params) {
38 38
   })
39 39
 }
40 40
 
41
+export function getSchedulesThree(params){
42
+  
43
+  return request({
44
+    url:"/api/schedule/getschedulethreeone",
45
+    method:"Get",
46
+    params:params,
47
+  })
48
+}
49
+
41 50
 export function getSchedulePatients(params) {
42 51
   return request({
43 52
     url: '/api/schedule/patients',

+ 11 - 0
src/router/modules/workforce.js Dosyayı Görüntüle

@@ -223,5 +223,16 @@ export default {
223 223
   //     noCache: true
224 224
   //   }
225 225
   // }
226
+  {
227
+    path: '/scheduleTablePrintSix',
228
+    component: () => import('@/xt_pages/workforce/scheduleTablePrintSix'),
229
+    name: 'scheduleTablePrintSix',
230
+    hidden: true,
231
+    is_menu: false,
232
+    meta: {
233
+      title: 'scheduleTablePrintSix',
234
+      noCache: true
235
+    }
236
+  },
226 237
   ]
227 238
 }

+ 7 - 0
src/xt_pages/dialysis/details/consumable/dialysisParameter.vue Dosyayı Görüntüle

@@ -197,6 +197,13 @@
197 197
              <span>{{scope.row.dialysis_solution.dialysis_irrigation}}</span>
198 198
            </template>
199 199
         </el-table-column>
200
+
201
+        <el-table-column align="center" label="滤过器"  v-if="dialysisSett.dialysis_irrigation ==1">
202
+           <template slot-scope="scope">
203
+             <span>{{scope.row.dialysis_solution.dialysis_strainer}}</span>
204
+           </template>
205
+        </el-table-column>
206
+        
200 207
         
201 208
         <el-table-column align="center" label="置换液" v-if="dialysisSett.displace_liqui_part==1">
202 209
            <template slot-scope="scope">

+ 9 - 5
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue Dosyayı Görüntüle

@@ -16,7 +16,7 @@
16 16
             <span class="main_title"> &nbsp;
17 17
               透析参数
18 18
             </span>
19
-            <span  style="float:right;">打印日期: &nbsp;
19
+            <span  style="float:left;">打印日期: &nbsp;
20 20
                {{$route.query.schedule_date}}
21 21
             </span>
22 22
           </div>
@@ -41,6 +41,7 @@
41 41
                 <td width="100" v-if="dialysisSett.dialyzer_perfusion_apparatus == 1">透析器/灌流器</td>
42 42
                 <td width="100"  v-if="dialysisSett.dialysis_dialyszers == 1">透析器</td>
43 43
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">灌流器</td>
44
+                <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">滤过器</td>
44 45
                  <td width="100" v-if="dialysisSett.displace_liqui_part==1">置换液</td>
45 46
                 <td width="100"  v-if="dialysisSett.displace_liqui_value==1">置换液总量</td>
46 47
                 <td width="100" v-if="dialysisSett.kalium==1">钾</td>
@@ -51,8 +52,8 @@
51 52
                 <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1">封管液</td>
52 53
                 <td width="100"  v-if="dialysisSett.glucose==1">葡萄糖</td>
53 54
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">血流量</td>
54
-                <td>封管液</td>
55
-                <td>促红</td>
55
+                <td v-if="org_id!=10587 && org_id!=0">封管液</td>
56
+                <td v-if="org_id!=10587 && org_id!=0">促红</td>
56 57
               </tr>
57 58
               </thead>
58 59
               <tbody>
@@ -140,6 +141,9 @@
140 141
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">
141 142
                      <span>{{item.dialysis_solution.dialysis_irrigation}}</span>
142 143
                 </td>
144
+                <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">
145
+                     <span>{{item.dialysis_solution.dialysis_strainer}}</span>
146
+                </td>
143 147
                 <td width="100"  v-if="dialysisSett.displace_liqui_part==1">
144 148
                   <span>{{getDisplaceLiquiPart(item.dialysis_solution.displace_liqui_part)}}</span>
145 149
                 </td>
@@ -171,13 +175,13 @@
171 175
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
172 176
                 </td>
173 177
                 
174
-                <td>
178
+                <td v-if="org_id!=10587 && org_id!=0">
175 179
                   <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
176 180
                   <span v-else></span>
177 181
                 </td>
178 182
                 
179 183
                 
180
-                <td>
184
+                <td v-if="org_id!=10587&& org_id!=0">
181 185
                   {{ item.advice_spc }}
182 186
                 </td>
183 187
                </tr>

+ 1 - 1
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue Dosyayı Görüntüle

@@ -1749,7 +1749,7 @@ export default {
1749 1749
           }
1750 1750
       }
1751 1751
 
1752
-      if(this.$store.getters.xt_user.org.id == 10579  || this.$store.getters.xt_user.org.id == 10585){
1752
+      if(this.$store.getters.xt_user.org.id == 10579  || this.$store.getters.xt_user.org.id == 10585 || this.$store.getters.xt_user.org.id == 10587){
1753 1753
         var date = new Date()
1754 1754
           var year = date.getFullYear()
1755 1755
           var month = date.getMonth() + 1

+ 22 - 0
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Dosyayı Görüntüle

@@ -2694,6 +2694,28 @@ mu
2694 2694
             var hours = date.getHours()
2695 2695
             var minites = date.getMinutes()
2696 2696
 
2697
+            if (month < 10) {
2698
+              month = '0' + month
2699
+            }
2700
+            if (day < 10) {
2701
+              day = '0' + day
2702
+            }
2703
+            if (hours < 10) {
2704
+              hours = '0' + hours
2705
+            }
2706
+            if (minites < 10) {
2707
+              minites = '0' + minites
2708
+            }
2709
+            this.start_time = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
2710
+           }else if (this.$store.getters.xt_user.org.id == 10587){
2711
+            var date = new Date()
2712
+            var year = date.getFullYear()
2713
+            var month = date.getMonth() + 1
2714
+            var day = date.getDate()
2715
+
2716
+            var hours = date.getHours()
2717
+            var minites = date.getMinutes()
2718
+
2697 2719
             if (month < 10) {
2698 2720
               month = '0' + month
2699 2721
             }

+ 2 - 2
src/xt_pages/dialysis/details/index.vue Dosyayı Görüntüle

@@ -2238,7 +2238,7 @@ export default {
2238 2238
           newArr.sort(this.compare('created_time'))
2239 2239
         }
2240 2240
 
2241
-        if(this.org_id ==10579 || this.org_id == 0){
2241
+        if(this.org_id ==10579 || this.org_id == 0 || this.org_id ==10587){
2242 2242
           if(newArr!=null && newArr.length>0){
2243 2243
             for(let i=0;i<newArr.length;i++){
2244 2244
               newArr[i].sort =0
@@ -2417,7 +2417,7 @@ export default {
2417 2417
           newArr.sort(this.compare('created_time'))
2418 2418
         }
2419 2419
 
2420
-        if(this.org_id == 0 || this.org_id == 10579){
2420
+        if(this.org_id == 0 || this.org_id == 10579 || this.org_id ==10587){
2421 2421
           if(newArr!=null && newArr.length>0){
2422 2422
             for(let i=0;i<newArr.length;i++){
2423 2423
               newArr[i].sort =0

+ 1 - 1
src/xt_pages/dialysis/details/indexs.vue Dosyayı Görüntüle

@@ -1419,7 +1419,7 @@ export default {
1419 1419
           newArr.sort(this.compare('created_time'))
1420 1420
         }
1421 1421
 
1422
-        if(this.org_id ==10579 || this.org_id == 0){
1422
+        if(this.org_id ==10579 || this.org_id == 0 || this.org_id ==10587){
1423 1423
           if(newArr!=null && newArr.length>0){
1424 1424
             for(let i=0;i<newArr.length;i++){
1425 1425
               newArr[i].sort =0

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue Dosyayı Görüntüle

@@ -842,7 +842,7 @@
842 842
                         style="width: 100px; text-align: center"
843 843
                       >
844 844
                         <span v-if="org_id == 10290 || org_id == 10318">{{
845
-                          lastafterdialysis.weight_after
845
+                          lastafterdialysis.weight_after?lastafterdialysis.weight_after:"/"
846 846
                         }}</span>
847 847
                         <span v-if="org_id != 10290 && org_id != 10318">{{
848 848
                           predialysis.weight_after_last_transparency

+ 64 - 55
src/xt_pages/outpatientTool/components/detail.vue Dosyayı Görüntüle

@@ -33,7 +33,7 @@
33 33
                       value-format="yyyy-MM-dd"
34 34
                       range-separator="至"
35 35
                       start-placeholder="开始日期"
36
-                      @change="handleDateChangetwo"
36
+                      @change="handleDateChange"
37 37
                       end-placeholder="结束日期">
38 38
               </el-date-picker>
39 39
               <!--<el-radio v-model="radio" label="1">明细</el-radio>-->
@@ -105,7 +105,7 @@ import BreadCrumb from '@/xt_pages/components/bread-crumb'
105 105
 import { GetSummaryDetail } from '@/api/his/his'
106 106
 import { uParseTime } from '@/utils/tools'
107 107
 import axios from 'axios'
108
-
108
+import pako from 'pako';
109 109
 // import NewStatementPrint from './newStatementPrint'
110 110
 const moment = require('moment')
111 111
 export default {
@@ -176,20 +176,22 @@ export default {
176 176
     },
177 177
 
178 178
     handleDateChange(value) {
179
-      let start_time = this.chargeDate[0]
180
-      let end_time = this.chargeDate[1]
181
-      const dateObj1 = new Date(start_time);
182
-      const dateObj2 = new Date(end_time);
183
-
184
-      // 计算两个日期之间的月份差
185
-      const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
186
-        (dateObj2.getMonth() - dateObj1.getMonth());
187
-      if (monthDifference >= 1){
188
-        this.$message.error("时间间隔不能超出一个月")
189
-        return
190
-      }else{
191
-        this.getSummaryDetailListtwo()
192
-      }
179
+      // let start_time = this.chargeDate[0]
180
+      // let end_time = this.chargeDate[1]
181
+      // const dateObj1 = new Date(start_time);
182
+      // const dateObj2 = new Date(end_time);
183
+      //
184
+      // // 计算两个日期之间的月份差
185
+      // const monthDifference = (dateObj2.getFullYear() - dateObj1.getFullYear()) * 12 +
186
+      //   (dateObj2.getMonth() - dateObj1.getMonth());
187
+      // if (monthDifference >= 1){
188
+      //   this.$message.error("时间间隔不能超出一个月")
189
+      //   return
190
+      // }else{
191
+      //   this.getSummaryDetailListtwo()
192
+      // }
193
+      this.getSummaryDetailList()
194
+
193 195
 
194 196
     },
195 197
     Action(){
@@ -276,15 +278,19 @@ export default {
276 278
       const res = new Map()
277 279
       return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
278 280
     },
281
+    uniquepid(arr) {
282
+      const res = new Map()
283
+      return arr.filter((arr) => !res.has(arr.p_id) && res.set(arr.p_id, 1))
284
+    },
279 285
     changeDate() {
280
-      this.getSummaryDetailListtwo()
286
+      this.getSummaryDetailList()
281 287
     },
282 288
     changeItem() {
283
-      this.getSummaryDetailListtwo()
289
+      this.getSummaryDetailList()
284 290
     },
285 291
     searchAction() {
286 292
       this.item_type = '0'
287
-      this.getSummaryDetailListtwo()
293
+      this.getSummaryDetailList()
288 294
 
289 295
     },  getSummaryDetailListtwo() {
290 296
       this.detail_loading = true
@@ -395,32 +401,35 @@ export default {
395 401
           this.$message.error(response.data.msg)
396 402
           return false
397 403
         } else {
404
+
405
+
398 406
           this.detail_loading = false
399 407
 
400 408
           this.tableData = []
401 409
           let tempPatients = []
402 410
           let tempPatientsTwo = []
403
-
404
-          let tempData = response.data.data.patients
405
-          let data = response.data.data.patients
406
-          let orders = this.unique(tempData)
407
-
411
+          //
412
+          let tempData = response.data
413
+          let allData =  response.data
414
+           tempData = this.uniquepid(tempData)
415
+          //
408 416
           let order_infos = []
409
-
410
-          for (let i = 0; i < orders.length; i++) {
417
+          //
418
+          for (let i = 0; i < tempData.length; i++) {
411 419
             let obj = {
412
-              patient_id: orders[i].id,
413
-              name: orders[i].name,
420
+              patient_id: tempData[i].p_id,
421
+              name: tempData[i].p_name,
414 422
               orders: []
415 423
             }
416
-            for (let b = 0; b < data.length; b++) {
417
-              if (orders[i].id == data[b].id) {
418
-                obj.orders = obj.orders.concat(data[b].orders)
424
+            for (let b = 0; b < allData.length; b++) {
425
+              if (tempData[i].p_id == allData[b].p_id) {
426
+                obj.orders = obj.orders.concat(allData[b])
419 427
               }
420 428
             }
421 429
             tempPatients.push(obj)
422 430
           }
423
-
431
+          console.log(tempPatients)
432
+          //
424 433
           for (let i = 0; i < tempPatients.length; i++) {
425 434
             let obj = {
426 435
               patient_id: tempPatients[i].patient_id,
@@ -429,50 +438,49 @@ export default {
429 438
             }
430 439
             let orders = tempPatients[i].orders
431 440
 
432
-            for (let b = 0; b < orders.length; b++) {
433
-              for (let c = 0; c < orders[b].order_info.length; c++) {
441
+            for (let c = 0; c < orders.length; c++) {
434 442
                 let newObj = {}
443
+                newObj['count'] = orders[c].cnt
444
+                newObj['price'] = orders[c].pric
445
+                newObj['item_total'] = orders[c].det_item_fee_sumamt
435 446
 
436
-                newObj['count'] = orders[b].order_info[c].cnt
437
-                newObj['price'] = orders[b].order_info[c].pric
438
-                newObj['item_total'] = orders[b].order_info[c].det_item_fee_sumamt
439
-
440
-                if (orders[b].order_info[c].advice_id > 0 && orders[b].order_info[c].project_id == 0) {
447
+                if (orders[c].advice_id > 0 && orders[c].project_id == 0) {
441 448
                   newObj['type'] = 1
442
-                  newObj['item_name'] = orders[b].order_info[c].advice.advice_name
443
-                  newObj['item_id'] = orders[b].order_info[c].advice.drug_id
449
+                  newObj['item_name'] = orders[c].item_name
450
+                  newObj['item_id'] = orders[c].item_id
444 451
 
445
-                  if (orders[b].order_info[c].advice.drug.min_unit != orders[b].order_info[c].advice.drug.dose_unit) {
446
-                    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
452
+                  if (orders[c].min_unit != orders[c].dose_unit) {
453
+                    newObj['item_spec'] =  orders[c].dose + orders[c].dose_unit + '*' + orders[c].min_number + orders[c].min_unit + '/' + orders[c].max_unit
447 454
                   } else {
448 455
 
449 456
                     newObj['item_spec'] = ''
450 457
                   }
451 458
 
452 459
                 }
453
-                if (orders[b].order_info[c].advice_id == 0 && orders[b].order_info[c].project_id > 0) {
460
+                if (orders[c].advice_id == 0 && orders[c].project_id > 0) {
454 461
                   newObj['type'] = 2
455
-                  newObj['item_id'] = orders[b].order_info[c].project.project_id
462
+                  newObj['item_id'] = orders[c].item_id
456 463
 
457
-                  if (orders[b].order_info[c].project.type == 2) {
464
+                  if (orders[c].p_type == 2) {
458 465
                     newObj['item_spec'] =""
459
-                    newObj['item_name'] = orders[b].order_info[c].project.project.project_name
466
+                    newObj['item_name'] = orders[c].item_name
460 467
 
461 468
 
462
-                  } else if (orders[b].order_info[c].project.type == 3) {
463
-                    newObj['item_spec'] =    orders[b].order_info[c].project.good_info.specification_name
464
-                    newObj['item_name'] = orders[b].order_info[c].project.good_info.good_name
469
+                  } else if (orders[c].p_type == 3) {
470
+                    newObj['item_spec'] =  orders[c].specification_name
471
+                    newObj['item_name'] = orders[c].item_name
465 472
 
466 473
 
467 474
                   }
468 475
                 }
469 476
                 obj.order_info.push(newObj)
470
-                order_infos.push(orders[b].order_info)
477
+                order_infos.push(orders.order_info)
471 478
               }
472
-            }
473 479
             tempPatientsTwo.push(obj)
474 480
           }
481
+          console.log(tempPatientsTwo)
475 482
 
483
+          //
476 484
           for (let d = 0; d < tempPatientsTwo.length; d++) {
477 485
             tempPatientsTwo[d]['new_order_info'] = []
478 486
             let project = []
@@ -533,7 +541,6 @@ export default {
533 541
             }
534 542
 
535 543
           }
536
-
537 544
           for (let i = 0; i < tempPatientsTwo.length; i++) {
538 545
             let total = 0
539 546
             for (let b = 0; b < tempPatientsTwo[i].new_order_info.length; b++) {
@@ -582,9 +589,12 @@ export default {
582 589
                   this.tableData.push(obj)
583 590
 
584 591
 
592
+
593
+
585 594
               }
586 595
             }
587 596
           }
597
+          console.log( this.tableData)
588 598
           this.handleSpanTempArr()
589 599
           // this.tableData = tempPatientsTwo
590 600
 
@@ -609,7 +619,6 @@ export default {
609 619
             }
610 620
           }
611 621
 
612
-
613 622
         }
614 623
 
615 624
 
@@ -810,7 +819,7 @@ export default {
810 819
     }
811 820
   },
812 821
   created() {
813
-    this.getSummaryDetailListtwo()
822
+    this.getSummaryDetailList()
814 823
 
815 824
   }
816 825
 }

+ 66 - 342
src/xt_pages/outpatientTool/components/gather.vue Dosyayı Görüntüle

@@ -14,24 +14,24 @@
14 14
         <el-select size="small" v-model="item_type" placeholder="请选择"
15 15
                    style="width:150px;margin-left:10px;" @change="changeItem">
16 16
           <el-option
17
-              label="全部"
18
-              value="0">
17
+            label="全部"
18
+            value="0">
19 19
           </el-option>
20 20
           <el-option
21
-              v-for="item,index in items"
22
-              :key="index"
23
-              :label="item.name"
24
-              :value="item.id">
21
+            v-for="item,index in items"
22
+            :key="index"
23
+            :label="item.name"
24
+            :value="item.id">
25 25
           </el-option>
26 26
         </el-select>
27 27
         <el-date-picker
28
-            v-model="chargeDate"
29
-            type="daterange"
30
-            value-format="yyyy-MM-dd"
31
-            range-separator="至"
32
-            start-placeholder="开始日期"
33
-            @change="changeDatetwo"
34
-            end-placeholder="结束日期">
28
+          v-model="chargeDate"
29
+          type="daterange"
30
+          value-format="yyyy-MM-dd"
31
+          range-separator="至"
32
+          start-placeholder="开始日期"
33
+          @change="changeDate"
34
+          end-placeholder="结束日期">
35 35
         </el-date-picker>
36 36
         <!--<el-radio v-model="radio" label="1">明细</el-radio>-->
37 37
         <!--<el-radio v-model="radio" label="2">汇总</el-radio>-->
@@ -47,9 +47,6 @@
47 47
 
48 48
         </el-popover> -->
49 49
         <el-button size="small" type="primary" @click="export_detail">报表下载</el-button>
50
-
51
-        <el-button size="small" type="primary" @click="export_detail_Two">报表下载2</el-button>
52
-
53 50
       </div>
54 51
     </div>
55 52
     <el-table :data="tableData" border :row-style="{ color: '#303133' }" ref="tables"
@@ -69,14 +66,14 @@
69 66
       <!--</el-table-column>-->
70 67
 
71 68
       <el-table-column align="center" prop="item_name" label="项目类别">
72
-        <template slot-scope="scope">{{ scope.row.item_name }}</template>
69
+        <template slot-scope="scope">{{scope.row.item_name}}</template>
73 70
       </el-table-column>
74 71
       <el-table-column align="center" prop="price" label="费用">
75
-        <template slot-scope="scope">{{ scope.row.price.toFixed(2) }}</template>
72
+        <template slot-scope="scope">{{scope.row.price.toFixed(2)}}</template>
76 73
       </el-table-column>
77 74
       <el-table-column align="center" prop="sum" label="费用总额">
78 75
         <template slot-scope="scope">
79
-          <div>{{ scope.row.sum.toFixed(2) }}</div>
76
+          <div>{{scope.row.sum.toFixed(2)}}</div>
80 77
         </template>
81 78
       </el-table-column>
82 79
 
@@ -87,9 +84,8 @@
87 84
 
88 85
 <script>
89 86
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
90
-import {getExportChargeData, GetSummaryDetail} from '@/api/his/his'
91
-import {uParseTime} from "@/utils/tools";
92
-
87
+import { GetSummaryDetail } from '@/api/his/his'
88
+import { uParseTime } from '@/utils/tools'
93 89
 // import NewStatementPrint from './newStatementPrint'
94 90
 const moment = require('moment')
95 91
 export default {
@@ -99,20 +95,20 @@ export default {
99 95
   },
100 96
   data() {
101 97
     return {
102
-      gather_loading: false,
98
+      gather_loading:false,
103 99
       crumbs: [],
104 100
       tempArr: [],
105 101
       sameRowArr: [],
106 102
       keywords: '',
107
-      pos: 0,
103
+      pos:0,
108 104
 
109 105
       tableData: [],
110 106
       chargeDate: [moment(new Date()).add('year', 0).format('YYYY-MM-DD'), moment(new Date()).add('year', 0).format('YYYY-MM-DD')],
111 107
       item_type: '0',
112 108
       items: [
113
-        {id: 1, name: '药品'},
114
-        {id: 2, name: '项目'},
115
-        {id: 3, name: '耗材'},
109
+        { id: 1, name: '药品' },
110
+        { id: 2, name: '项目' },
111
+        { id: 3, name: '耗材' },
116 112
 
117 113
       ]
118 114
 
@@ -120,7 +116,7 @@ export default {
120 116
   },
121 117
   methods: {
122 118
 
123
-    objectSpanMethod({row, column, rowIndex, columnIndex}) {
119
+    objectSpanMethod({ row, column, rowIndex, columnIndex }) {
124 120
       if (columnIndex === 0) {
125 121
         if (rowIndex % 2 === 0) {
126 122
           return {
@@ -139,125 +135,19 @@ export default {
139 135
       const res = new Map()
140 136
       return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
141 137
     },
142
-    uniqueTwo(arr) {
143
-      const res = new Map()
144
-      return arr.filter((arr) => !res.has(arr) && res.set(arr, 1))
145
-    },  changeDatetwo() {
146
-      // console.log(this.chargeDate)
147
-      this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
148
-        confirmButtonText: '确 定',
149
-        cancelButtonText: '取 消',
150
-        type: 'warning'
151
-      }).then(() => {
152
-
153
-
154
-      }).catch(() => {
155
-      })
156
-    },
157 138
     changeDate() {
158 139
       // console.log(this.chargeDate)
159
-      this.getSummaryDetailListtwo()
140
+      this.getSummaryDetailList()
160 141
     },
161 142
     changeItem() {
162
-      this.getSummaryDetailListtwo()
143
+      this.getSummaryDetailList()
144
+    }, uniquepid(arr) {
145
+      const res = new Map()
146
+      return arr.filter((arr) => !res.has(arr.p_id) && res.set(arr.p_id, 1))
163 147
     },
164 148
     searchAction() {
165 149
       this.item_type = '0'
166
-      this.getSummaryDetailListtwo()
167
-    },getSummaryDetailListtwo() {
168
-      this.gather_loading = true
169
-      let start_time = this.chargeDate[0]
170
-      let end_time = this.chargeDate[1]
171
-      let params = {
172
-        start_time: start_time,
173
-        end_time: end_time,
174
-        type: this.item_type,
175
-        keyword: this.keywords
176
-      }
177
-      GetSummaryDetail(params).then(response => {
178
-        if (response.data.state == 0) {
179
-          this.gather_loading = false
180
-
181
-          this.$message.error(response.data.msg)
182
-          return false
183
-        } else {
184
-          this.gather_loading = false
185
-
186
-          this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
187
-            confirmButtonText: '确 定',
188
-            cancelButtonText: '取 消',
189
-            type: 'warning'
190
-          }).then(() => {
191
-
192
-
193
-          }).catch(() => {
194
-          })
195
-
196
-
197
-
198
-
199
-          // this.tableData = tempPatientsTwo
200
-
201
-          // console.log(tempPatientsTwo.length)
202
-          //
203
-
204
-        }
205
-        //
206
-        // console.log('去重前')
207
-        // console.log(advice)
208
-        // console.log(project)
209
-        // //
210
-        // //
211
-
212
-        // //
213
-        // console.log('去重后')
214
-        //
215
-        // console.log(advice.length)
216
-        // console.log(project.length)
217
-        //
218
-        // for (let i = 0; i < project.length; i++) {
219
-        //   let obj = {}
220
-        //   let count = 0
221
-        //   for (let a = 0; a < tempPatientsTwo.length; a++) {
222
-        //     if (project[i].patient_id == tempPatientsTwo[a].patient_id && project[i].item_id == tempPatientsTwo[a].item_id && project[i].price == tempPatientsTwo[a].price) {
223
-        //       count = count + tempPatientsTwo[a].count
224
-        //       obj['count'] = count
225
-        //
226
-        //     }
227
-        //     obj['price'] = project[i].price
228
-        //     obj['type'] = project[i].type
229
-        //     obj['item_name'] = project[i].item_name
230
-        //     obj['item_id'] = project[i].item_id
231
-        //     obj['name'] = project[i].name
232
-        //     obj['patient_id'] = project[i].patient_id
233
-        //     obj['count'] = count
234
-        //     this.tableData.push(obj)
235
-        //   }
236
-        // }
237
-        //
238
-        //
239
-        // for (let i = 0; i < advice.length; i++) {
240
-        //   let obj = {}
241
-        //   let count = 0
242
-        //   for (let a = 0; a < tempPatientsTwo.length; a++) {
243
-        //     if (advice[i].patient_id == tempPatientsTwo[a].patient_id && advice[i].item_id == tempPatientsTwo[a].item_id && advice[i].price == tempPatientsTwo[a].price) {
244
-        //       count = count + tempPatientsTwo[a].count
245
-        //       obj['count'] = count
246
-        //
247
-        //     }
248
-        //     obj['price'] = advice[i].price
249
-        //     obj['type'] = advice[i].type
250
-        //     obj['item_name'] = advice[i].item_name
251
-        //     obj['item_id'] = advice[i].item_id
252
-        //     obj['name'] = advice[i].name
253
-        //     obj['patient_id'] = advice[i].patient_id
254
-        //     this.tableData.push(obj)
255
-        //   }
256
-        // }
257
-        // console.log(this.tableData.length)
258
-        // this.tableData = this.sort(this.tableData)
259
-
260
-      })
150
+      this.getSummaryDetailList()
261 151
     },
262 152
     getSummaryDetailList() {
263 153
       this.gather_loading = true
@@ -276,39 +166,30 @@ export default {
276 166
           this.$message.error(response.data.msg)
277 167
           return false
278 168
         } else {
279
-
280
-          this.$confirm('提示', '接口优化升级,如有数据需要,请联系客服!', {
281
-            confirmButtonText: '确 定',
282
-            cancelButtonText: '取 消',
283
-            type: 'warning'
284
-          }).then(() => {
285
-
286
-
287
-          }).catch(() => {
288
-          })
289
-
290
-
291 169
           this.gather_loading = false
292 170
 
293 171
           let tempPatients = []
294 172
           let tempPatientsTwo = []
295 173
           this.tableData = []
296
-          let tempData = response.data.data.patients
297
-          let data = response.data.data.patients
298
-          let orders = this.unique(tempData)
174
+          let tempData = response.data
175
+          let data = response.data
176
+          let orders = this.uniquepid(tempData)
177
+          console.log(orders)
178
+
299 179
           for (let i = 0; i < orders.length; i++) {
300 180
             let obj = {
301
-              patient_id: orders[i].id,
302
-              name: orders[i].name,
181
+              patient_id: orders[i].p_id,
182
+              name: orders[i].p_name,
303 183
               orders: []
304 184
             }
305 185
             for (let b = 0; b < data.length; b++) {
306
-              if (orders[i].id == data[b].id) {
307
-                obj.orders = obj.orders.concat(data[b].orders)
186
+              if (orders[i].p_id == data[b].p_id) {
187
+                obj.orders = obj.orders.concat(data[b])
308 188
               }
309 189
             }
310 190
             tempPatients.push(obj)
311 191
           }
192
+          console.log(tempPatients)
312 193
 
313 194
           for (let i = 0; i < tempPatients.length; i++) {
314 195
             let obj = {
@@ -317,31 +198,29 @@ export default {
317 198
               order_info: []
318 199
             }
319 200
             let orders = tempPatients[i].orders
320
-            for (let b = 0; b < orders.length; b++) {
321
-              for (let c = 0; c < orders[b].order_info.length; c++) {
201
+              for (let c = 0; c < orders.length; c++) {
322 202
                 let newObj = {}
323 203
 
324
-                newObj['count'] = orders[b].order_info[c].cnt
325
-                newObj['price'] = orders[b].order_info[c].pric
326
-                if (orders[b].order_info[c].advice_id > 0 && orders[b].order_info[c].project_id == 0) {
204
+                newObj['count'] = orders[c].cnt
205
+                newObj['price'] = orders[c].pric
206
+                if (orders[c].advice_id > 0 && orders[c].project_id == 0) {
327 207
                   newObj['type'] = 1
328
-                  newObj['item_name'] = orders[b].order_info[c].advice.advice_name
329
-                  newObj['item_id'] = orders[b].order_info[c].advice.drug_id
208
+                  newObj['item_name'] = orders[c].item_name
209
+                  newObj['item_id'] = orders[c].item_id
330 210
 
331 211
                 }
332
-                if (orders[b].order_info[c].advice_id == 0 && orders[b].order_info[c].project_id > 0) {
333
-                  newObj['item_id'] = orders[b].order_info[c].project.project_id
334
-                  if (orders[b].order_info[c].project.type == 2) {
212
+                if (orders[c].advice_id == 0 && orders[c].project_id > 0) {
213
+                  newObj['item_id'] = orders[c].item_id
214
+                  if (orders[c].p_type == 2) {
335 215
                     newObj['type'] = 2
336
-                    newObj['item_name'] = orders[b].order_info[c].project.project.project_name
337
-                  } else if (orders[b].order_info[c].project.type == 3) {
216
+                    newObj['item_name'] = orders[c].item_name
217
+                  } else if (orders[c].p_type == 3) {
338 218
                     newObj['type'] = 3
339
-                    newObj['item_name'] = orders[b].order_info[c].project.good_info.good_name
219
+                    newObj['item_name'] = orders[c].item_name
340 220
                   }
341 221
                 }
342 222
                 obj.order_info.push(newObj)
343 223
               }
344
-            }
345 224
             tempPatientsTwo.push(obj)
346 225
           }
347 226
           console.log(tempPatientsTwo)
@@ -377,10 +256,12 @@ export default {
377 256
               }
378 257
             }
379 258
 
259
+
380 260
             for (let i = 0; i < advice.length; i++) {
381 261
               price2 = parseFloat(price2.toString()) + parseFloat((parseFloat(advice[i].count.toString()) * parseFloat(advice[i].price.toString()).toFixed(2)).toString())
382 262
             }
383 263
 
264
+
384 265
             switch (parseInt(this.item_type)) {
385 266
               case 0:
386 267
 
@@ -433,6 +314,8 @@ export default {
433 314
 
434 315
             }
435 316
 
317
+
318
+
436 319
           }
437 320
 
438 321
           this.handleSpanTempArr()
@@ -559,7 +442,7 @@ export default {
559 442
         }
560 443
       })
561 444
       this.sameRowArr = sameRowArr
562
-    }, merge({row, column, rowIndex, columnIndex}) {
445
+    }, merge({ row, column, rowIndex, columnIndex }) {
563 446
       if (columnIndex === 0 || columnIndex === 3) {
564 447
         const _row = this.tempArr[rowIndex]
565 448
         const _col = _row > 0 ? 1 : 0
@@ -569,7 +452,7 @@ export default {
569 452
         }
570 453
       }
571 454
     }, getTotal(param) {
572
-      const {columns, data} = param
455
+      const { columns, data } = param
573 456
       const sums = []
574 457
       columns.forEach((column, index) => {
575 458
         if (index === 0) {
@@ -594,106 +477,7 @@ export default {
594 477
       })
595 478
 
596 479
       return sums
597
-    }, export_detail_Two() {
598
-      let start_time = this.chargeDate[0]
599
-      let end_time = this.chargeDate[1]
600
-      let params = {
601
-        start_time: start_time,
602
-        end_time: end_time,
603
-      }
604
-      getExportChargeData(params).then(response => {
605
-        if (response.data.state == 0) {
606
-          this.$message.error(response.data.msg)
607
-          return false
608
-        } else {
609
-          let list = []
610
-          let tempData = response.data.data.patients
611
-          for (let i = 0; i < tempData.length; i++) {
612
-           let data =  this.handleData(tempData[i].order_info)
613
-            for (let b = 0; b < data.length; b++) {
614
-              let obj = {
615
-                remark: "",
616
-                name:tempData[i].patient.name,
617
-                id_card_no:tempData[i].patient.id_card_no,
618
-                item_name: data[b].name,
619
-                price: data[b].price,
620
-              }
621
-              if (b == 0) {
622
-                obj.remark = "就诊日期:"+this.getTimes(tempData[i].settle_accounts_date) +" 医保报销:"+tempData[i].fund_pay_sumamt + " 现金:"+tempData[i].psn_cash_pay
623
-              } else {
624
-                obj.remark = ""
625
-              }
626
-              list.push(obj)
627
-            }
628
-          }
629
-          console.log(list)
630
-
631
-          var  tarList = []
632
-          for (let i = 0; i < list.length; i++) {
633
-            if(list[i].price > 0) {
634
-              let obj = {
635
-                "姓名": list[i].name,
636
-                "身份证号": list[i].id_card_no,
637
-                "收费项目": list[i].item_name,
638
-                "金额": list[i].price,
639
-                "备注": list[i].remark,
640
-              }
641
-              tarList.push(obj)
642
-            }
643
-          }
644
-
645
-          import("@/vendor/Export2Excel").then((excel) => {
646
-            const tHeader = [
647
-              "姓名",
648
-              "身份证号",
649
-              "收费项目",
650
-              "金额",
651
-              "备注",
652
-
653
-            ];
654
-            const filterVal = [
655
-              "姓名",
656
-              "身份证号",
657
-              "收费项目",
658
-              "金额",
659
-              "备注",
660
-            ];
661
-            const data = this.formatJson(filterVal, tarList);
662
-            excel.export_json_to_excel({
663
-              header: tHeader,
664
-              data,
665
-              filename: "消费明细",
666
-            });
667
-          });
668
-
669
-        }
670
-      })
671
-    }, getTimes(time) {
672
-      return uParseTime(time, "{y}-{m}-{d}");
673
-    }, handleData(order_info) {
674
-     let data = []
675
-     let med_chrgitm_types = []
676
-      for (let i = 0; i < order_info.length; i++) {
677
-        med_chrgitm_types.push(order_info[i].med_chrgitm_type)
678
-      }
679
-      med_chrgitm_types = this.uniqueTwo(med_chrgitm_types)
680
-
681
-      for (let i = 0; i < med_chrgitm_types.length; i++) {
682
-        let obj = {}
683
-        let price = 0
684
-        for (let a = 0; a < order_info.length; a++) {
685
-          if (med_chrgitm_types[i] == order_info[a].med_chrgitm_type) {
686
-            price = price + order_info[a].det_item_fee_sumamt
687
-          }
688
-        }
689
-        obj['price'] = price
690
-        obj['name'] = this.getType(med_chrgitm_types[i])
691
-        data.push(obj)
692
-      }
693
-      return data
694
-    },
695
-
696
-    export_detail() {
480
+    }, export_detail() {
697 481
 
698 482
       let list = []
699 483
       for (let i = 0; i < this.tableData.length; i++) {
@@ -703,93 +487,33 @@ export default {
703 487
         let pay_sumamt = order.price.toFixed(2)
704 488
         let total = order.sum.toFixed(2)
705 489
 
490
+
706 491
         let obj = {
707 492
           '患者姓名': name,
708 493
           '项目类别': item_name,
709 494
           '费用': pay_sumamt,
710
-          '费用总额': total,
495
+          '费用总额':total,
711 496
         }
712 497
         list.push(obj)
713 498
       }
714 499
       import('@/vendor/Export2Excel').then(excel => {
715
-        const tHeader = ['患者姓名', '项目名称', '费用', '费用总额']
716
-        const filterVal = ['患者姓名', '项目名称', '费用', '费用总额']
500
+        const tHeader = [ '患者姓名', '项目名称', '费用', '费用总额']
501
+        const filterVal = [ '患者姓名', '项目名称', '费用', '费用总额']
717 502
         const data = this.formatJson(filterVal, list)
718 503
         excel.export_json_to_excel1({
719 504
           header: tHeader,
720 505
           data,
721 506
           filename: '汇总',
722
-          ref: this.$refs['tables'].$el
507
+          ref:this.$refs['tables'].$el
723 508
         })
724 509
       })
725 510
 
726 511
     }, formatJson(filterVal, jsonData) {
727 512
       return jsonData.map(v => filterVal.map(j => v[j]))
728
-    },      getType(med_chrgitm_type) {
729
-      switch (med_chrgitm_type) {
730
-        case '01':
731
-          return '床位费'
732
-          break
733
-        case '02':
734
-          return '诊察费'
735
-
736
-          break
737
-        case '03':
738
-          return '检查费'
739
-
740
-          break
741
-        case '04':
742
-          return '化验费'
743
-          break
744
-        case '05':
745
-          return '治疗费'
746
-
747
-          break
748
-        case '06':
749
-          return '手术费'
750
-
751
-          break
752
-        case '07':
753
-          return '护理费'
754
-
755
-          break
756
-        case '08':
757
-          return '材料费'
758
-
759
-          break
760
-        case '09':
761
-          return '西药费'
762
-
763
-          break
764
-        case '10':
765
-          return '中药饮片费'
766
-
767
-          break
768
-        case '11':
769
-          return '中成药费'
770
-
771
-          break
772
-        case '12':
773
-          return '一般诊疗费'
774
-
775
-          break
776
-        case '13':
777
-          return '挂号费'
778
-          break
779
-        case '14':
780
-          return '其他费'
781
-          break
782
-        case '0':
783
-          return '其他费'
784
-          break
785
-
786
-      }
787
-
788
-    },
789
-
513
+    }
790 514
   },
791 515
   created() {
792
-    this.getSummaryDetailListtwo()
516
+    this.getSummaryDetailList()
793 517
 
794 518
   }
795 519
 }

+ 2 - 2
src/xt_pages/role/admin.vue Dosyayı Görüntüle

@@ -25,12 +25,12 @@
25 25
         >医药师登记</el-button>
26 26
 
27 27
 
28
-        <!-- <el-button
28
+        <el-button
29 29
           type="primary"
30 30
           size="small"
31 31
           icon="el-icon-circle-plus-outline"
32 32
           style="float:left"
33
-          @click="toJiaBan">加班</el-button> -->
33
+          @click="toJiaBan">加班</el-button>
34 34
        
35 35
 
36 36
          <!-- <el-button

+ 7 - 5
src/xt_pages/user/components/PatientDetail.vue Dosyayı Görüntüle

@@ -282,6 +282,12 @@
282 282
               </el-form-item>
283 283
              </el-col>
284 284
 
285
+             <el-col :span="8">
286
+                <el-form-item label="工作单位 : " prop="work">
287
+                  <el-input v-model="form.work" disabled></el-input>
288
+                </el-form-item>
289
+              </el-col>
290
+
285 291
              <el-col :span="24">
286 292
               <el-form-item label="病历号 : " prop="record_number">
287 293
                 <el-input
@@ -750,11 +756,7 @@
750 756
                   </el-select>
751 757
                 </el-form-item>
752 758
               </el-col>
753
-              <el-col :span="8">
754
-                <el-form-item label="工作单位 : " prop="work">
755
-                  <el-input v-model="form.work" disabled></el-input>
756
-                </el-form-item>
757
-              </el-col>
759
+          
758 760
               <el-col :span="8">
759 761
                 <el-form-item label="单位地址 : " prop="unit_address">
760 762
                   <el-input v-model="form.unit_address" disabled></el-input>

+ 9 - 5
src/xt_pages/user/components/PatientForm.vue Dosyayı Görüntüle

@@ -333,6 +333,13 @@
333 333
                 </el-checkbox-group>
334 334
               </el-form-item>
335 335
             </el-col>
336
+
337
+            <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
338
+                <el-form-item label="工作单位 : " prop="work">
339
+                  <el-input v-model="form.work"></el-input>
340
+                </el-form-item>
341
+            </el-col>
342
+
336 343
             
337 344
             <el-col :span="24">
338 345
               <el-form-item label="病历号 : " prop="record_number">
@@ -343,6 +350,7 @@
343 350
               </el-form-item>
344 351
              </el-col>
345 352
 
353
+            
346 354
              <el-col :span="24">
347 355
               <el-form-item label="主管护士 : " prop="record_number">
348 356
                 <el-select v-model="form.nurse" style="width:200px">
@@ -791,11 +799,7 @@
791 799
                     </el-select>
792 800
                   </el-form-item>
793 801
                 </el-col>
794
-                <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
795
-                  <el-form-item label="工作单位 : " prop="work">
796
-                    <el-input v-model="form.work"></el-input>
797
-                  </el-form-item>
798
-                </el-col>
802
+                
799 803
                 <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
800 804
                   <el-form-item label="单位地址 : " prop="unit_address">
801 805
                     <el-input v-model="form.unit_address"></el-input>

+ 66 - 3
src/xt_pages/user/patients.vue Dosyayı Görüntüle

@@ -352,6 +352,7 @@
352 352
       
353 353
   
354 354
         <el-button type="primary" size="small" style="float:right" @click="toExport">导出</el-button>
355
+        <el-button type="primary" size="small" style="float:right" @click="toExportOne">导出2</el-button>
355 356
       </div>
356 357
       <div  class="cell clearfix">
357 358
 
@@ -740,7 +741,7 @@
740 741
 
741 742
 <script>
742 743
   import { fetchAllAdminUsers } from "@/api/doctor";
743
-  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic } from '@/api/patient'
744
+  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic,getExportList } from '@/api/patient'
744 745
   import { generateLog } from '@/api/config'
745 746
   import QRCode from 'qrcodejs2'
746 747
   import Vue from 'vue'
@@ -922,7 +923,9 @@
922 923
           patient_end_time:"",
923 924
           nurse:"0"
924 925
         },
925
-        adminUserOptions:[]
926
+        adminUserOptions:[],
927
+        scheduleList:[],
928
+        patientsList:[]
926 929
       }
927 930
     },
928 931
     created() {
@@ -942,9 +945,18 @@
942 945
       //获取
943 946
       this.GetRemindPatientList()
944 947
       this.fetchAllAdminUsers();
948
+      this.getExportList()
945 949
     },
946 950
 
947 951
     methods: {
952
+      getExportList(){
953
+        getExportList(this.listQuery).then(response=>{
954
+           if(response.data.state ==1){
955
+             this.scheduleList =  response.data.data.schedule
956
+             this.patientsList = response.data.data.patientsList
957
+           }
958
+        })
959
+      },
948 960
       fetchAllAdminUsers() {
949 961
         fetchAllAdminUsers().then((response) => {
950 962
           if (response.data.state === 1) {
@@ -1513,26 +1525,31 @@
1513 1525
         this.schedulType = scheduleType
1514 1526
         this.listQuery.schedul_type = scheduleType
1515 1527
         this.getList()
1528
+        this.getExportList()
1516 1529
       },
1517 1530
       selectSystemType(systemType) {
1518 1531
         this.systemType = systemType
1519 1532
         this.listQuery.binding_state = systemType
1520 1533
         this.getList()
1534
+        this.getExportList()
1521 1535
       },
1522 1536
       selectLapseTo(lapseto) {
1523 1537
         this.lapsetoType = lapseto
1524 1538
         this.listQuery.lapseto = lapseto
1525 1539
         this.getList()
1540
+        this.getExportList()
1526 1541
       },
1527 1542
       selectSource(source) {
1528 1543
         this.sourceType = source
1529 1544
         this.listQuery.source = source
1530 1545
         this.getList()
1546
+        this.getExportList()
1531 1547
       },
1532 1548
       selectPatientSource(source){
1533 1549
         this.patientSoureType = source
1534 1550
         this.listQuery.patientSoureType = source
1535 1551
         this.getList()
1552
+        this.getExportList()
1536 1553
       },
1537 1554
       changeTimeOne(val) {
1538 1555
         var time = this.getTimestamp(val) - this.end_time
@@ -1541,6 +1558,7 @@
1541 1558
           this.listQuery.start_time = ''
1542 1559
         } else {
1543 1560
           this.getList()
1561
+          this.getExportList()
1544 1562
           this.startTime = this.getTimestamp(val)
1545 1563
         }
1546 1564
       },
@@ -1551,6 +1569,7 @@
1551 1569
           this.listQuery.end_time = ''
1552 1570
         } else {
1553 1571
           this.getList()
1572
+          this.getExportList()
1554 1573
           this.end_time = this.getTimestamp(val)
1555 1574
         }
1556 1575
       },
@@ -1580,7 +1599,7 @@
1580 1599
             console.log("wowowowo",this.tableData)
1581 1600
             this.pageTotal = this.tableData.length
1582 1601
             this.total = response.data.data.total
1583
-
1602
+          
1584 1603
           }
1585 1604
         })
1586 1605
       },
@@ -1800,6 +1819,31 @@
1800 1819
     formatJson(filterVal, jsonData) {
1801 1820
       return jsonData.map(v => filterVal.map(j => v[j]));
1802 1821
     },
1822
+
1823
+    toExportOne(){
1824
+      import('@/vendor/Export2Excel').then(excel => {
1825
+
1826
+        console.log("hhhh323223",this.scheduleList)
1827
+        for(let i=0;i<this.scheduleList.length;i++){
1828
+          this.scheduleList[i].name = ""
1829
+          this.scheduleList[i].wort_unit = ""
1830
+            this.scheduleList[i].name = this.GetPatientName(this.scheduleList[i].patient_id)
1831
+            this.scheduleList[i].wort_unit = this.GetPatientWorkUnit(this.scheduleList[i].patient_id)
1832
+        }
1833
+
1834
+        const tHeader = ['姓名', '工作单位']
1835
+        const filterVal = ['name', 'wort_unit']
1836
+        console.log("table",this.scheduleList)
1837
+
1838
+        const data = this.formatJson(filterVal, this.scheduleList)
1839
+        excel.export_json_to_excel({
1840
+          header: tHeader,
1841
+          data,
1842
+          filename: '今日透析记录'
1843
+        })
1844
+        this.downloadLoading = false
1845
+     })
1846
+    },
1803 1847
     tranAge(val) {
1804 1848
       if(val.birthday){
1805 1849
         var birth = uParseTime(val.birthday, '{y}-{m}-{d}');
@@ -1814,6 +1858,25 @@
1814 1858
           this.patientAllgicList = list
1815 1859
         }
1816 1860
       })
1861
+    },
1862
+    GetPatientName(id){
1863
+       var name = ""
1864
+       for(let i=0;i<this.patientsList.length;i++){
1865
+          if(id == this.patientsList[i].id){
1866
+             name = this.patientsList[i].name
1867
+          }
1868
+       }
1869
+       return name
1870
+    },
1871
+    GetPatientWorkUnit(id){
1872
+      console.log("HHAHAHAH",this.patientsList)
1873
+      var work_unit =""
1874
+      for(let i=0;i<this.patientsList.length;i++){
1875
+          if(id == this.patientsList[i].id){
1876
+            work_unit = this.patientsList[i].work_unit
1877
+          }
1878
+       }
1879
+       return work_unit
1817 1880
     }
1818 1881
     }
1819 1882
   }

+ 22 - 1
src/xt_pages/workforce/appointment.vue Dosyayı Görüntüle

@@ -68,6 +68,7 @@
68 68
       <div style="display:flex;align-items:center">
69 69
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleAction" v-if="activeName !='historyWeek'">打印排班</el-button>
70 70
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionOne" v-if="activeName == 'historyWeek'">打印排班</el-button>
71
+        <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionTwo">治疗签到</el-button>
71 72
         <!-- <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' v-if="is_edit"></schedule-upload-excel> -->
72 73
         <!-- <el-button @click="printTable" type="primary" size="small">打印排班</el-button> -->
73 74
         <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
@@ -123,7 +124,7 @@
123 124
         <table-data ref="tableData"  :week-time="activeName" :partitions-prop="partitions"
124 125
                     :schedule-zone-row-prop="scheduleZoneRow"
125 126
                     :schedule-zone-prop="scheduleZone" title="" @event1="changePartition"
126
-                    @event2="changeSchedule"  @event3="changeWeekDay" v-show="showtableOne">
127
+                    @event2="changeSchedule"  @event3="changeWeekDay" @event6="changeScheduleType" v-show="showtableOne">
127 128
         </table-data>
128 129
       </div>
129 130
       <!-- 编辑 -->
@@ -369,6 +370,7 @@ export default {
369 370
       newDay: [],
370 371
       templateObj: {},
371 372
       week_date:""
373
+      
372 374
     }
373 375
   },
374 376
   components: {
@@ -971,6 +973,7 @@ export default {
971 973
       console.log("whhwhwhwhwhwh",date)
972 974
       console.log("this.templateObj.template_id == 1",this.templateObj.template_id)
973 975
       console.log("week2333333333333333",this.week_date)
976
+      console.log("woowowowow",this.schedule_type)
974 977
       if (this.templateObj.template_id == 1) {
975 978
         this.$router.push({path: '/workforce/schedule/print', query: {date: date}})
976 979
       }
@@ -1003,6 +1006,20 @@ export default {
1003 1006
 
1004 1007
       this.$router.push({path:'/scheduleTablePrintThree?partition_id='+partition_id+"&weekTime="+nextTwoWeek+"&week_date="+week_date+"&start_time="+start_time+"&end_time="+end_time})
1005 1008
     },
1009
+    printScheduleActionTwo:function(){
1010
+      var date = new Date().getTime()
1011
+      if(this.activeName == 'historyWeek'){
1012
+        date = date - 14 * 24 * 60 * 60 * 1000
1013
+      }else if (this.activeName == 'lastWeek') {
1014
+        date = date - 7 * 24 * 60 * 60 * 1000
1015
+      } else if (this.activeName == 'nextWeek') {
1016
+        date = date + 7 * 24 * 60 * 60 * 1000
1017
+      } else if (this.activeName == 'nextTwoWeek') {
1018
+        date = date + 14 * 24 * 60 * 60 * 1000
1019
+      }
1020
+       this.$router.push({path: '/scheduleTablePrintSix?partition_id=' + this.partition_id + "&weekTime=" + this.activeName+"&week_date="+this.week_date+"&schedule_type="+this.schedule_type})
1021
+      
1022
+    },
1006 1023
     isShow() {
1007 1024
       let isShow = false
1008 1025
       if (Object.keys(this.partitions).length != 0) {
@@ -2984,6 +3001,10 @@ export default {
2984 3001
       this.week_date = str
2985 3002
     },
2986 3003
 
3004
+    changeScheduleType(val){
3005
+      this.schedule_type = val
3006
+    },
3007
+
2987 3008
     changeWeek(val) {
2988 3009
       this.start_time = ""
2989 3010
       this.end_time = ""

+ 5 - 1
src/xt_pages/workforce/components/tableData.vue Dosyayı Görüntüle

@@ -920,7 +920,8 @@ export default {
920 920
       isShowXiaWu:true,
921 921
       isShowWanShang:true,
922 922
       schedulesGroup:[],
923
-      count_num:null
923
+      count_num:null,
924
+      schedule_type:0
924 925
     };
925 926
   },
926 927
 
@@ -1084,6 +1085,9 @@ export default {
1084 1085
         this.isShowXiaWu = true
1085 1086
         this.isShowWanShang = true
1086 1087
       }
1088
+      this.schedule_type =val
1089
+      this.$emit('event6', val)
1090
+
1087 1091
     },
1088 1092
     switchThis(flag){
1089 1093
       if(this.value1==false){