瀏覽代碼

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 年之前
父節點
當前提交
64edead439

+ 25 - 0
src/xt_pages/dialysis/batch_print/batch_print_order_twentySeven.vue 查看文件

@@ -2997,6 +2997,7 @@
2997 2997
                       <td >医嘱</td>
2998 2998
                       <td width="80">执行时间</td>
2999 2999
                       <td width="80">执行者签名</td>
3000
+                      <td width="80">核对人签名</td>
3000 3001
                     </tr>
3001 3002
 
3002 3003
                     <tr
@@ -3125,6 +3126,30 @@
3125 3126
                           style="height: 40px"
3126 3127
                         />
3127 3128
                       </td>
3129
+
3130
+                      <td>
3131
+                        <span
3132
+                          v-if="
3133
+                            setAdminUserES(
3134
+                              advice[0],
3135
+                              'checker'
3136
+                            ) == ''
3137
+                          "
3138
+                          >{{
3139
+                            getAdminUser(advice[0], "checker")
3140
+                          }}</span
3141
+                        >
3142
+                        <img
3143
+                          class="es-img"
3144
+                          :src="
3145
+                            setAdminUserES(advice[0], 'checker')
3146
+                          "
3147
+                          alt=""
3148
+                          srcset=""
3149
+                          v-else
3150
+                          style="height: 40px"
3151
+                        />
3152
+                      </td>
3128 3153
                     </tr>
3129 3154
                   </tbody>
3130 3155
                 </table>

+ 4 - 0
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue 查看文件

@@ -1655,6 +1655,10 @@
1655 1655
          ParamsQuery.whether_unobstructed = parseInt(ParamsQuery.whether_unobstructed)
1656 1656
          ParamsQuery.lien_necessary =  parseInt(ParamsQuery.lien_necessary)
1657 1657
 
