add price per and unit_symbol to article
This commit is contained in:
parent
f1cd4de3e6
commit
249d232e0d
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ module FoodsoftArticleImport
|
||||||
# article.merge!(:scale_quantity => row[40], :scale_price => row[41]) unless row[40].nil? or row[41].nil?
|
# article.merge!(:scale_quantity => row[40], :scale_price => row[41]) unless row[40].nil? or row[41].nil?
|
||||||
|
|
||||||
unless row[37].nil? && row[65].nil? && row[66].nil?
|
unless row[37].nil? && row[65].nil? && row[66].nil?
|
||||||
article.merge!(:scale_unit_price => row[66].to_f * row[37].to_f)
|
article.merge!(:price_per => row[66].to_f * row[37].to_f)
|
||||||
article.merge!(:scale_unit => row[65] )
|
article.merge!(:unit_symbol => row[65] )
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue