Browse Source

批量打印

XMLWAN 4 years ago
parent
commit
eb2d332919

+ 2 - 2
src/xt_pages/dialysis/details/dialog/adviceDialog/EditGroupAdvice.vue View File

@@ -394,7 +394,7 @@
394 394
                 v-model="nameForm.advice_name"
395 395
                 :fetch-suggestions="querySearch"
396 396
                 placeholder="请输入内容"
397
-                @select="handleSelect"
397
+              
398 398
                 @input="changeDrugName"
399 399
               ></el-autocomplete>
400 400
             </el-form-item>
@@ -431,7 +431,7 @@
431 431
                   v-model="nameForm.advice_desc"
432 432
                   :fetch-suggestions="querySearch1"
433 433
                   placeholder="请输入内容"
434
-                  @select="handleSelect1"
434
+                 
435 435
                   @input="changeDrugDesc"
436 436
                 ></el-autocomplete>
437 437
               </el-col>

+ 2 - 0
src/xt_pages/dialysis/details/index.vue View File

@@ -969,6 +969,7 @@ export default {
969 969
 
970 970
       this.doctor_advices = []
971 971
       getDialysisScheduleDetail(this.patient_id, dateStr).then(rs => {
972
+        
972 973
         var resp = rs.data
973 974
         if (resp.state == 1) {
974 975
           var patient = resp.data.patient // 患者信息
@@ -1118,6 +1119,7 @@ export default {
1118 1119
           this.device_numbers = resp.data.device_numbers
1119 1120
 
1120 1121
           var his_doctor_advices = resp.data.his_advices
1122
+          
1121 1123
           this.his_is_open = resp.data.is_open_config.is_open
1122 1124
           console.log(this.his_is_open)
1123 1125
 

+ 188 - 16
src/xt_pages/dialysis/dialysisDoctorAdvice.vue View File

@@ -70,7 +70,8 @@
70 70
         :row-class-name="tableRowClassName"
71 71
         :span-method="objectSpanMethod"
72 72
         :cell-class-name="adviceNameShow"
73
-        :modal-append-to-body="false">
73
+        :modal-append-to-body="false"
74
+        v-show="show">
74 75
         <el-table-column type="selection" width="55" align="center"></el-table-column>
75 76
         <el-table-column prop="date" label="姓名" align="center" min-width="26px">
76 77
           <template slot-scope="scope">
@@ -184,24 +185,127 @@
184 185
             <span v-else></span>
185 186
           </template>
186 187
         </el-table-column>
187
-        
188
+      </el-table>
189
+         <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" 
190
+        @selection-change="handleSelectionChange"
191
+        :row-class-name="tableRowClassName"
192
+        :span-method="objectSpanMethod"
193
+        :cell-class-name="adviceNameShow"
194
+        :modal-append-to-body="false"
195
+        v-show="showOne">
196
+        <el-table-column type="selection" width="55" align="center"></el-table-column>
197
+        <el-table-column prop="date" label="姓名" align="center" min-width="26px">
198
+          <template slot-scope="scope">
199
+            <span>{{ scope.row.name }}</span>
200
+            <br>
201
+            ({{ scope.row.parent_id == 0 ? scope.row.dialysis_no : ""}})
202
+            <br>
203
+            <span v-if="scope.row.mode_id == 1">(HD)</span>
204
+            <span v-if="scope.row.mode_id == 2">(HDF)</span>
205
+            <span v-if="scope.row.mode_id == 3">(HD+HP)</span>
206
+            <span v-if="scope.row.mode_id == 4">(HP)</span>
207
+            <span v-if="scope.row.mode_id == 5">(HF)</span>
208
+            <span v-if="scope.row.mode_id == 6">(SCUF)</span>
209
+            <span v-if="scope.row.mode_id == 7">(IUF)</span>
210
+            <span v-if="scope.row.mode_id == 8">(HFHD)</span>
211
+            <span v-if="scope.row.mode_id == 9">(HFHD+HP)</span>
212
+            <span v-if="scope.row.mode_id == 10">(PHF)</span>
213
+            <span v-if="scope.row.mode_id == 11">(HFR)</span>
214
+            <span v-if="scope.row.mode_id == 12">(HDF+HP)</span>
215
+            <span v-if="scope.row.mode_id == 13">(CRRT)</span>
216
+            <span v-if="scope.row.mode_id == 14">(腹水回输)</span>
217
+          </template>
218
+        </el-table-column>
219
+        <el-table-column prop="date" label="透析器" align="center" min-width="26px">
220
+          <template slot-scope="scope">
221
+            <span>{{ scope.row.dialyzer_perfusion_apparatus }}</span>
222
+          </template>
223
+        </el-table-column>
224
+        <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
225
+          <template slot-scope="scope">
226
+            <span>
227
+              {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
228
+            </span>
229
+          </template>
230
+        </el-table-column>
231
+        <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
232
+          <template slot-scope="scope">
233
+            <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
234
+              <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
235
+                {{ getAdviceContent(scope.row, 1)}}
236
+              </span>
237
+            </el-dropdown>
188 238
 
189
-        
190
-        
191
-        <!-- <el-table-column
192
-          v-if="template_id != 6"
193
-          prop="checker"
194
-          min-width="30px"
239
+            <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
240
+              <span class="el-dropdown-link">
241
+                &emsp;{{ getAdviceContent(scope.row, 2)}}
242
+              </span>
243
+            </el-dropdown>
244
+          </template>
245
+        </el-table-column>
246
+        <el-table-column
247
+          prop="start_time"
195 248
           align="center"
196
-          label="核对人员"
249
+          min-width="30px"
250
+          label="执行时间"
251
+          sortable
197 252
         >
253
+          <template slot-scope="scope">
254
+            <span v-if="scope.row.execution_time != 0">
255
+              {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
256
+            </span>
257
+            <span v-else></span>
258
+          </template>
259
+        </el-table-column>
260
+        <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
261
+          <template slot-scope="scope">
262
+            <span v-if="scope.row.parent_id == 0">
263
+              {{getXuserName(scope.row.execution_staff)}}
264
+            </span>
265
+            <span v-else></span>
266
+          </template>
267
+        </el-table-column>
268
+        <el-table-column prop="checker" align="center" min-width="30px" label="校对护士">
198 269
           <template slot-scope="scope">
199 270
             <span v-if="scope.row.parent_id == 0">
200 271
               {{getXuserName(scope.row.checker)}}
201 272
             </span>
202 273
             <span v-else></span>
203 274
           </template>
204
-        </el-table-column> -->
275
+        </el-table-column>
276
+        <el-table-column
277
+          prop="check_time"
278
+          align="center"
279
+          min-width="30px"
280
+          label="校对时间"
281
+          sortable
282
+        >
283
+          <template slot-scope="scope">
284
+            <span v-if="scope.row.check_time != 0">
285
+              {{scope.row.check_time | parseTime('{m}-{d} {h}:{i}')}}
286
+            </span>
287
+            <span v-else></span>
288
+          </template>
289
+        </el-table-column>
290
+        <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
291
+          <template slot-scope="scope">
292
+            <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
293
+          </template>
294
+        </el-table-column>
295
+        <el-table-column
296
+          prop="created_time"
297
+          align="center"
298
+          min-width="30px"
299
+          label="校对时间"
300
+          sortable
301
+        >
302
+          <template slot-scope="scope">
303
+            <span v-if="scope.row.created_time != 0">
304
+              {{scope.row.created_time | parseTime('{m}-{d} {h}:{i}')}}
305
+            </span>
306
+            <span v-else></span>
307
+          </template>
308
+        </el-table-column>
205 309
       </el-table>
206 310
     </div>
207 311
   </div>
@@ -254,7 +358,9 @@ export default {
254 358
       selecting_schs: [],
255 359
       partitionArr: [],
256 360
 
257
-      scheduleMap:[]
361
+      scheduleMap:[],
362
+      show:true,
363
+      showOne:false,
258 364
     };
259 365
   },
260 366
   created() {
@@ -338,14 +444,19 @@ export default {
338 444
         if (resp.state == 1) {
339 445
             this.admin_users = resp.data.adminUser
340 446
             var schedules = resp.data.scheduals
341
-            // console.log("schedules",schedules)
447
+            console.log("schedules",schedules)
448
+           if(schedules.length > 0){
449
+            this.show = true
450
+            this.showOne = false
342 451
             let arr = []
343 452
             let newArr = []
344 453
             let newSchedules = []
345 454
             schedules.map(item => {
346
-                item.doctor_advice.map(it =>{
347
-                    it.name = item.patient.name
348
-                    it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
455
+             item.doctor_advice.map(it =>{
456
+                it.name = item.patient.name
457
+                    if(item.prescription != null){
458
+                       it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
459
+                    }
349 460
                     it.schedule_type = item.schedule_type
350 461
                     it.zoneId = item.device_number.zone.id
351 462
                     it.dialysis_no = item.patient.dialysis_no
@@ -389,7 +500,68 @@ export default {
389 500
                 }
390 501
             })
391 502
             this.indexInfoList = newArr
392
-        }
503
+           }
504
+           if(resp.data.hisAdvices.length > 0){
505
+             this.show = false
506
+             this.showOne  = true
507
+            var schedules =  resp.data.hisAdvices
508
+          
509
+            let arr = []
510
+            let newArr = []
511
+            let newSchedules = []
512
+            schedules.map(item => {
513
+             item.doctor_advice.map(it =>{
514
+                it.name = item.patient.name
515
+                    if(item.prescription != null){
516
+                       it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
517
+                    }
518
+                    it.schedule_type = item.schedule_type
519
+                    it.zoneId = item.device_number.zone.id
520
+                    it.dialysis_no = item.patient.dialysis_no
521
+                    it.mode_id = item.mode_id
522
+                    arr.push(it)
523
+                })
524
+            })
525
+            if(this.schedulType == 0){
526
+                newSchedules = arr
527
+            }else{
528
+                arr.map(item => {
529
+                    if (item.schedule_type == this.schedulType) {
530
+                        newSchedules.push(item)
531
+                    }
532
+                })
533
+            }
534
+            
535
+            
536
+            if(this.partitionType == 0){
537
+                this.scheduleMap = newSchedules
538
+            }else {
539
+                let a = []
540
+                arr.map(item => {
541
+                    if(this.partitionType == item.zoneId){
542
+                        a.push(item)
543
+                    }
544
+                })
545
+                this.scheduleMap = a
546
+            }
547
+            this.scheduleMap.map(ele => {
548
+                let firstIndex = this.scheduleMap.findIndex(item => {
549
+                  return item.patient_id === ele.patient_id   // 当category相同的时候,返回第一个相同的Index 赋值给 firstIndex
550
+                })
551
+                if (this.scheduleMap.findIndex(item => { return item.patient_id === firstIndex}) === -1) {
552
+                    newArr.push({
553
+                    length: this.scheduleMap.filter(item => {
554
+                        return item.patient_id === ele.patient_id    //利用数组的filter方法,过滤出相同category的数组的长度。数组长度-即为跨多少行
555
+                    }).length,
556
+                    firstIndex: firstIndex    // firstIndex 返回的是第一个catergory就满足的第一个Index,即为rowIndex开始于第几行。
557
+                    })
558
+                }
559
+            })
560
+            this.indexInfoList = newArr
561
+           }
562
+         
563
+  
564
+         }
393 565
         })
394 566
     },
395 567
     getValue: function(val) {

+ 26 - 9
src/xt_pages/stock/detail/print.vue View File

@@ -23,30 +23,38 @@
23 23
             <tbody>
24 24
             <tr>
25 25
               <td style="line-height: 50px" width="50">序号</td>
26
-              <td style="line-height: 50px" width="250">耗材类型</td>
27
-               <td style="line-height: 50px" width="250">耗材名称</td>
26
+              <td style="line-height: 50px" width="250">耗材名称</td>
28 27
               <td style="line-height: 50px" width="250">规格型号</td>
28
+              <td style="line-height: 50px" width="50">单位</td>
29
+              <!-- <td style="line-height: 50px" width="250">耗材类型</td> -->
30
+            
31
+              
29 32
               <td style="line-height: 50px" width="80">数量</td>
33
+              <td style="line-height:50px" width="80" v-if="type == 1">进货价</td>
34
+             <td style="line-height:50px" width="80" v-if="type == 3">出货价</td>
30 35
               <td style="line-height: 50px" width="80" v-if="type == 1 || type == 3">总价</td>
31 36
               <td style="line-height: 50px" width="">备 注</td>
32 37
             </tr>
33 38
 
34
-
35 39
             <tr v-for="(stock,index) in stockDatas" :key="stock.id">
36 40
               <td style="line-height: 50px">&nbsp;
37 41
                 {{index+1}}
38 42
               </td>
39
-              <td style="line-height: 50px">
40
-                <span v-if="stock.type && stock.type.type_name.length > 0">{{stock.type.type_name}}</span>
43
+               <td style="line-height: 50px">
44
+                <span>{{stock.good_name}}</span>
41 45
               </td>
42
-              <td style="line-height: 50px">
43
-                <span v-if="stock">{{stock.good_name}}</span>
46
+               <td style="line-height: 50px">
47
+                <span v-if="stock">{{stock.specification_name}}</span>
44 48
               </td>
45 49
               <td style="line-height: 50px">
46
-                <span v-if="stock">{{stock.specification_name}}</span>
50
+                <span>{{getUnit(stock.good_unit)}}</span>
47 51
               </td>
48
-
52
+              <!-- <td style="line-height: 50px">
53
+                <span v-if="stock.type && stock.type.type_name.length > 0">{{stock.type.type_name}}</span>
54
+              </td> -->
49 55
               <td style="line-height: 50px">{{calCount(stock)}}</td>
56
+              <td style="line-height:50px" v-if="type == 1 && stock.query_warehousing_info.length > 0">{{stock.query_warehousing_info[0].price}}</td>
57
+              <td style="line-height:50px" v-if="type == 3 && stock.query_warehouseout_info.length > 0">{{stock.query_warehouseout_info[0].price}}</td>
50 58
               <td style="line-height: 50px" v-if="type == 1 || type == 3">{{calTotal(stock)}}</td>
51 59
               <td style="line-height: 50px"></td>
52 60
             </tr>
@@ -268,6 +276,15 @@
268 276
         r1 = Number(price.toString().replace('.', ''))
269 277
         r2 = Number(total.toString().replace('.', ''))
270 278
         return r1 * r2 / Math.pow(10, m)
279
+      },
280
+      getUnit(id){
281
+        var name = ""
282
+        for(let i=0;i<this.goodUnit.length;i++){
283
+           if(this.goodUnit[i].id == id){
284
+              name = this.goodUnit[i].name
285
+           }
286
+        }
287
+        return name
271 288
       }
272 289
     },
273 290
     created() {

+ 4 - 2
src/xt_pages/stock/stockInOrder.vue View File

@@ -586,14 +586,16 @@ export default {
586 586
       "-" +
587 587
       (nowDay < 10 ? "0" + nowDay : nowDay);
588 588
     nowDate.setMonth(nowDate.getMonth() - 1);
589
-  
589
+    nowMonth = nowDate.getMonth() + 1;
590
+    nowDay = nowDate.getDate();
590 591
     this.start_time =
591 592
       nowYear +
592 593
       "-" +
593 594
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
594 595
       "-" +
595 596
       (nowDay < 10 ? "0" + nowDay : nowDay);
596
-   
597
+     
598
+     
597 599
 
598 600
       // this.warehousing_time =
599 601
       //   nowYear +

+ 1 - 1
src/xt_pages/stock/stockOutOrderAdd.vue View File

@@ -327,7 +327,7 @@ export default {
327 327
             tempForm['count'] = ''
328 328
             tempForm['price'] = val.selectedGoodInfo[i].buy_price.toString()
329 329
             tempForm['remark'] = ''
330
-            tempForm['good_unit'] = ''
330
+            tempForm['good_unit'] = val.selectedGoodInfo[i].good_unit
331 331
             this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
332 332
           }
333 333
         }

+ 2 - 2
src/xt_pages/stock/stockQuery.vue View File

@@ -46,7 +46,7 @@
46 46
             style="width: 200px;margin-left:10px;"
47 47
             class="filter-item"
48 48
             v-model.trim="keywords"
49
-            placeholder="商品编码/商品名称/规格名称"
49
+            placeholder="耗材名称/商品编码/商品名称/规格名称"
50 50
           />
51 51
           <el-button
52 52
             size="small"
@@ -226,7 +226,7 @@ export default {
226 226
         end_time:this.end_time,
227 227
         type_name:this.type_name,
228 228
       };
229
-      console.log("params-----",Params)
229
+     
230 230
       this.WarehouseInfo.loading = true;
231 231
       this.WarehouseInfo.warehouseInfoDate = [];
232 232
       getAllStockQueryList(Params).then(response => {