Bladeren bron

优化医保结算单

lighter 2 jaren geleden
bovenliggende
commit
f8c4512070

+ 2 - 2
src/components/medical-insurance/settle-detail-list/EmployeeOutpatientSetlList.vue

@@ -73,8 +73,8 @@
       </tr>
       <tr>
         <td>{{ setlinfo.cuminfo.yearAdmtimesMz }}</td>
-        <td>{{ setlinfo.cuminfo.yearPeriodfeeSumamtMz }}</td>
-        <td>{{ setlinfo.cuminfo.yearMedfeesumMz }}</td>
+        <td>{{ setlinfo.cuminfo.yearPeriodFeeSumMz }}</td>
+        <td>{{ setlinfo.cuminfo.yearMedfeeSumMz }}</td>
         <td>{{ setlinfo.cuminfo.yearPayedBegnlineMz }}</td>
         <td>{{ setlinfo.cuminfo.yearBaseFundPayAmtMz }}</td>
         <td>{{ setlinfo.cuminfo.yearPolicySelfPayMz }}</td>

+ 2 - 2
src/components/medical-insurance/settle-detail-list/InpatientSetlList.vue

@@ -83,8 +83,8 @@
       </tr>
       <tr>
         <td>{{ setlinfo.cuminfo.yearAdmtimesZy }}</td>
-        <td>{{ setlinfo.cuminfo.yearPeriodfeeSumamtZy }}</td>
-        <td>{{ setlinfo.cuminfo.yearMedfeesumZy }}</td>
+        <td>{{ setlinfo.cuminfo.yearPeriodFeeSumZy }}</td>
+        <td>{{ setlinfo.cuminfo.yearMedfeeSumZy }}</td>
         <td>{{ setlinfo.cuminfo.yearPayedBegnlineZy }}</td>
         <td>{{ setlinfo.cuminfo.yearBaseFundPayAmtZy }}</td>
         <td>{{ setlinfo.cuminfo.yearPolicySelfPayZy }}</td>

+ 1 - 1
src/components/medical-insurance/settle-detail-list/OtherOutpatientSetlList.vue

@@ -49,7 +49,7 @@
       </tr>
       <tr>
         <td>{{ setlinfo.cuminfo.yearAdmtimesMz }}</td>
-        <td>{{ setlinfo.cuminfo.yearMedfeesumMz }}</td>
+        <td>{{ setlinfo.cuminfo.yearMedfeeSumMz }}</td>
         <td>{{ setlinfo.cuminfo.yearBaseFundPayAmtMz }}</td>
         <td>{{ setlinfo.cuminfo.yearBigAmtpaysMz }}</td>
         <td></td>

+ 0 - 0
src/components/MenuItem/RightClickMenu.vue → src/components/menu-item/RightClickMenu.vue


+ 6 - 1
src/views/medical-insurance/allpatient/SiSettleDetailList.vue

@@ -129,7 +129,10 @@ export default {
       } else if (outParam.type === 21) {
         return '湖南省长沙市住院费用结算单'
       }
-      return isEmployeeOutpatient.value ? '湖南省长沙市门诊统筹费用结算单' : '湖南省长沙市(普通、特殊)门诊费用结算单'
+      if (!isEmployeeOutpatient.value) {
+        return '湖南省长沙市(普通、特殊)门诊费用结算单'
+      }
+      return isProvincial.value ? '湖南省省本级门诊统筹费用结算单' : '湖南省长沙市门诊统筹费用结算单';
     })
     const nowdate = getDate()
     const setlinfo = ref({
@@ -139,6 +142,7 @@ export default {
       polItemInfo: {}
     })
     const isEmployeeOutpatient = ref(false)
+    const isProvincial = ref(false)
     const executeQrySetlinfo = () => {
       setlinfo.value = {
         mdtrtId: '',
@@ -149,6 +153,7 @@ export default {
       querySiSetlList(outParam).then((res) => {
         setlinfo.value = res
         isEmployeeOutpatient.value = res.insutype === '310'
+        isProvincial.value = res.insuplcAdmdvs === '439900'
       })
     }