| | |
| | | payerObjName, |
| | | t.cashier_id cashierId,t.cashier_name cashierName,pfc.fee_flag feeFlag,fr.receipt_code |
| | | receiptCode,t.open_invoice openInvoice,t.acct_amount acctAmount,t.discount_amount discountAmount,t.deduction_amount deductionAmount, |
| | | t.late_amount lateAmount,t.gift_amount giftAmount |
| | | t.late_amount lateAmount,t.gift_amount giftAmount,t.invoice_no invoiceNo,t.transferor_name transferorName |
| | | from pay_fee_detail t |
| | | left join pay_fee_attrs pfa on t.fee_id = pfa.fee_id and pfa.spec_cd = '390002' |
| | | left join pay_fee pf on t.fee_id = pf.fee_id and pf.status_cd = '0' |
| | |
| | | pay_fee_detail( |
| | | prime_rate,detail_id,receivable_amount,cycles,remark,received_amount,community_id, |
| | | fee_id,state,start_time,end_time,payable_amount,cashier_name,cashier_id,open_invoice, |
| | | acct_amount,discount_amount,deduction_amount,late_amount,gift_amount |
| | | acct_amount,discount_amount,deduction_amount,late_amount,gift_amount,invoice_no,transferor_name |
| | | <if test="createTime != null and createTime != ''"> |
| | | ,create_time |
| | | </if> |
| | | ) |
| | | values(#{primeRate},#{detailId},#{receivableAmount},#{cycles},#{remark},#{receivedAmount},#{communityId},#{feeId},#{state}, |
| | | #{startTime},#{endTime},#{payableAmount},#{cashierName},#{cashierId},#{openInvoice}, |
| | | #{acctAmount},#{discountAmount},#{deductionAmount},#{lateAmount},#{giftAmount} |
| | | #{acctAmount},#{discountAmount},#{deductionAmount},#{lateAmount},#{giftAmount},#{invoiceNo},#{transferorName} |
| | | <if test="createTime != null and createTime != ''"> |
| | | ,#{createTime} |
| | | </if> |