Browse Source

提交代码

陈少旭 1 year ago
parent
commit
775ab1f629

+ 7 - 0
src/xt_pages/outpatientCharges/chargeDetailManagement.vue View File

985
               obj['statistical_classification'] = ''
985
               obj['statistical_classification'] = ''
986
               obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
986
               obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
987
               obj['project_name'] = project_month_prescriptions.project[a].project.project_name
987
               obj['project_name'] = project_month_prescriptions.project[a].project.project_name
988
+              obj['project'] = project_month_prescriptions.project[a].project
989
+
988
               obj['type'] = 2
990
               obj['type'] = 2
989
 
991
 
990
             } else if (project_month_prescriptions.project[a].type == 3) {
992
             } else if (project_month_prescriptions.project[a].type == 3) {
991
               obj['statistical_classification'] = ''
993
               obj['statistical_classification'] = ''
992
               obj['medical_code'] = project_month_prescriptions.project[a].good_info.medical_insurance_number
994
               obj['medical_code'] = project_month_prescriptions.project[a].good_info.medical_insurance_number
993
               obj['project_name'] = project_month_prescriptions.project[a].good_info.good_name
995
               obj['project_name'] = project_month_prescriptions.project[a].good_info.good_name
996
+              obj['good_info'] = project_month_prescriptions.project[a].good_info
997
+
994
               obj['type'] = 3
998
               obj['type'] = 3
995
 
999
 
996
             }
1000
             }
1308
                 obj['statistical_classification'] = prescription.project[b].team.project_team
1312
                 obj['statistical_classification'] = prescription.project[b].team.project_team
1309
                 obj['medical_code'] = prescription.project[b].project.medical_code
1313
                 obj['medical_code'] = prescription.project[b].project.medical_code
1310
                 obj['project_name'] = prescription.project[b].project.project_name
1314
                 obj['project_name'] = prescription.project[b].project.project_name
1315
+                obj['project'] = prescription.project[b].project
1316
+
1311
                 obj['spec'] = ''
1317
                 obj['spec'] = ''
1312
                 obj['name_id'] = 0
1318
                 obj['name_id'] = 0
1313
 
1319
 
1317
                 obj['project_name'] = prescription.project[b].good_info.good_name
1323
                 obj['project_name'] = prescription.project[b].good_info.good_name
1318
                 obj['spec'] = prescription.project[b].good_info.specification_name
1324
                 obj['spec'] = prescription.project[b].good_info.specification_name
1319
                 obj['name_id'] = prescription.project[b].good_info.manufacturer
1325
                 obj['name_id'] = prescription.project[b].good_info.manufacturer
1326
+                obj['good_info'] = prescription.project[b].good_info
1320
 
1327
 
1321
               }
1328
               }
1322
 
1329
 

+ 7 - 1
src/xt_pages/outpatientCharges/componenttwo/chargeMonthPrescriptionTable.vue View File

58
               :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
58
               :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
59
       <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
59
       <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
60
       <el-table-column align="center" prop="project_name" label="名称">
60
       <el-table-column align="center" prop="project_name" label="名称">
61
-        <template slot-scope="scope">{{ scope.row.project_name }}</template>
61
+<!--        <template slot-scope="scope">{{ scope.row.project_name }}</template>-->
62
+        <template slot-scope="scope">
63
+          <span :title="scope.row.project_name" v-if="org_id != 10206">{{ scope.row.project_name }}</span>
64
+          <span  v-if="org_id == 10206&&scope.row.type==3">{{ scope.row.project_name }}{{scope.row.good_info.specification_name}}{{scope.row.good_info.good_number}}</span>
65
+          <span v-if="org_id == 10206&&scope.row.type==2">{{ scope.row.project_name }}</span>
66
+        </template>
62
       </el-table-column>
67
       </el-table-column>
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
68
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
         <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
69
         <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
127
     },
132
     },
128
     data() {
133
     data() {
129
       return {
134
       return {
135
+        org_id:this.$store.getters.xt_user.org_id,
130
         drugways: [],
136
         drugways: [],
131
         efs: []
137
         efs: []
132
       }
138
       }

+ 6 - 1
src/xt_pages/outpatientDoctorStation/components/prescriptionTable.vue View File

143
                   :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
143
                   :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
144
             <el-table-column align="center" type="index" width="40" label="序号" fixed></el-table-column>
144
             <el-table-column align="center" type="index" width="40" label="序号" fixed></el-table-column>
145
             <el-table-column align="center" prop="project_name" label="名称" fixed>
145
             <el-table-column align="center" prop="project_name" label="名称" fixed>
146
-                <template slot-scope="scope"><span :title="scope.row.project_name">{{ scope.row.project_name }}</span>
146
+                <template slot-scope="scope">
147
+                  <span :title="scope.row.project_name" v-if="org_id != 10206">{{ scope.row.project_name }}</span>
148
+                  <span  v-if="org_id == 10206&&scope.row.type==3">{{ scope.row.project_name }}{{scope.row.good_info.specification_name}}{{scope.row.good_info.good_number}}</span>
149
+                  <span v-if="org_id == 1026&&scope.row.type==2">{{ scope.row.project_name }}</span>
150
+
147
                 </template>
151
                 </template>
148
             </el-table-column>
152
             </el-table-column>
149
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
153
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
266
 
270
 
267
     data() {
271
     data() {
268
       return {
272
       return {
273
+        org_id:this.$store.getters.xt_user.org_id,
269
         advices: [],
274
         advices: [],
270
         tableData: [],
275
         tableData: [],
271
         newoptions: [{
276
         newoptions: [{