XMLWAN hace 3 años
padre
commit
42d7800d13
Se han modificado 2 ficheros con 555 adiciones y 23 borrados
  1. 59 23
      src/xt_pages/stock/stockModifyPrice.vue
  2. 496 0
      src/xt_pages/user/templateSummaryPrint.vue

+ 59 - 23
src/xt_pages/stock/stockModifyPrice.vue Ver fichero

@@ -200,62 +200,62 @@
200 200
             </el-form-item>
201 201
         </el-form>
202 202
         <el-table :data="tableData" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }">
203
-            <el-table-column prop="date" label="单据编号" width="100">
203
+            <el-table-column prop="date" label="单据编号" width="100" align="center">
204 204
                 <template slot-scope="scope">
205 205
                 {{scope.row.warehousing_order}}
206 206
                 </template>
207 207
             </el-table-column>
208
-            <el-table-column prop="date" label="耗材名称" width="100">
208
+            <el-table-column prop="date" label="耗材名称" width="100" align="center">
209 209
                <template slot-scope="scope">
210 210
                 {{scope.row.good_name}}
211 211
               </template>
212 212
             </el-table-column>
213
-            <el-table-column prop="name" label="规格" width="100">
213
+            <el-table-column prop="name" label="规格" width="100" align="center">
214 214
               <template slot-scope="scope">
215 215
                {{scope.row.specification_name}}
216 216
                </template>
217 217
             </el-table-column>
218
-            <el-table-column prop="name" label="单位" width="100">
218
+            <el-table-column prop="name" label="单位" width="100" align="center">
219 219
               <template slot-scope="scope">
220 220
                {{scope.row.warehousing_unit}}
221 221
                </template>
222 222
             </el-table-column>
223
-            <el-table-column prop="name" label="调价数量" width="100">
223
+            <el-table-column prop="name" label="调价数量" width="100" align="center">
224 224
               <template slot-scope="scope">
225 225
                 {{scope.row.count}}
226 226
               </template> 
227 227
             </el-table-column>
228
-            <el-table-column prop="name" label="原进货价" width="100">
228
+            <el-table-column prop="name" label="原进货价" width="100" align="center">
229 229
                <template slot-scope="scope">
230 230
                 {{scope.row.buy_price}}
231 231
                </template> 
232 232
             </el-table-column>
233
-            <el-table-column prop="name" label="原零售价" width="100">
233
+            <el-table-column prop="name" label="原零售价" width="100" align="center">
234 234
                <template slot-scope="scope">
235 235
                {{scope.row.packing_price}}
236 236
               </template> 
237 237
             </el-table-column>
238
-            <el-table-column prop="name" label="新零售价" width="100">
238
+            <el-table-column prop="name" label="新零售价" width="100" align="center">
239 239
                <template slot-scope="scope">
240 240
                 {{scope.row.new_price}}
241 241
                </template>   
242 242
             </el-table-column>
243
-            <el-table-column prop="manufacturer" label="生产厂商" width="100">
243
+            <el-table-column prop="manufacturer" label="生产厂商" width="100" align="center">
244 244
                 <template slot-scope="scope">
245 245
                  {{scope.row.manufacturer}}
246 246
                </template>     
247 247
             </el-table-column>
248
-            <el-table-column prop="name" label="批准文号" width="100">
248
+            <el-table-column prop="name" label="批准文号" width="100" align="center">
249 249
               <template slot-scope="scope">
250 250
                  {{scope.row.license_number}}
251 251
                </template>    
252 252
             </el-table-column>
253
-            <el-table-column prop="name" label="经销商" width="100">
253
+            <el-table-column prop="name" label="经销商" width="100" align="center">
254 254
                <template slot-scope="scope">
255 255
                  {{scope.row.dealer}}
256 256
                </template>    
257 257
             </el-table-column>
258
-            <el-table-column prop="name" label="备注"width="100">
258
+            <el-table-column prop="name" label="备注" width="100" align="center">
259 259
               <template slot-scope="scope">
260 260
                  {{scope.row.remark}}
261 261
                </template>   
