我有一个电子表格,结构如下:
| STATUS | WORKFLOW. | ZAHLUNG. |
| -------- | -------------- | -------------- |
|ACTIVE | 1 | |
|AFTERCOURT| | 1 |
我的下一步是将解析后的数据转换为 Key : Value 对的哈希值,如下所示:
MAP = {
active: 'workflow',
aftercourt: 'zahlung'
....
}
但我想不出将它们联系在一起的最佳方式。任何正确方向的指针将不胜感激。
我当前的代码
module Ccenter
module Utils
module ZendeskCustomFields
class UpdateStatusGroup
require 'rubyXL'
attr_reader :workbook
def initialize
@workbook = RubyXL::Parser.parse('app/assets/files/statusgroups.xlsx')
end
def get_data
worksheet = workbook[0]
data = worksheet
end
end
end
end
end