Compare commits

...

2 commits

Author SHA1 Message Date
cc2065f590 add to_s.gsub2 2023-02-20 23:17:26 +01:00
a24947edb7 add to_s.gsub 2023-02-20 23:16:00 +01:00

View file

@ -76,7 +76,7 @@ module FoodsoftArticleImport
unless row[37].nil? && row[65].nil? && row[66].nil? unless row[37].nil? && row[65].nil? && row[66].nil?
price_per = row[66].gsub(',', '.').to_f price_per = row[66].gsub(',', '.').to_f
price = row[37].gsub(',', '.').to_f price = row[37].gsub(',', '.').to_f
article.merge!(:price_per => (price_per * price).to_s) article.merge!(:price_per => (price_per * price).to_s.gsub('.', ','))
article.merge!(:unit_symbol => row[65] ) article.merge!(:unit_symbol => row[65] )
end end