Browse Source

feat: ignore household_charge for general needs logs

pull/2123/head
natdeanlewissoftwire 2 years ago
parent
commit
a4184440db
  1. 2
      app/services/bulk_upload/lettings/year2023/row_parser.rb

2
app/services/bulk_upload/lettings/year2023/row_parser.rb

@ -1187,7 +1187,7 @@ private
attributes["tcharge"] = field_132 attributes["tcharge"] = field_132
attributes["chcharge"] = field_127 attributes["chcharge"] = field_127
attributes["is_carehome"] = field_127.present? ? 1 : 0 attributes["is_carehome"] = field_127.present? ? 1 : 0
attributes["household_charge"] = field_125 attributes["household_charge"] = supported_housing? ? field_125 : nil
attributes["hbrentshortfall"] = field_133 attributes["hbrentshortfall"] = field_133
attributes["tshortfall_known"] = tshortfall_known attributes["tshortfall_known"] = tshortfall_known
attributes["tshortfall"] = field_134 attributes["tshortfall"] = field_134

Loading…
Cancel
Save