Browse Source

资金模块-解决回写状态视图的问题

huangx 7 years ago
parent
commit
09e841f55f

+ 1 - 1
applications/money/money-server/src/main/resources/mapper/SubledgerMapper.xml

@@ -257,7 +257,7 @@
 
   <select id="selectRecView" resultType="java.lang.String">
     select case when balance=pi_total then '已收款' when pi_total>balance then '部分收款'
-    when balance=0 then '未收款' ELSE '未收款' end as status from payment_received_view where companyId = #{companyid}
+    when balance=0 then '未收款' ELSE '未收款' end as status from payment_recevied_view where companyId = #{companyid}
     and pbd_slcode = #{code} and pbd_slkind = #{kind}
   </select>