| | |
| | | <!-- 保存水电抄表信息 add by wuxw 2018-07-03 --> |
| | | <insert id="saveMeterWaterInfo" parameterType="Map"> |
| | | insert into meter_water(remark, obj_name, fee_id, cur_reading_time, water_id, cur_degrees, price, meter_type, |
| | | pre_degrees, obj_id, pre_reading_time, community_id, obj_type, b_id) |
| | | pre_degrees, obj_id, pre_reading_time, community_id, obj_type, b_id, |
| | | power_supply_bureau, household_name, household_number, electric_meter_id, handler, |
| | | is_transferred, company_name_after_transfer, transfer_date, corresponding_household_count, |
| | | last_payment_date, reading_type, multiplying_factor, unit_price, invoice_amount, |
| | | amount_difference, auto_deduction, remark2, address, write_time, writer, |
| | | check_apply_company_name, check_apply_dept_project, water_fee_payer, account_number, |
| | | meter_read_book_no, water_consumption, sewage_treatment_water, collection_standard, |
| | | arrears_unpaid, late_payment_fine, late_payment_surcharge, fee_payment_status, |
| | | carry_over_balance, total_payable_amount) |
| | | values (#{remark}, #{objName}, #{feeId}, #{curReadingTime}, #{waterId}, #{curDegrees}, #{price}, #{meterType}, |
| | | #{preDegrees}, #{objId}, #{preReadingTime}, #{communityId}, #{objType}, #{bId}) |
| | | #{preDegrees}, #{objId}, #{preReadingTime}, #{communityId}, #{objType}, #{bId}, |
| | | #{powerSupplyBureau}, #{householdName}, #{householdNumber}, #{electricMeterId}, #{handler}, |
| | | #{isTransferred}, #{companyNameAfterTransfer}, #{transferDate}, #{correspondingHouseholdCount}, |
| | | #{lastPaymentDate}, #{readingType}, #{multiplyingFactor}, #{unitPrice}, #{invoiceAmount}, |
| | | #{amountDifference}, #{autoDeduction}, #{remark2}, #{address}, #{writeTime}, #{writer}, |
| | | #{checkApplyCompanyName}, #{checkApplyDeptProject}, #{waterFeePayer}, #{accountNumber}, |
| | | #{meterReadBookNo}, #{waterConsumption}, #{sewageTreatmentWater}, #{collectionStandard}, |
| | | #{arrearsUnpaid}, #{latePaymentFine}, #{latePaymentSurcharge}, #{feePaymentStatus}, |
| | | #{carryOverBalance}, #{totalPayableAmount}) |
| | | </insert> |
| | | |
| | | <!-- 查询水电抄表信息 add by wuxw 2018-07-03 --> |
| | | <select id="getMeterWaterInfo" parameterType="Map" resultType="Map"> |
| | | select t.status_cd,t.status_cd statusCd,t.remark,t.obj_name,t.obj_name objName,t.fee_id,t.fee_id |
| | | feeId,t.cur_reading_time,t.cur_reading_time curReadingTime,t.water_id,t.water_id |
| | | waterId,t.cur_degrees,t.cur_degrees curDegrees,t.price,t.meter_type,t.meter_type |
| | | meterType,t.pre_degrees,t.pre_degrees preDegrees,t.obj_id,t.obj_id objId,t.pre_reading_time,t.pre_reading_time |
| | | preReadingTime,t.community_id,t.community_id communityId,t.obj_type,t.obj_type objType |
| | | select t.status_cd,t.status_cd statusCd,t.remark,t.obj_name,t.obj_name objName,t.fee_id,t.fee_id feeId, |
| | | t.cur_reading_time,t.cur_reading_time curReadingTime,t.water_id,t.water_id waterId, |
| | | t.cur_degrees,t.cur_degrees curDegrees,t.price,t.meter_type,t.meter_type meterType, |
| | | t.pre_degrees,t.pre_degrees preDegrees,t.obj_id,t.obj_id objId,t.pre_reading_time, |
| | | t.pre_reading_time preReadingTime,t.community_id,t.community_id communityId,t.obj_type, |
| | | t.obj_type objType, |
| | | t.power_supply_bureau powerSupplyBureau, |
| | | t.household_name householdName, |
| | | t.household_number householdNumber, |
| | | t.electric_meter_id electricMeterId, |
| | | t.handler handler, |
| | | t.is_transferred isTransferred, |
| | | t.company_name_after_transfer companyNameAfterTransfer, |
| | | t.transfer_date transferDate, |
| | | t.corresponding_household_count correspondingHouseholdCount, |
| | | t.last_payment_date lastPaymentDate, |
| | | t.reading_type readingType, |
| | | t.multiplying_factor multiplyingFactor, |
| | | t.unit_price unitPrice, |
| | | t.invoice_amount invoiceAmount, |
| | | t.amount_difference amountDifference, |
| | | t.auto_deduction autoDeduction, |
| | | t.remark2 remark2, |
| | | t.address address, |
| | | t.write_time writeTime, |
| | | t.writer writer, |
| | | t.check_apply_company_name checkApplyCompanyName, |
| | | t.check_apply_dept_project checkApplyDeptProject, |
| | | t.water_fee_payer waterFeePayer, |
| | | t.account_number accountNumber, |
| | | t.meter_read_book_no meterReadBookNo, |
| | | t.water_consumption waterConsumption, |
| | | t.sewage_treatment_water sewageTreatmentWater, |
| | | t.collection_standard collectionStandard, |
| | | t.arrears_unpaid arrearsUnpaid, |
| | | t.late_payment_fine latePaymentFine, |
| | | t.late_payment_surcharge latePaymentSurcharge, |
| | | t.fee_payment_status feePaymentStatus, |
| | | t.carry_over_balance carryOverBalance, |
| | | t.total_payable_amount totalPayableAmount |
| | | from meter_water t |
| | | where 1 =1 |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | |
| | | </if> |
| | | <if test="objType !=null and objType != ''"> |
| | | and t.obj_type= #{objType} |
| | | </if> |
| | | <!-- 新字段查询条件 --> |
| | | <if test="powerSupplyBureau !=null and powerSupplyBureau != ''"> |
| | | and t.power_supply_bureau= #{powerSupplyBureau} |
| | | </if> |
| | | <if test="householdName !=null and householdName != ''"> |
| | | and t.household_name= #{householdName} |
| | | </if> |
| | | <if test="householdNumber !=null and householdNumber != ''"> |
| | | and t.household_number= #{householdNumber} |
| | | </if> |
| | | <if test="electricMeterId !=null and electricMeterId != ''"> |
| | | and t.electric_meter_id= #{electricMeterId} |
| | | </if> |
| | | <if test="handler !=null and handler != ''"> |
| | | and t.handler= #{handler} |
| | | </if> |
| | | <if test="isTransferred !=null and isTransferred != ''"> |
| | | and t.is_transferred= #{isTransferred} |
| | | </if> |
| | | <if test="companyNameAfterTransfer !=null and companyNameAfterTransfer != ''"> |
| | | and t.company_name_after_transfer= #{companyNameAfterTransfer} |
| | | </if> |
| | | <if test="transferDate !=null and transferDate != ''"> |
| | | and t.transfer_date= #{transferDate} |
| | | </if> |
| | | <if test="correspondingHouseholdCount !=null and correspondingHouseholdCount != ''"> |
| | | and t.corresponding_household_count= #{correspondingHouseholdCount} |
| | | </if> |
| | | <if test="lastPaymentDate !=null and lastPaymentDate != ''"> |
| | | and t.last_payment_date= #{lastPaymentDate} |
| | | </if> |
| | | <if test="readingType !=null and readingType != ''"> |
| | | and t.reading_type= #{readingType} |
| | | </if> |
| | | <if test="multiplyingFactor !=null and multiplyingFactor != ''"> |
| | | and t.multiplying_factor= #{multiplyingFactor} |
| | | </if> |
| | | <if test="unitPrice !=null and unitPrice != ''"> |
| | | and t.unit_price= #{unitPrice} |
| | | </if> |
| | | <if test="invoiceAmount !=null and invoiceAmount != ''"> |
| | | and t.invoice_amount= #{invoiceAmount} |
| | | </if> |
| | | <if test="amountDifference !=null and amountDifference != ''"> |
| | | and t.amount_difference= #{amountDifference} |
| | | </if> |
| | | <if test="autoDeduction !=null and autoDeduction != ''"> |
| | | and t.auto_deduction= #{autoDeduction} |
| | | </if> |
| | | <if test="remark2 !=null and remark2 != ''"> |
| | | and t.remark2= #{remark2} |
| | | </if> |
| | | <if test="address !=null and address != ''"> |
| | | and t.address= #{address} |
| | | </if> |
| | | <if test="writeTime !=null and writeTime != ''"> |
| | | and t.write_time= #{writeTime} |
| | | </if> |
| | | <if test="writer !=null and writer != ''"> |
| | | and t.writer= #{writer} |
| | | </if> |
| | | <if test="checkApplyCompanyName !=null and checkApplyCompanyName != ''"> |
| | | and t.check_apply_company_name= #{checkApplyCompanyName} |
| | | </if> |
| | | <if test="checkApplyDeptProject !=null and checkApplyDeptProject != ''"> |
| | | and t.check_apply_dept_project= #{checkApplyDeptProject} |
| | | </if> |
| | | <if test="waterFeePayer !=null and waterFeePayer != ''"> |
| | | and t.water_fee_payer= #{waterFeePayer} |
| | | </if> |
| | | <if test="accountNumber !=null and accountNumber != ''"> |
| | | and t.account_number= #{accountNumber} |
| | | </if> |
| | | <if test="meterReadBookNo !=null and meterReadBookNo != ''"> |
| | | and t.meter_read_book_no= #{meterReadBookNo} |
| | | </if> |
| | | <if test="waterConsumption !=null and waterConsumption != ''"> |
| | | and t.water_consumption= #{waterConsumption} |
| | | </if> |
| | | <if test="sewageTreatmentWater !=null and sewageTreatmentWater != ''"> |
| | | and t.sewage_treatment_water= #{sewageTreatmentWater} |
| | | </if> |
| | | <if test="collectionStandard !=null and collectionStandard != ''"> |
| | | and t.collection_standard= #{collectionStandard} |
| | | </if> |
| | | <if test="arrearsUnpaid !=null and arrearsUnpaid != ''"> |
| | | and t.arrears_unpaid= #{arrearsUnpaid} |
| | | </if> |
| | | <if test="latePaymentFine !=null and latePaymentFine != ''"> |
| | | and t.late_payment_fine= #{latePaymentFine} |
| | | </if> |
| | | <if test="latePaymentSurcharge !=null and latePaymentSurcharge != ''"> |
| | | and t.late_payment_surcharge= #{latePaymentSurcharge} |
| | | </if> |
| | | <if test="feePaymentStatus !=null and feePaymentStatus != ''"> |
| | | and t.fee_payment_status= #{feePaymentStatus} |
| | | </if> |
| | | <if test="carryOverBalance !=null and carryOverBalance != ''"> |
| | | and t.carry_over_balance= #{carryOverBalance} |
| | | </if> |
| | | <if test="totalPayableAmount !=null and totalPayableAmount != ''"> |
| | | and t.total_payable_amount= #{totalPayableAmount} |
| | | </if> |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | |
| | | </if> |
| | | <if test="objType !=null and objType != ''"> |
| | | , t.obj_type= #{objType} |
| | | </if> |
| | | <!-- 新字段修改逻辑 --> |
| | | <if test="powerSupplyBureau !=null and powerSupplyBureau != ''"> |
| | | , t.power_supply_bureau= #{powerSupplyBureau} |
| | | </if> |
| | | <if test="householdName !=null and householdName != ''"> |
| | | , t.household_name= #{householdName} |
| | | </if> |
| | | <if test="householdNumber !=null and householdNumber != ''"> |
| | | , t.household_number= #{householdNumber} |
| | | </if> |
| | | <if test="electricMeterId !=null and electricMeterId != ''"> |
| | | , t.electric_meter_id= #{electricMeterId} |
| | | </if> |
| | | <if test="handler !=null and handler != ''"> |
| | | , t.handler= #{handler} |
| | | </if> |
| | | <if test="isTransferred !=null and isTransferred != ''"> |
| | | , t.is_transferred= #{isTransferred} |
| | | </if> |
| | | <if test="companyNameAfterTransfer !=null and companyNameAfterTransfer != ''"> |
| | | , t.company_name_after_transfer= #{companyNameAfterTransfer} |
| | | </if> |
| | | <if test="transferDate !=null and transferDate != ''"> |
| | | , t.transfer_date= #{transferDate} |
| | | </if> |
| | | <if test="correspondingHouseholdCount !=null and correspondingHouseholdCount != ''"> |
| | | , t.corresponding_household_count= #{correspondingHouseholdCount} |
| | | </if> |
| | | <if test="lastPaymentDate !=null and lastPaymentDate != ''"> |
| | | , t.last_payment_date= #{lastPaymentDate} |
| | | </if> |
| | | <if test="readingType !=null and readingType != ''"> |
| | | , t.reading_type= #{readingType} |
| | | </if> |
| | | <if test="multiplyingFactor !=null and multiplyingFactor != ''"> |
| | | , t.multiplying_factor= #{multiplyingFactor} |
| | | </if> |
| | | <if test="unitPrice !=null and unitPrice != ''"> |
| | | , t.unit_price= #{unitPrice} |
| | | </if> |
| | | <if test="invoiceAmount !=null and invoiceAmount != ''"> |
| | | , t.invoice_amount= #{invoiceAmount} |
| | | </if> |
| | | <if test="amountDifference !=null and amountDifference != ''"> |
| | | , t.amount_difference= #{amountDifference} |
| | | </if> |
| | | <if test="autoDeduction !=null and autoDeduction != ''"> |
| | | , t.auto_deduction= #{autoDeduction} |
| | | </if> |
| | | <if test="remark2 !=null and remark2 != ''"> |
| | | , t.remark2= #{remark2} |
| | | </if> |
| | | <if test="address !=null and address != ''"> |
| | | , t.address= #{address} |
| | | </if> |
| | | <if test="writeTime !=null and writeTime != ''"> |
| | | , t.write_time= #{writeTime} |
| | | </if> |
| | | <if test="writer !=null and writer != ''"> |
| | | , t.writer= #{writer} |
| | | </if> |
| | | <if test="checkApplyCompanyName !=null and checkApplyCompanyName != ''"> |
| | | , t.check_apply_company_name= #{checkApplyCompanyName} |
| | | </if> |
| | | <if test="checkApplyDeptProject !=null and checkApplyDeptProject != ''"> |
| | | , t.check_apply_dept_project= #{checkApplyDeptProject} |
| | | </if> |
| | | <if test="waterFeePayer !=null and waterFeePayer != ''"> |
| | | , t.water_fee_payer= #{waterFeePayer} |
| | | </if> |
| | | <if test="accountNumber !=null and accountNumber != ''"> |
| | | , t.account_number= #{accountNumber} |
| | | </if> |
| | | <if test="meterReadBookNo !=null and meterReadBookNo != ''"> |
| | | , t.meter_read_book_no= #{meterReadBookNo} |
| | | </if> |
| | | <if test="waterConsumption !=null and waterConsumption != ''"> |
| | | , t.water_consumption= #{waterConsumption} |
| | | </if> |
| | | <if test="sewageTreatmentWater !=null and sewageTreatmentWater != ''"> |
| | | , t.sewage_treatment_water= #{sewageTreatmentWater} |
| | | </if> |
| | | <if test="collectionStandard !=null and collectionStandard != ''"> |
| | | , t.collection_standard= #{collectionStandard} |
| | | </if> |
| | | <if test="arrearsUnpaid !=null and arrearsUnpaid != ''"> |
| | | , t.arrears_unpaid= #{arrearsUnpaid} |
| | | </if> |
| | | <if test="latePaymentFine !=null and latePaymentFine != ''"> |
| | | , t.late_payment_fine= #{latePaymentFine} |
| | | </if> |
| | | <if test="latePaymentSurcharge !=null and latePaymentSurcharge != ''"> |
| | | , t.late_payment_surcharge= #{latePaymentSurcharge} |
| | | </if> |
| | | <if test="feePaymentStatus !=null and feePaymentStatus != ''"> |
| | | , t.fee_payment_status= #{feePaymentStatus} |
| | | </if> |
| | | <if test="carryOverBalance !=null and carryOverBalance != ''"> |
| | | , t.carry_over_balance= #{carryOverBalance} |
| | | </if> |
| | | <if test="totalPayableAmount !=null and totalPayableAmount != ''"> |
| | | , t.total_payable_amount= #{totalPayableAmount} |
| | | </if> |
| | | where 1=1 |
| | | <if test="waterId !=null and waterId != ''"> |
| | |
| | | <if test="objType !=null and objType != ''"> |
| | | and t.obj_type= #{objType} |
| | | </if> |
| | | <!-- 新字段数量查询条件 --> |
| | | <if test="powerSupplyBureau !=null and powerSupplyBureau != ''"> |
| | | and t.power_supply_bureau= #{powerSupplyBureau} |
| | | </if> |
| | | <if test="householdName !=null and householdName != ''"> |
| | | and t.household_name= #{householdName} |
| | | </if> |
| | | <if test="householdNumber !=null and householdNumber != ''"> |
| | | and t.household_number= #{householdNumber} |
| | | </if> |
| | | <if test="electricMeterId !=null and electricMeterId != ''"> |
| | | and t.electric_meter_id= #{electricMeterId} |
| | | </if> |
| | | <if test="handler !=null and handler != ''"> |
| | | and t.handler= #{handler} |
| | | </if> |
| | | <if test="isTransferred !=null and isTransferred != ''"> |
| | | and t.is_transferred= #{isTransferred} |
| | | </if> |
| | | <if test="companyNameAfterTransfer !=null and companyNameAfterTransfer != ''"> |
| | | and t.company_name_after_transfer= #{companyNameAfterTransfer} |
| | | </if> |
| | | <if test="transferDate !=null and transferDate != ''"> |
| | | and t.transfer_date= #{transferDate} |
| | | </if> |
| | | <if test="correspondingHouseholdCount !=null and correspondingHouseholdCount != ''"> |
| | | and t.corresponding_household_count= #{correspondingHouseholdCount} |
| | | </if> |
| | | <if test="lastPaymentDate !=null and lastPaymentDate != ''"> |
| | | and t.last_payment_date= #{lastPaymentDate} |
| | | </if> |
| | | <if test="readingType !=null and readingType != ''"> |
| | | and t.reading_type= #{readingType} |
| | | </if> |
| | | <if test="multiplyingFactor !=null and multiplyingFactor != ''"> |
| | | and t.multiplying_factor= #{multiplyingFactor} |
| | | </if> |
| | | <if test="unitPrice !=null and unitPrice != ''"> |
| | | and t.unit_price= #{unitPrice} |
| | | </if> |
| | | <if test="invoiceAmount !=null and invoiceAmount != ''"> |
| | | and t.invoice_amount= #{invoiceAmount} |
| | | </if> |
| | | <if test="amountDifference !=null and amountDifference != ''"> |
| | | and t.amount_difference= #{amountDifference} |
| | | </if> |
| | | <if test="autoDeduction !=null and autoDeduction != ''"> |
| | | and t.auto_deduction= #{autoDeduction} |
| | | </if> |
| | | <if test="remark2 !=null and remark2 != ''"> |
| | | and t.remark2= #{remark2} |
| | | </if> |
| | | <if test="address !=null and address != ''"> |
| | | and t.address= #{address} |
| | | </if> |
| | | <if test="writeTime !=null and writeTime != ''"> |
| | | and t.write_time= #{writeTime} |
| | | </if> |
| | | <if test="writer !=null and writer != ''"> |
| | | and t.writer= #{writer} |
| | | </if> |
| | | <if test="checkApplyCompanyName !=null and checkApplyCompanyName != ''"> |
| | | and t.check_apply_company_name= #{checkApplyCompanyName} |
| | | </if> |
| | | <if test="checkApplyDeptProject !=null and checkApplyDeptProject != ''"> |
| | | and t.check_apply_dept_project= #{checkApplyDeptProject} |
| | | </if> |
| | | <if test="waterFeePayer !=null and waterFeePayer != ''"> |
| | | and t.water_fee_payer= #{waterFeePayer} |
| | | </if> |
| | | <if test="accountNumber !=null and accountNumber != ''"> |
| | | and t.account_number= #{accountNumber} |
| | | </if> |
| | | <if test="meterReadBookNo !=null and meterReadBookNo != ''"> |
| | | and t.meter_read_book_no= #{meterReadBookNo} |
| | | </if> |
| | | <if test="waterConsumption !=null and waterConsumption != ''"> |
| | | and t.water_consumption= #{waterConsumption} |
| | | </if> |
| | | <if test="sewageTreatmentWater !=null and sewageTreatmentWater != ''"> |
| | | and t.sewage_treatment_water= #{sewageTreatmentWater} |
| | | </if> |
| | | <if test="collectionStandard !=null and collectionStandard != ''"> |
| | | and t.collection_standard= #{collectionStandard} |
| | | </if> |
| | | <if test="arrearsUnpaid !=null and arrearsUnpaid != ''"> |
| | | and t.arrears_unpaid= #{arrearsUnpaid} |
| | | </if> |
| | | <if test="latePaymentFine !=null and latePaymentFine != ''"> |
| | | and t.late_payment_fine= #{latePaymentFine} |
| | | </if> |
| | | <if test="latePaymentSurcharge !=null and latePaymentSurcharge != ''"> |
| | | and t.late_payment_surcharge= #{latePaymentSurcharge} |
| | | </if> |
| | | <if test="feePaymentStatus !=null and feePaymentStatus != ''"> |
| | | and t.fee_payment_status= #{feePaymentStatus} |
| | | </if> |
| | | <if test="carryOverBalance !=null and carryOverBalance != ''"> |
| | | and t.carry_over_balance= #{carryOverBalance} |
| | | </if> |
| | | <if test="totalPayableAmount !=null and totalPayableAmount != ''"> |
| | | and t.total_payable_amount= #{totalPayableAmount} |
| | | </if> |
| | | </select> |
| | | |
| | | <update id="deleteMeterWaterByBatch" parameterType="Map"> |
| | |
| | | t.fee_id = pf.fee_id |
| | | and pf.batch_id = #{batchId} |
| | | and pf.community_id = #{communityId} |
| | | |
| | | </update> |
| | | </mapper> |
| | | </mapper> |