Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
535 B

desc "Reinfers LA from postcode where it's missing"
task reinfer_local_authority: :environment do
LettingsLog.filter_by_year(2023).where(needstype: 1, la: nil).where.not(postcode_full: nil).find_each do |log|
log.process_postcode_changes!
Rails.logger.info "Invalid lettings log: #{log.id}" unless log.save
end
SalesLog.filter_by_year(2023).where(la: nil).where.not(postcode_full: nil).find_each do |log|
log.process_postcode_changes!
Rails.logger.info "Invalid sales log: #{log.id}" unless log.save
end
end