Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
343 B

class BulkUploadController < ApplicationController
XLS = "application/vnd.ms-excel".freeze
def show
render "case_logs/bulk_upload"
end
def process_bulk_upload
if params["case_log_bulk_upload"].content_type == XLS
xlsx = Roo::Spreadsheet.open(params["case_log_bulk_upload"].tempfile, extension: :xlsx)
end
end
end