diff --git a/app/services/bulk_upload/lettings/row_parser.rb b/app/services/bulk_upload/lettings/row_parser.rb index 677f209a6..c36828c3b 100644 --- a/app/services/bulk_upload/lettings/row_parser.rb +++ b/app/services/bulk_upload/lettings/row_parser.rb @@ -321,6 +321,7 @@ private period: %i[field_79], brent: %i[field_80], + tcharge: %i[field_84], chcharge: %i[field_85], household_charge: %i[field_86], hbrentshortfall: %i[field_87], @@ -513,6 +514,7 @@ private attributes["period"] = field_79 attributes["brent"] = field_80 + attributes["tcharge"] = field_84 attributes["chcharge"] = field_85 attributes["household_charge"] = field_86 attributes["hbrentshortfall"] = field_87 diff --git a/spec/services/bulk_upload/lettings/row_parser_spec.rb b/spec/services/bulk_upload/lettings/row_parser_spec.rb index 355097264..dbe298da7 100644 --- a/spec/services/bulk_upload/lettings/row_parser_spec.rb +++ b/spec/services/bulk_upload/lettings/row_parser_spec.rb @@ -589,5 +589,13 @@ RSpec.describe BulkUpload::Lettings::RowParser do expect(parser.log.chcharge).to eq(123.45) end end + + describe "#tcharge" do + let(:attributes) { { bulk_upload:, field_84: "123.45" } } + + it "sets value given" do + expect(parser.log.tcharge).to eq(123.45) + end + end end end