Browse Source

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

28169 7 months ago
parent
commit
e03843bed9

+ 2 - 2
src/xt_pages/outpatientCharges/listPrint.vue View File

@@ -14,8 +14,8 @@
14 14
     </template>
15 15
 
16 16
     <div class='dialysisPage' style="padding-top:40px;">
17
-      <!-- <printOne v-if=" org_id != 10106&&org_id != 10215&&org_id != 10265 && org_id!=9675 && org_id!=10485" :list="list" :patient="patient" :order="order" :admin="admin"></printOne> -->
18
-      <listPrintforu v-if=" org_id != 10106&&org_id != 10215&&org_id != 10265 && org_id!=9675 && org_id!=10485"
17
+      <printOne v-if="org_id == 10191" :list="list" :patient="patient" :order="order" :admin="admin"></printOne>
18
+      <listPrintforu v-if=" org_id != 10106&&org_id != 10215&&org_id != 10265 && org_id!=9675 && org_id!=10485 && org_id != 10191"
19 19
         :list="list" :patient="patient" :order="order" :admin="admin">
20 20
       </listPrintforu>
21 21
       <printTwo v-if="org_id == 10106 && this.paramsObj.balance_accounts_type != 2" :info="info" :order_infos="order_infos" :p_admin="p_admin" :charge_admin="charge_admin"></printTwo>

+ 3 - 3
src/xt_pages/outpatientTool/components/pdetail.vue View File

@@ -200,7 +200,7 @@ export default {
200 200
         let count = order.count
201 201
         let price = order.price.toFixed(2)
202 202
         let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
203
-        let total = order.total.toFixed(2)
203
+        let total = parseFloat(order.total).toFixed(2)
204 204
 
205 205
         let obj = {
206 206
           '患者姓名': name,
@@ -226,8 +226,8 @@ export default {
226 226
 
227 227
     },
228 228
     getCostType(type){
229
-      console.log(this.costClassifyList)
230
-      console.log(type)
229
+      // console.log(this.costClassifyList)
230
+      // console.log(type)
231 231
       var name = "";
232 232
       for (let i = 0; i < this.costClassifyList.length; i++) {
233 233
         if (type == this.costClassifyList[i].value) {