@@ -266,7 +266,7 @@
266 266
             label="操作">
267 267
                 <template slot-scope="scope">
268 268
                     <el-button type="text" size="small" @click="deletePrice(scope.$index)">删除</el-button>
269
-                    <el-button type="text" size="small">编辑</el-button>
269
+                    <el-button type="text" size="small" @click="editPrice(scope.row.id)">编辑</el-button>
270 270
                 </template>
271 271
             </el-table-column>
272 272
         </el-table>
@@ -275,7 +275,42 @@
275 275
             <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
276 276
         </span>
277 277
     </el-dialog>
278
-  
278
+    
279
+    <el-dialog
280
+        title="编辑"
281
+        :visible.sync="editPriceDialogVisible"
282
+        width="50%">
283
+        <span>
284
+          <el-form :ref="form" >
285
+            <el-row>
286
+               <el-col>
287
+                <el-form-item label="耗材名称:">
288
+                    <el-autocomplete
289
+                        class="checkSearch"
290
+                        popper-class="my-autocomplete"
291
+                        v-model="form.good_name"
292
+                        :fetch-suggestions="querySearchAsync"
293
+                        :trigger-on-focus="true"
294
+                        placeholder="请输入耗材名称"
295
+                        @select="handleSelect"
296
+                        @input="changeGoodName(scope.$index)"
297
+                        style="width:160px;"
298
+                    >
299
+                        <i class="el-icon-search el-input__icon" slot="suffix"></i>
300
+                    <template slot-scope="{ item }">
301
+                        <div class="name">{{ item.good_name +"  " +item.specification_name + "  "+item.manufacturer }}</div>
302
+                    </template>
303
+                    </el-autocomplete>
304
+                </el-form-item>
305
+              </el-col> 
306
+            </el-row>
307
+          </el-form>
308
+        </span>
309
+        <span slot="footer" class="dialog-footer">
310
+            <el-button @click="dialogVisible = false">取 消</el-button>
311
+            <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
312
+        </span>
313
+    </el-dialog>
279 314
   </div>
280 315
 </template>
281 316
 
@@ -316,12 +351,13 @@ export default {
316 351
                 specification_name:"",
317 352
                 buy_price:"",
318 353
                 good_id:"",
354
+                packing_unit:"",
319 355
             },
320 356
             goodList:[],
321 357
             manufacturerList:[],
322 358
             dealerList:[],
323 359
             currentIndex: 0,
324
-
360
+            editPriceDialogVisible:false,
325 361
         }
326 362
     },
327 363
     methods:{
@@ -355,13 +391,13 @@ export default {
355 391
                   }
356 392
                 }
357 393
 
358
-                // for(let i=0;i<this.goodList.length;i++){
359
-                // for(let j=0;j<this.dealerList.length;j++){
360
-                //     if(this.goodList[i].dealer == this.dealerList[j].id){
361
-                //         this.goodList[i].dealer = this.dealerList[j].dealer_name
362
-                //     }
363
-                // }
364
-                // }
394
+                for(let i=0;i<this.goodList.length;i++){
395
+                   for(let j=0;j<this.dealerList.length;j++){
396
+                     if(this.goodList[i].dealer == this.dealerList[j].id){
397
+                       this.goodList[i].dealer = this.dealerList[j].dealer_name
398
+                     }
399
+                   }
400
+                }
365 401
             
366 402
                 cb(this.goodList)
