|
@@ -215,24 +215,25 @@
|
|
|
/*判断确认对账*/
|
|
|
<if test="map.billType == 'DZ'">
|
|
|
f_statement_no = #{map.tFee.fBillno},
|
|
|
- f_accamount = f_accamount + #{map.tFee.fAmtcr},
|
|
|
+ f_accamount = f_accamount + #{map.tFeeDo.fAmt},
|
|
|
f_accamount_date = #{map.tFee.fAccbilldate}
|
|
|
</if>
|
|
|
/*判断撤销对账*/
|
|
|
<if test="map.billType == 'DZRevoke'">
|
|
|
f_statement_no = #{map.tFee.fBillno},
|
|
|
+ f_accamount = f_accamount - #{map.tFeeDo.fAmt},
|
|
|
f_accamount_date = #{map.tFee.fAccbilldate}
|
|
|
</if>
|
|
|
/*判断收付款*/
|
|
|
<if test="map.billType == 'DC'">
|
|
|
f_stlamount_no = #{map.tFee.fBillno},
|
|
|
- f_stlamount = f_stlamount + #{map.tFee.fAmtcr},
|
|
|
+ f_stlamount = f_stlamount + #{map.tFeeDo.fAmt},
|
|
|
f_stlamount_date =#{map.tFee.fAccbilldate}
|
|
|
</if>
|
|
|
/*判断撤销收付款*/
|
|
|
<if test="map.billType == 'DCRevoke'">
|
|
|
f_stlamount_no = #{map.tFee.fBillno},
|
|
|
- f_stlamount = f_stlamount - #{map.tFee.fAmtcr},
|
|
|
+ f_stlamount = f_stlamount - #{map.tFeeDo.fAmt},
|
|
|
f_stlamount_date =#{map.tFee.fAccbilldate}
|
|
|
</if>
|
|
|
</trim>
|