Skip to content

Commit

Permalink
Split and join the result in payments file
Browse files Browse the repository at this point in the history
  • Loading branch information
pskl committed Feb 19, 2025
1 parent ffbe78d commit 07be011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/services/asp/mappers/adresse/indu_etranger_mapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def bureaudistribetranger
end

def voiepointgeoetranger
student.address_line1
student.address_line1.split(" | ").join(" ")
end

def districtetranger
Expand Down
2 changes: 1 addition & 1 deletion app/services/asp/mappers/adresse/indu_france_mapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Mappers
module Adresse
class InduFranceMapper < FranceMapper
def pointremise
student.address_line1
student.address_line1.split(" | ").join(" ")
end

def cpltdistribution
Expand Down

0 comments on commit 07be011

Please sign in to comment.