367 403
             } else {
@@ -382,9 +418,9 @@ export default {
382 418
           this.form.dealer = val.dealer
383 419
           this.form.manufacturer = val.manufacturer
384 420
           this.form.specification_name = val.specification_name
385
-          this.form.warehousing_unit = val.warehousing_unit
386 421
           this.form.remark = val.remark
387 422
           this.form.buy_price = val.buy_price
423
+          this.form.warehousing_unit = val.packing_unit
388 424
       },
389 425
       handleClose(){
390 426
 

+ 496 - 0
src/xt_pages/user/templateSummaryPrint.vue Ver fichero

@@ -0,0 +1,496 @@
1
+<template>
2
+  <div id="dialysis-print-box">
3
+    <div class="dialysis-print-order">
4
+      <div class="order-yy-name"></div>
5
+      <div class="order-title">{{ orgname }}&nbsp;&nbsp;&nbsp;血液透析患者诊疗阶段小结</div>
6
+      <div style="float:right">
7
+         <el-button type="primary" size="small" @click="printThisPage">打印</el-button> 
8
+      </div>
9
+      <div>
10
+         <span>姓名:{{patientList.patient.name}}</span>  
11
+         <span>年龄:{{getNewAge(patientList.patient.id_card_no)}}</span>  
12
+         <span>性别:
13
+             <span v-if="patientList.patient.gender == 1">男</span>
14
+             <span v-if="patientList.patient.gender == 2">女</span>
15
+         </span> 
16
+         <span>诊断:{{patientList.patient.diagnose}}</span> 
17
+      </div>
18
+      <div class="under-line"></div>
19
+      <div>
20
+        <span>阶段评估时间:{{getTime(patientList.record_time)}}</span>  
21
+      </div>
22
+      <div class="under-line"></div>
23
+       <div>
24
+        <span>阶段小结概要:</span>  
25
+        <div>
26
+          <span>干体重:{{patientList.patient.dry_weight}}(kg)</span>  
27
+          <span>共透析:{{patientList.patient.dialysis_count}}</span>  
28
+          <span>HD:{{patientList.hd_count}}</span>  
29
+          <span>HDF:{{patientList.hdf_count}}</span>  
30
+          <span>HP:{{patientList.hp_count}}</span>  
31
+          <span>其他:{{patientList.other_count}}</span> 
32
+          <span>透析器:{{patientList.dialzer_apparatus}}</span>  
33
+          <span>抗凝剂:{{patientList.anticoagulant}}</span>  
34
+          <span>透析液(钾:{{patientList.kalium}} 钙:{{patientList.autunite}} Na:{{patientList.natrium}} ):</span> 
35
+          <span>每次透析(小时):{{patientList.hour}}时{{patientList.minute}}分</span>
36
+          <span>透前体重:{{patientList.befor_weight}}</span>
37
+          <span>透后体重:{{patientList.after_weight}}</span>
38
+          <span>透前血压:{{patientList.befor_pressure}}</span>
39
+          <span>透后血压:{{patientList.after_pressure}}</span>
40
+        </div>
41
+      </div>
42
+      <div class="under-line"></div>
43
+      <div>
44
+        <span>阶段小结总结:{{patientList.template_summary_content}}</span>  
45
+      </div>
46
+     <div class="under-line"></div>
47
+     <div>
48
+        <span>阶段小结化验结果:{{patientList.template_inspection_content}}</span>  
49
+      </div>
50
+     <div class="under-line"></div>
51
+     <div>阶段小结个性化方案:{{patientList.template_plan_content}}</div>
52
+     <div class="under-line"></div>
53
+     <div>
54
+       <span>记录医生:{{getPatientList(patientList.admin_user_id)}}</span>  
55
+       <span>记录时间:{{getTime(patientList.record_time)}}</span>  
56
+     </div>
57
+    </div>
58
+  </div>
59
+</template>
60
+
61
+<script>
62
+import { getDataConfig } from '@/utils/data'
63
+import { jsGetAge, uParseTime } from '@/utils/tools'
64
+import LabelBox from '../dialysis/printItem/LabelBox'
65
+import CheckBox from '../dialysis/batch_print/option_check_box'
66
+import BreadCrumb from '@/xt_pages/components/bread-crumb'
67
+import {getTemplateSummaryPrintDetail} from "@/api/patient"
68
+export default {
69
+  name: 'dialysisPrintOrderOne',
70
+  components: {
71
+    LabelBox,
72
+    BreadCrumb,
73
+    CheckBox
74
+  },
75
+  data() {
76
+    return {
77
+      crumbs: [
78
+        { path: false, name: '透析管理' },
79
+        { path: false, name: '打印单' }
80
+      ],
81
+      operators: [],
82
+      adminUser: [],
83
+      check: {},
84
+      dialysisOrder: {
85
+        DeviceNumber: []
86
+      },
87
+      posture_arr: [],
88
+      operatorMaps: {},
89
+      complications: [
90
+        '低血压',
91
+        '高血压',
92
+        '心律失常',
93
+        '头晕',
94
+        '头痛',
95
+        '呕吐',
96
+        '抽搐',
97
+        '出血',
98
+        '心衰',
99
+        '腹痛',
100
+        '无'
101
+      ],
102
+      consciousness_arr: [],
103
+      jilurow: 0,
104
+      advice_jilurow: 0,
105
+      loading: false,
106
+      orgname: '',
107
+      patientInfo_gender_1: false,
108
+      patientInfo_gender_2: false,
109
+      patientInfo_source_2: false,
110
+      patientInfo_source_1: false,
111
+      modeOptions: {},
112
+      replacementWays: [],
113
+      perfusionApparatus: [],
114
+      anticoagulantsConfit: {},
115
+      bloodAccessParOpera: {},
116
+      dialysateFormulationOptions: {},
117
+
118
+      queryParams: {
119
+        xtdate: '',
120
+        xtno: ''
121
+      },
122
+      patientInfo: {
123
+        birth: '',
124
+        age: '',
125
+        DialysisSchedule: {
126
+          device_number: { number: '' },
127
+          device_zone: { name: '' }
128
+        },
129
+        gender: 0
130
+      },
131
+      predialysis: {
132
+        score: '',
133
+        internal_fistula: '',
134
+        internal_fistula_skin: '',
135
+        catheter: '',
136
+        blood_access_part_opera_name: ''
137
+      },
138
+      afterdialysis: {
139
+        complications_index: ''
140
+      },
141
+      prescription: {
142
+        dialysate_formulation_name: '',
143
+        device: {}
144
+      },
145
+      advices: [],
146
+      users: [],
147
+      monitors: [],
148
+      summary: {},
149
+      receiverTreatmentAccess: {},
150
+      org_template_info: {},
151
+
152
+      doctor_advices: [],
153
+      advice_groups: [],
154
+      schedule: [],
155
+
156
+      AlPanel: {
157
+        id: 0,
158
+        name: '',
159
+        type: 1,
160
+        shouji: 2,
161
+        weichi: 2,
162
+        zongliang: 2,
163
+        gaimingcheng: -1,
164
+        gaijiliang: -1,
165
+        shouji_unit: 'mg',
166
+        weichi_unit: 'mg/h',
167
+        zongliang_unit: 'mg',
168
+        gaimingcheng_unit: '',
169
+        gaijiliang_unit: ''
170
+      },
171
+      list: 5,
172
+      replacement_total: '',
173
+      actual_treatment_hour: '',
174
+      actual_treatment_minute: '',
175
+      anticoagulant: '',
176
+      anticoagulant_shouji: '',
177
+      anticoagulant_zongliang: '',
178
+      prescription_dewatering: '',
179
+      blood_flow_volume: '',
180
+      dialysate_flow: '',
181
+      bed: '',
182
+      dialyzer_perfusion_apparatus: '',
183
+      dialysate_formulation: '',
184
+      blood_access: '',
185
+      doctor: '',
186
+      nurse: '',
187
+      doctorAdvice: [],
188
+      total: '',
189
+      weight_before: '',
190
+      dry_weight: '',
191
+      weight_after: '',
192
+      weightloss_after: '',
193
+      actual_ultrafiltration: '',
194
+      temperature: '',
195
+      systolic_blood_pressure: '',
196
+      diastolic_blood_pressure: '',
197
+      mission: '',
198
+      dialysis_summary: '',
199
+      orderForm: {
200
+        start_nurse: '',
201
+        url: ''
202
+      },
203
+      doctorForm: {
204
+        doctor: '',
205
+        url: ''
206
+      },
207
+      finshForm: {
208
+        finish_nurse: '',
209
+        url: ''
210
+      },
211
+      tableAdvice: [],
212
+      monitor: [],
213
+      displace_liqui: '',
214
+      kalium: '',
215
+      sodium: '',
216
+      calcium: '',
217
+      weight_gain: '',
218
+      afterWeightLast: '',
219
+      anticoagulant_weichi: '',
220
+      target_ultrafiltration: '',
221
+      blood_access_internal_fistula: '',
222
+      venous_catheterization: '',
223
+      blood_access_part_opera_id: '',
224
+      dryWeight_add: '',
225
+      weight: '',
226
+      vascularId: 0,
227
+      PunctureNurse: {
228
+        user_name: '',
229
+        url: ''
230
+      },
231
+      arr: [],
232
+      arrtwo: [],
233
+      bloodAccess: [],
234
+      vascularAccess: [],
235
+      nursing_record: '',
236
+      special_record: '',
237
+      newTableAdvice: [],
238
+      patientList:{},
239
+      doctorList:[],
240
+    }
241
+  },
242
+  methods: {
243
+    getDatge(value) {
244
+      var times = Date.parse(value) / 1000
245
+      var timestr = uParseTime(times, '{y}年{m}月{d}日')
246
+      return timestr
247
+    },
248
+    getTime(value, temp) {
249
+      if (value == 0) {
250
+        return ''
251
+      }
252
+      if (value != undefined) {
253
+        return uParseTime(value, temp)
254
+      }
255
+      return ''
256
+    },
257
+    getTimes(time) {
258
+      if (time === '') {
259
+        return ''
260
+      }
261
+      return uParseTime(time, '{y}-{m}-{d} {h}:{i}')
262
+    },
263
+    printThisPage() {
264
+        var ptime = Math.round(new Date().getTime() / 1000)
265
+        this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
266
+        const style ='@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
267
+        printJS({
268
+            printable: 'dialysis-print-box',
269
+            type: 'html',
270
+            style: style,
271
+            scanStyles: false
272
+        })
273
+      
274
+    },
275
+  
276
+
277
+   
278
+  
279
+   
280
+  
281
+    getAge: function(val) {
282
+      if (val.birthday != 0) {
283
+        return jsGetAge(val.birth, '-')
284
+      } else {
285
+        return ''
286
+      }
287
+    },
288
+    getTemplateSummaryPrintDetail(id){
289
+       var params ={
290
+         id:id,
291
+       } 
292
+     getTemplateSummaryPrintDetail(params).then(response=>{
293
+        if(response.data.state == 1){
294
+          var list = response.data.data.list
295
+          console.log("listw23222323",list)
296
+          this.patientList = list
297
+          var doctorList = response.data.data.doctorList
298
+          console.log("doctorlsit",doctorList)
299
+          this.doctorList = doctorList
300
+        }
301
+     }) 
302
+    },
303
+    getNewAge(UUserCard) {
304
+      if (UUserCard != null && UUserCard != '') {
305
+        // 获取年龄
306
+        var myDate = new Date()
307
+        var month = myDate.getMonth() + 1
308
+        var day = myDate.getDate()
309
+        var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1
310
+        if (UUserCard.substring(10, 12) < month || UUserCard.substring(10, 12) == month && UUserCard.substring(12, 14) <= day) {
311
+          age++
312
+        }
313
+        return age
314
+      }
315
+    },
316
+   getTime(val) {
317
+     if(val < 0){
318
+        return ""
319
+     }
320
+     if(val == ""){
321
+        return ""
322
+     }else {
323
+        return uParseTime(val, '{y}-{m}-{d}')
324
+     }
325
+    },
326
+    getPatientList(id){
327
+      var name = ""
328
+      for(let i=0;i<this.doctorList.length;i++){
329
+         if(id == this.doctorList[i].admin_user_id){
330
+            name = this.doctorList[i].user_name
331
+         }
332
+      }
333
+      return name
334
+    }
335
+    
336
+  },
337
+ 
338
+  created() {
339
+    var xtuser = this.$store.getters.xt_user
340
+    this.orgname = xtuser.org.org_name
341
+    var id = this.$route.query.id
342
+    this.getTemplateSummaryPrintDetail(id)
343
+    
344
+  }
345
+}
346
+</script>
347
+
348
+<style>
349
+.dialysis-print-order {
350
+  width: 960px;
351
+  margin: 0 auto;
352
+}
353
+
354
+.dialysis-print-order .order-yy-name {
355
+  margin: auto;
356
+  text-align: center;
357
+  font-size: 20px;
358
+  letter-spacing: 5px;
359
+}
360
+
361
+.dialysis-print-order .order-title {
362
+  margin: auto;
363
+  font-weight: 600;
364
+  text-align: center;
365
+  font-size: 22px;
366
+  padding: 10px 20px 20px 20px;
367
+}
368
+
369
+.dialysis-print-order .table-box {
370
+  width: 100%;
371
+  line-height: 23px;
372
+  font-size: 14px;
373
+}
374
+
375
+.dialysis-print-order .print-table {
376
+  width: 100%;
377
+  text-align: center;
378
+  border-collapse: collapse;
379
+  line-height: 40px;
380
+  font-size: 14px;
381
+}
382
+
383
+.dialysis-print-order .print-table-no {
384
+  width: 100%;
385
+  text-align: center;
386
+  border-collapse: collapse;
387
+  font-size: 14px;
388
+}
389
+
390
+.dialysis-print-order .under-line {
391
+  border-bottom: 1px solid #999;
392
+  width: 95%;
393
+  text-align: center;
394
+  margin-left: 2px;
395
+}
396
+
397
+.dialysis-print-order .title-box {
398
+  text-align: center;
399
+  font-size: 16px;
400
+}
401
+
402
+.dialysis-print-order .radio-lebel-box {
403
+  font-weight: 400;
404
+  cursor: pointer;
405
+}
406
+
407
+.dialysis-print-order .radio-no {
408
+  opacity: 0;
409
+  outline: none;
410
+  position: absolute;
411
+  margin: 0;
412
+  width: 0;
413
+  height: 0;
414
+  z-index: -1;
415
+}
416
+
417
+.dialysis-print-order .radio-inner {
418
+  white-space: nowrap;
419
+  cursor: pointer;
420
+  outline: none;
421
+  display: inline-block;
422
+  line-height: 1;
423
+  position: relative;
424
+  vertical-align: middle;
425
+}
426
+
427
+.dialysis-print-order .radio-fang {
428
+  display: inline-block;
429
+  position: relative;
430
+  border: 1px solid #000;
431
+  box-sizing: border-box;
432
+  width: 14px;
433
+  height: 14px;
434
+  background-color: #fff;
435
+  z-index: 1;
436
+  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
437
+    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
438
+}
439
+
440
+.dialysis-print-order .is-checked-radio::after {
441
+  content: "√";
442
+  font-size: 15px;
443
+}
444
+
445
+.dialysis-print-order .print-table-no tr td {
446
+  padding: 8px 5px;
447
+  line-height: 25px;
448
+}
449
+
450
+.dialysis-print-order .print-table tr td {
451
+  padding: 1px 1px;
452
+  /*line-height: 25px;*/
453
+}
454
+
455
+.es-img {
456
+  height: 25px;
457
+}
458
+
459
+.advice-name {
460
+  text-align: left;
461
+}
462
+
463
+.advice-children {
464
+  display: flex;
465
+}
466
+
467
+.title-box-pro {
468
+  border: 0 #fff;
469
+  line-height: 25px;
470
+  height: 25px;
471
+  text-align: left;
472
+  padding-left: 10px !important;
473
+}
474
+.title-box-pro-tr {
475
+  border: 0 #fff;
476
+}
477
+.text-align-left {
478
+  text-align: left !important;
479
+  padding-left: 10px !important;
480
+  font-size: 14px !important;
481
+  line-height: 25px;
482
+}
483
+.print-table-tr-new td {
484
+  line-height: 20px !important;
485
+}
486
+.border-top-solid {
487
+  border: solid 1px #000;
488
+}
489
+.print-template-two tr {
490
+  line-height: 30px;
491
+}
492
+.parent {
493
+  text-align: left;
494
+  padding-left: 20px !important;
495
+}
496
+</style>