22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# File 'app/sidekiq/income_limits/std_state_import.rb', line 22
def perform
ActiveRecord::Base.transaction do
data = fetch_csv_data
if data
CSV.parse(data, headers: true) do |row|
created = DateTime.strptime(row['CREATED'], '%F %H:%M:%S %z').to_s
updated = DateTime.strptime(row['UPDATED'], '%F %H:%M:%S %z').to_s if row['UPDATED']
std_state = StdState.find_or_initialize_by(id: row['ID'].to_i)
next unless std_state.new_record?
std_state.assign_attributes(
id: row['ID'].to_i,
name: row['NAME'],
postal_name: row['POSTALNAME'],
fips_code: row['FIPSCODE'].to_i,
country_id: row['COUNTRY_ID'].to_i,
version: row['VERSION'].to_i,
created:,
updated:,
created_by: row['CREATEDBY'],
updated_by: row['UPDATEDBY']
)
std_state.save!
end
else
raise 'Failed to fetch CSV data'
end
end
rescue => e
ActiveRecord::Base.rollback_transaction
raise "error: #{e}"
end
|