see999 3 år sedan
förälder
incheckning
4e7175f1f2

+ 9 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderThirtyFive.vue Visa fil

@@ -191,7 +191,15 @@
191 191
               <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('颈内静脉') > -1 ? true : false" showValue="临时颈内静脉导管"></label-box>&nbsp;
192 192
               <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('股静脉') > -1 ? true : false" showValue="临时股静脉导管"></label-box>&nbsp;
193 193
               <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('人造血管') > -1 ? true : predialysis.blood_access_part_opera_name.indexOf('移植血管') > -1 ? true : false" showValue="其他"></label-box>&nbsp;
194
-              <span style="width:50px;display: inline-block;"></span>
194
+              
195
+              穿刺方式:
196
+              <span style="width:60px;display: inline-block;">
197
+                {{ predialysis.puncture_way ? predialysis.puncture_way : "" }}
198
+              </span>
199
+              位点:
200
+              <span style="width:60px;display: inline-block;">
201
+                {{ predialysis.pinholing ? predialysis.pinholing : "" }}
202
+              </span>
195 203
               穿刺者:
196 204
               <span style="width:50px;display: inline-block;">
197 205
                 <span v-if="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse) == ''">

+ 5 - 1
src/xt_pages/outpatientCharges/newStatementPrint.vue Visa fil

@@ -13,7 +13,8 @@
13 13
     </template>
14 14
 
15 15
     <div class='dialysisPage' style="padding-top:40px;">
16
-      <printOne :info="info" :p_admin="p_admin" :charge_admin="charge_admin"></printOne>
16
+      <printOne v-if="org_id != 9990" :info="info" :p_admin="p_admin" :charge_admin="charge_admin"></printOne>
17
+      <printOne v-if="org_id == 9990" :info="info" :p_admin="p_admin" :charge_admin="charge_admin"></printOne>
17 18
     </div>
18 19
   </div>
19 20
 </template>
@@ -59,6 +60,7 @@
59 60
         info:null,
60 61
         p_admin:{},
61 62
         charge_admin:{},
63
+        org_id:''
62 64
       };
63 65
     },
64 66
     methods:{
@@ -226,7 +228,9 @@
226 228
     },
227 229
 
228 230
     created() {
231
+      this.org_id = this.$store.getters.xt_user.org_id
229 232
       this.getInfo(this.paramsObj.order_id)
233
+      
230 234
     },
231 235
     watch:{
232 236
       paramsObj:{//深度监听,可监听到对象、数组的变化

+ 1 - 1
src/xt_pages/outpatientCharges/summary.vue Visa fil

@@ -104,7 +104,7 @@
104 104
                             结算单
105 105
                         </el-button>
106 106
                         <el-button size="mini" type="primary" v-if="scope.row.order_status == 2 && $store.getters.xt_user.org_id == 10106" @click="settlementPrint(scope.row)">结算单</el-button>
107
-                        <el-button size="mini" type="primary" @click="toRefund(scope.row)" v-if="(scope.row.order_status == 2 && $store.getters.xt_user.org_id == 10106)">
107
+                        <el-button size="mini" type="primary" @click="toRefund(scope.row)" v-if="(scope.row.order_status == 2 && $store.getters.xt_user.org_id == 10106) || (scope.row.order_status == 2 && $store.getters.xt_user.org_id == 10106)">
108 108
                             退费
109 109
                         </el-button>
110 110
                         <el-button size="mini" type="primary" @click="invoicePrint(scope.row)">打印发票</el-button>

+ 4 - 4
src/xt_pages/outpatientDoctorStation/components/prescriptionTable.vue Visa fil

@@ -378,16 +378,16 @@
378 378
 
379 379
       },
380 380
       getSingleDose(scope){
381
-        // this.prescription.advices[scope.$index].prescribing_number = scope.row.single_dose * scope.row.day
381
+        this.prescription.advices[scope.$index].prescribing_number = scope.row.single_dose * scope.row.day
382 382
       },
383 383
       getDay(scope){
384
-        // this.prescription.advices[scope.$index].prescribing_number = scope.row.single_dose * scope.row.day
384
+        this.prescription.advices[scope.$index].prescribing_number = scope.row.single_dose * scope.row.day
385 385
       },
386 386
       getProjectSingleDose(scope){
387
-        // this.prescription.project[scope.$index].total = scope.row.single_dose * scope.row.number_days
387
+        this.prescription.project[scope.$index].total = scope.row.single_dose * scope.row.number_days
388 388
       },
389 389
       getProjectDay(scope){
390
-        // this.prescription.project[scope.$index].total = scope.row.single_dose * scope.row.number_days
390
+        this.prescription.project[scope.$index].total = scope.row.single_dose * scope.row.number_days
391 391
       }
392 392
     },mounted(){
393 393
       this.getInitData()