Commit 4a426605 by Ivan Lan

fix: fix import export workhook

parent 179e162b
......@@ -48,7 +48,9 @@ module TalltyImportExport
end
def export_workbook(workbook, **options)
TalltyImportExport::Export.new(@klass).export_workbook(workbook, [], **options)
export_instance = TalltyImportExport::Export.new(@klass)
export_instance.process_options(options.symbolize_keys)
export_instance.export_workbook(workbook, [], **options.symbolize_keys)
end
def exchange_to_ids(xlsx_file, associations, **options)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment