@ -362,13 +362,13 @@ class BulkUpload::Lettings::Year2023::RowParser
on::after_log
validates:field_46,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 1 must be a number or the letter R"},on::after_log
validates:field_52,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 2 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_56,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 3 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_60,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 4 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_64,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 5 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_68,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 6 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_72,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 7 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_76,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 8 must be a number or the letter R"},allow_blank:true,on::after_log
validates:field_52,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 2 must be a number or the letter R"},on::after_log,if:proc{details_known?(2).zero?}
validates:field_56,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 3 must be a number or the letter R"},on::after_log,if:proc{details_known?(3).zero?}
validates:field_60,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 4 must be a number or the letter R"},on::after_log,if:proc{details_known?(4).zero?}
validates:field_64,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 5 must be a number or the letter R"},on::after_log,if:proc{details_known?(5).zero?}
validates:field_68,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 6 must be a number or the letter R"},on::after_log,if:proc{details_known?(6).zero?}
validates:field_72,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 7 must be a number or the letter R"},on::after_log,if:proc{details_known?(7).zero?}
validates:field_76,format:{with:/\A\d{1,3}\z|\AR\z/,message:"Age of person 8 must be a number or the letter R"},on::after_log,if:proc{details_known?(8).zero?}