| | |
| | | update report_fee_month_statistics t set |
| | | t.owe_amount= #{oweAmount} |
| | | where 1=1 |
| | | <if test="statisticsId !=null and statisticsId != ''"> |
| | | and t.statistics_id= #{statisticsId} |
| | | </if> |
| | | <if test="curMaxTime !=null "> |
| | | and t.cur_max_time <= #{curMaxTime} |
| | | </if> |
| | |
| | | <select id="queryReportFeeSummary" parameterType="Map" resultType="Map"> |
| | | select t.fee_year feeYear,t.fee_month feeMonth,t.create_time createTime,SUM(t.receivable_amount) |
| | | receivableAmount,SUM(t.received_amount) |
| | | receivedAmount,SUM(t.owe_amount) oweAmount |
| | | receivedAmount,SUM(t.owe_amount) oweAmount,max(t.update_time) updateTime |
| | | from report_fee_month_statistics t |
| | | left join building_room br on t.obj_id = br.room_id and t.obj_type = '3333' and br.status_cd = '0' |
| | | left join building_unit bu on br.unit_id = bu.unit_id and bu.status_cd = '0' |
| | |
| | | |
| | | <!-- 查询费用月统计信息 add by wuxw 2018-07-03 --> |
| | | <select id="queryReportFloorUnitFeeSummary" parameterType="Map" resultType="Map"> |
| | | select t.fee_year feeYear,t.fee_month feeMonth, f.floor_num floorNum, bu.unit_num unitNum,t.create_time |
| | | createTime, |
| | | select t.fee_year feeYear,t.fee_month feeMonth, f.floor_num floorNum, bu.unit_num unitNum,max(t.update_time) |
| | | updateTime, |
| | | SUM(t.receivable_amount) receivableAmount,SUM(t.received_amount) receivedAmount,SUM(t.owe_amount) oweAmount |
| | | from report_fee_month_statistics t |
| | | INNER JOIN building_room br on t.obj_id = br.room_id and br.status_cd = '0' |
| | |
| | | <select id="queryFeeBreakdown" parameterType="Map" resultType="Map"> |
| | | select t.fee_name feeName,td.name feeTypeCd,pfc.fee_type_cd,pfc.start_time feeStartTime,pfc.end_time |
| | | feeEndTime,SUM(t.receivable_amount) |
| | | receivableAmount,SUM(t.received_amount) receivedAmount,SUM(t.owe_amount) oweAmount |
| | | receivableAmount,SUM(t.received_amount) receivedAmount,SUM(t.owe_amount) oweAmount,max(t.update_time) updateTime |
| | | from report_fee_month_statistics t |
| | | inner join pay_fee_config pfc on t.config_id = pfc.config_id and pfc.status_cd = '0' |
| | | left join building_room br on t.obj_id = br.room_id and t.obj_type = '3333' and br.status_cd = '0' |
| | |
| | | |
| | | <!-- 查询费用月统计信息 add by wuxw 2018-07-03 --> |
| | | <select id="queryFeeDetail" parameterType="Map" resultType="Map"> |
| | | select t.obj_name objName,t.fee_name feeName,t.fee_create_time feeCreateTime,t.deadline_time |
| | | select t.obj_name objName,t.fee_name feeName,t.fee_create_time feeCreateTime,max(t.deadline_time) |
| | | deadlineTime,t.create_time createTime,SUM(t.receivable_amount) receivableAmount,SUM(t.received_amount) |
| | | receivedAmount,SUM(t.owe_amount) oweAmount |
| | | receivedAmount,SUM(t.owe_amount) oweAmount,max(t.update_time) updateTime |
| | | from report_fee_month_statistics t |
| | | inner join pay_fee_config pfc on t.config_id = pfc.config_id and pfc.status_cd = '0' |
| | | left join building_room br on t.obj_id = br.room_id and t.obj_type = '3333' and br.status_cd = '0' |
| | |
| | | <if test="endTime !=null"> |
| | | and t.create_time <= #{endTime} |
| | | </if> |
| | | group by t.config_id,t.fee_name,t.fee_create_time,t.obj_id,t.obj_name,t.deadline_time |
| | | group by t.config_id,t.fee_name,t.fee_create_time,t.obj_id,t.obj_name |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | |
| | | |
| | | <!-- 查询费用月统计信息 add by wuxw 2018-07-03 --> |
| | | <select id="queryOweFeeDetail" parameterType="Map" resultType="Map"> |
| | | select t.payer_obj_name objName,t.fee_name feeName,pf.end_time feeCreateTime,t.create_time |
| | | createTime,SUM(t.amount_owed) oweAmount,max(t.deadline_time) deadlineTime |
| | | select t.payer_obj_name objName,t.fee_name feeName,pf.end_time feeCreateTime,t.update_time |
| | | updateTime,SUM(t.amount_owed) oweAmount,max(t.deadline_time) deadlineTime |
| | | from report_owe_fee t |
| | | inner join pay_fee_config pfc on t.config_id = pfc.config_id and pfc.status_cd = '0' |
| | | left join building_room br on t.payer_obj_id = br.room_id and t.payer_obj_type = '3333' and br.status_cd = '0' |