Browse Source

优惠金额和折扣金额

陈少旭 1 day ago
parent
commit
0d6c28d000

+ 1 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

36
         </div>
36
         </div>
37
 
37
 
38
 
38
 
39
-        <div class="mainCell" v-if="this.org_id == 10191">
39
+        <div class="mainCell" v-if="this.org_id == 10191 || this.org_id == 10653">
40
           <el-radio-group v-model="sch_type" @change="changeScheduleType">
40
           <el-radio-group v-model="sch_type" @change="changeScheduleType">
41
             <el-radio :label="1">上午</el-radio>
41
             <el-radio :label="1">上午</el-radio>
42
             <el-radio :label="2">下午</el-radio>
42
             <el-radio :label="2">下午</el-radio>

+ 17 - 3
src/xt_pages/outpatientCharges/summary.vue View File

210
             }}
210
             }}
211
           </template>
211
           </template>
212
         </el-table-column>
212
         </el-table-column>
213
+        <el-table-column align="center" width="80" prop="name" label="折扣金额">
214
+          <template slot-scope="scope">{{
215
+              scope.row.discount_price.toFixed(2)
216
+            }}
217
+          </template>
218
+        </el-table-column>
219
+
220
+        <el-table-column align="center" width="80" prop="name" label="优惠金额">
221
+          <template slot-scope="scope">{{
222
+              scope.row.preferential_price.toFixed(2)
223
+            }}
224
+          </template>
225
+        </el-table-column>
226
+
213
         <el-table-column align="center" width="70" prop="name" label="科室">
227
         <el-table-column align="center" width="70" prop="name" label="科室">
214
           <template slot-scope="scope">{{
228
           <template slot-scope="scope">{{
215
               scope.row.department_name
229
               scope.row.department_name
447
     >
461
     >
448
       <listPrint ref="checklists" :paramsObj='paramsObj' :key="jgFileTimer"></listPrint>
462
       <listPrint ref="checklists" :paramsObj='paramsObj' :key="jgFileTimer"></listPrint>
449
     </el-dialog>
463
     </el-dialog>
450
-    
464
+
451
     <el-dialog
465
     <el-dialog
452
       class="centerDialog"
466
       class="centerDialog"
453
       width="900px"
467
       width="900px"
4039
     getTimes(time) {
4053
     getTimes(time) {
4040
       return uParseTime(time, '{y}-{m}-{d}')
4054
       return uParseTime(time, '{y}-{m}-{d}')
4041
     },
4055
     },
4042
-    
4056
+
4043
     toDetail(row) {
4057
     toDetail(row) {
4044
       this.$router.push(
4058
       this.$router.push(
4045
         '/outpatientCharges/summaryDetail?patient_id=' +
4059
         '/outpatientCharges/summaryDetail?patient_id=' +
4190
 
4204
 
4191
     }
4205
     }
4192
   },
4206
   },
4193
-  
4207
+
4194
 }
4208
 }
4195
 </script>
4209
 </script>
4196
 <style lang="scss">
4210
 <style lang="scss">