1658
+         if(ParamsQuery.additional_weight >=30){
1659
+             this.$message.error("衣物重异常,请重新填写!")
1660
+         }
1661
+
1658 1662
         postAssessmentBeforeDislysis(ParamsQuery).then(response => {
1659 1663
 
1660 1664
           if (response.data.state == 0) {

+ 12 - 2
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue 查看文件

@@ -5296,9 +5296,19 @@ mu
5296 5296
       'dialysisPrescription.prescription_water':function(){
5297 5297
         if(this.$store.getters.xt_user.template_info.org_id==10598){
5298 5298
            
5299
-          if(this.dialysisPrescription.prescription_water > this.dialysisPrescription.target_ultrafiltration){
5300
-            this.dialysisPrescription.target_ultrafiltration =  this.dialysisPrescription.prescription_water 
5299
+          if(this.dialysisPrescription.mode_id == 3){
5300
+            if(this.dialysisPrescription.prescription_water > this.dialysisPrescription.target_ultrafiltration){
5301
+              if(this.dialysisPrescription.prescription_water!=undefined){
5302
+                this.dialysisPrescription.target_ultrafiltration =  this.dialysisPrescription.prescription_water + 0.3
5303
+              }
5304
+              
5305
+            }
5306
+          }else{
5307
+            if(this.dialysisPrescription.prescription_water > this.dialysisPrescription.target_ultrafiltration){
5308
+              this.dialysisPrescription.target_ultrafiltration =  this.dialysisPrescription.prescription_water 
5309
+            }
5301 5310
           }
5311
+         
5302 5312
            
5303 5313
         }
5304 5314
       },

+ 3 - 0
src/xt_pages/hospitalStation/summary.vue 查看文件

@@ -1138,6 +1138,7 @@ export default {
1138 1138
               就诊id: number,
1139 1139
               登记日期: order.his_hospital_patient.in_hosptial_time,
1140 1140
               出院日期: order.his_hospital_patient.out_hosptial_time,
1141
+              出院诊断疾病名称: '慢性肾病5期血液透析状态',
1141 1142
               结算id: order.setl_id,
1142 1143
               结算日期: order.setl_time,
1143 1144
               医疗费总额: order.medfee_sumamt,
@@ -1176,6 +1177,7 @@ export default {
1176 1177
               "就诊id",
1177 1178
               "登记日期",
1178 1179
               "出院日期",
1180
+              "出院诊断疾病名称",
1179 1181
               "结算id",
1180 1182
               "结算日期",
1181 1183
               "医疗费总额",
@@ -1211,6 +1213,7 @@ export default {
1211 1213
               "就诊id",
1212 1214
               "登记日期",
1213 1215
               "出院日期",
1216
+              "出院诊断疾病名称",
1214 1217
               "结算id",
1215 1218
               "结算日期",
1216 1219
               "医疗费总额",

+ 2 - 3
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue 查看文件

@@ -925,7 +925,6 @@
925 925
 
926 926
     <additionalCharges ref='additionalCharges' @click="addCharges"
927 927
                        :addtions_charge="addtions_charge"></additionalCharges>
928
-
929 928
     <register-dialog ref='register' :doctors="doctors" :departments="department" :sick="sick" :diagnoses="diagnoses"
930 929
                      v-on:confirm="confirm" v-on:cancel="cancel"></register-dialog>
931 930
     <call-un-association-prescription ref='call_prescription' v-on:call="call" v-on:call-cancel="callCancel"></call-un-association-prescription>
@@ -1877,7 +1876,7 @@ export default {
1877 1876
             this.$refs.register.hide()
1878 1877
             this.loadingone = false
1879 1878
 
1880
-            this.CheckHISPatient(this.record_date,this.patientInfo.id)
1879
+            this.CheckHISPatient(this.record_date,forms.id)
1881 1880
 
1882 1881
           }
1883 1882
         })
@@ -1913,7 +1912,7 @@ export default {
1913 1912
                 that.$message({ message: '挂号成功', type: 'success', duration: 5000 })
1914 1913
                 that.$refs.register.hide()
1915 1914
                 that.loadingone = false
1916
-                that.CheckHISPatient(that.record_date,that.patientInfo.id)
1915
+                that.CheckHISPatient(that.record_date,forms.id)
1917 1916
 
1918 1917
               }
1919 1918
             }

+ 13 - 7
src/xt_pages/outpatientCharges/summary.vue 查看文件

@@ -145,11 +145,11 @@
145 145
           <!--          </el-button-->
146 146
           <!--          >-->
147 147
 
148
-<!--          <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
148
+          <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>
149 149
           <el-button size="small" type="primary" @click="accounts_click()">门诊结账</el-button>
150 150
           <!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
151 151
           <!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
152
-          <!--           <el-button size="small" type="primary" @click="export_detail_six">诊疗下载</el-button>-->
152
+<!--                     <el-button size="small" type="primary" @click="export_detail_six">诊疗下载</el-button>-->
153 153
           <!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
154 154
           <!--  <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
155 155
 
@@ -926,6 +926,12 @@ export default {
926 926
         case 21:
927 927
           return '普通住院'
928 928
           break
929
+        case 140104:
930
+          return '城乡门诊特殊病(140104)'
931
+          break
932
+        case 992102:
933
+          return '单病种(992102)'
934
+          break
929 935
       }
930 936
     },
931 937
     cancelUploadTwo(row) {
@@ -2022,7 +2028,7 @@ export default {
2022 2028
           var tarList = []
2023 2029
           for (let i = 0; i < list.length; i++) {
2024 2030
             let obj = {
2025
-              '周期': '2023年第四季度',
2031
+              '周期': '2024年第一季度',
2026 2032
               '类别': '门诊',
2027 2033
               '医保目录编码': list[i].code,
2028 2034
               '医保目录名称': list[i].name,
@@ -3462,7 +3468,7 @@ export default {
3462 3468
               实收金额: order.medfee_sumamt,
3463 3469
               医保统筹金额: order.hifp_pay,
3464 3470
               大额基金金额: order.hifob_pay,
3465
-              大病基金金额: hifmi_pay,
3471
+              大病基金金额: order.hifmi_pay,
3466 3472
               补充保险基金金额: order.hifes_pay,
3467 3473
               医疗救助基金金额: order.maf_pay,
3468 3474
               公务员基金: order.cvlserv_pay,
@@ -3680,7 +3686,7 @@ export default {
3680 3686
         let total = 0
3681 3687
 
3682 3688
         for (let a = 0; a < project_month_prescriptions.project.length; a++) {
3683
-          if (project_ids[i].price == project_month_prescriptions.project[a].project.price && project_ids[i].id == project_month_prescriptions.project[a].project.project_id) {
3689
+          if (project_ids[i].price == project_month_prescriptions.project[a].pric && project_ids[i].id == project_month_prescriptions.project[a].project.project_id) {
3684 3690
 
3685 3691
             if (project_month_prescriptions.project[a].project.type == 2) {
3686 3692
               obj['name'] = project_month_prescriptions.project[a].project.project.project_name
@@ -3869,8 +3875,8 @@ export default {
3869 3875
       //   console.log('6666666',tableData);
3870 3876
       //   let arr = []
3871 3877
       //   for (let i = 0; i < tableData.length; i++) {
3872
-          
3873
-      //     if (tableData[i].patient.name.indexOf(this.keywords) != -1 || 
3878
+
3879
+      //     if (tableData[i].patient.name.indexOf(this.keywords) != -1 ||
3874 3880
       //       tableData[i].patient.first_letter.indexOf(this.keywords) != -1) {
3875 3881
       //       arr = arr.concat(tableData[i])
3876 3882
       //     }

+ 2 - 1
src/xt_pages/outpatientTool/components/settle.vue 查看文件

@@ -94,7 +94,8 @@
94 94
                   <div v-if="scope.row.med_type == '14'">门诊特殊病</div>
95 95
                   <div v-if="scope.row.med_type == '11'">普通门诊</div>
96 96
                   <div v-if="scope.row.med_type == '1112'">普通门诊</div>
97
-
97
+                  <div v-if="scope.row.med_type == '140104'">城乡门诊特殊病(140104)</div>
98
+                  <div v-if="scope.row.med_type == '992102'">单病种(992102)</div>
98 99
               </template>
99 100
           </el-table-column>
100 101
           <el-table-column align="center" prop="medfee_sumamt" label="医疗费总额">

+ 2 - 2
src/xt_pages/role/admin.vue 查看文件

@@ -227,12 +227,12 @@
227 227
           @click="toAutoDrug">自动生成</el-button> -->
228 228
 
229 229
 
230
-         <!-- <el-button
230
+         <el-button
231 231
           type="primary"
232 232
           size="small"
233 233
           icon="el-icon-circle-plus-outline"
234 234
           style="float:left"
235
-          @click="toAutoDiagnose">自动脚本</el-button> -->
235
+          @click="toAutoDiagnose">自动脚本</el-button>
236 236
 
237 237
         <!-- <el-button
238 238
           type="primary"

+ 1 - 1
src/xt_pages/stock/drugs/components/purchaseNewDrugQuery.vue 查看文件

@@ -442,7 +442,7 @@ export default {
442 442
               list[i].drugAddOne= 0
443 443
               list[i].drugOutOne =0
444 444
               
445
-              if(this.org_id ==10210 || this.org_id==0 || this.org_id ==10402 || this.org_id ==10215){
445
+              if(this.org_id ==10210  || this.org_id ==10402 || this.org_id ==10215){
446 446
                  list[i].drugIn = this.GetDrugStartFlow(list[i].DrugStatFlow.over_count,list[i].min_number,list[i].min_unit,list[i].max_unit) 
447 447
               }else{
448 448
                 list[i].drugIn = this.GetInitStartFlow(list[i].new_drug_in_flow_info,list[i].new_drug_profit_flow_info,list[i].new_drug_out_flow_info,list[i].new_drug_no_profit_flow_info,list[i].new_drug_cancel_flow_info,list[i].min_number,list[i].min_unit,list[i].max_unit)

+ 2 - 2
src/xt_pages/stock/drugs/drugStockOutOrder.vue 查看文件

@@ -455,7 +455,7 @@
455 455
 
456 456
            
457 457
           </el-table-column>
458
-          <!-- <el-table-column label="自查自检" align="center">
458
+          <el-table-column label="自查自检" align="center">
459 459
             <template slot-scope="scope">
460 460
               <span style="color: #589ff8" @click="getDrugPatientName(scope.row)"
461 461
                 >自查</span
@@ -463,7 +463,7 @@
463 463
             </template>
464 464
 
465 465
            
466
-          </el-table-column> -->
466
+          </el-table-column>
467 467
         </el-table>
468 468
       </div>
469 469
     </div>