foodsoft/app/lib/foodsoft_file.rb

26 lines
858 B
Ruby
Raw Permalink Normal View History

# Foodsoft-file import
class FoodsoftFile
2009-01-06 11:49:19 +01:00
# parses a string from a foodsoft-file
# returns two arrays with articles and outlisted_articles
# the parsed article is a simple hash
def self.parse(file, options = {})
SpreadsheetFile.parse file, options do |row, row_index|
next if row[2].blank?
article = { order_number: row[1],
name: row[2],
note: row[3],
manufacturer: row[4],
origin: row[5],
unit: row[6],
price: row[7],
tax: row[8],
deposit: (row[9].nil? ? '0' : row[9]),
unit_quantity: row[10],
article_category: row[13] }
status = row[0] && row[0].strip.downcase == 'x' ? :outlisted : nil
yield status, article, row_index
2009-01-06 11:49:19 +01:00
end
end
end