Class: Oddb2xml::MigelExtractor
- Defined in:
- lib/oddb2xml/extractor.rb
Instance Attribute Summary
Attributes inherited from Extractor
Instance Method Summary collapse
-
#initialize(bin) ⇒ MigelExtractor
constructor
A new instance of MigelExtractor.
- #to_hash ⇒ Object
Constructor Details
#initialize(bin) ⇒ MigelExtractor
Returns a new instance of MigelExtractor.
365 366 367 368 369 |
# File 'lib/oddb2xml/extractor.rb', line 365 def initialize(bin) Oddb2xml.log("MigelExtractor #{io} #{File.size(io)} bytes") book = Spreadsheet.open(io, "rb") @sheet = book.worksheet(0) end |
Instance Method Details
#to_hash ⇒ Object
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'lib/oddb2xml/extractor.rb', line 371 def to_hash data = {} @sheet.each_with_index do |row, i| next if i.zero? phar = row[1] next if phar == 0 ean13 = row[0] ean13 = phar unless ean13.to_s.length == 13 data[ean] = { refdata: true, ean13: ean13, pharmacode: phar, desc_de: row[3], desc_fr: row[4], quantity: row[5], # quantity company_name: row[6], company_ean: row[7], data_origin: "migel" } data end data end |