Browse Source

住院担负金额

yeguodong 3 months ago
parent
commit
73e55949a2

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

@@ -240,6 +240,10 @@
         <td>补充医疗保险基金支付</td>
         <td>{{ setlinfo.hifesPay }}</td>
       </tr>
+        <tr>
+            <td colspan="2">医院负担金额</td>
+            <td colspan="2">{{ setlinfo.hospPartAmt }}</td>
+        </tr>
     </table>
   </div>
 </template>

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

@@ -237,6 +237,10 @@
         <td>补充医疗保险基金支付</td>
         <td>{{ setlinfo.hifesPay }}</td>
       </tr>
+        <tr>
+            <td colspan="2">医院负担金额</td>
+            <td colspan="2">{{ setlinfo.hospPartAmt }}</td>
+        </tr>
     </table>
   </div>
 </template>

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

@@ -126,6 +126,10 @@
         <td>其他基金支付</td>
         <td>{{ setlinfo.othPay }}</td>
       </tr>
+        <tr>
+            <td colspan="2">医院负担金额</td>
+            <td colspan="2">{{ setlinfo.hospPartAmt }}</td>
+        </tr>
     </table>
   </div>
 </template>

+ 10 - 6
src/views/hospitalization/zfsf/CashierProcessInfo.vue

@@ -705,7 +705,7 @@ const getCashierProcessInfo = (param,zyLedgerFile,checkParam)=>{
     queryCashierProcessInfo(param).then(res=>{
       setSettData(res.settData)
       setJkInfoList(res.settData)
-      setJzInfo(res.settData.ybJzJe)
+      setJzInfo(res.settData);
       setShowFlag.value = true
     })
   }
@@ -795,17 +795,21 @@ const  setSettData = (val)=>{
 
 }
 
-const setJzInfo = (ybJzJe)=>{
+const setJzInfo = (settData)=>{
   jzInfoList.value = []
-  if(ybJzJe && ybJzJe != 0){
+  if(settData.ybJzJe && settData.ybJzJe != 0){
     jzInfoList.value.push({
       ybType : '医保记账',
-      ybJzJe :ybJzJe
+      ybJzJe :settData.ybJzJe
     })
     jzInfoList.value.push({
       ybType : '记账总计',
-      ybJzJe :ybJzJe
-    })
+      ybJzJe :settData.ybJzJe
+    });
+      jzInfoList.value.push({
+          ybType : '医院负担金额',
+          ybJzJe :settData.hospPartamt
+      });
   }
 }