shipment_type е ruby обект, искате да изпратите низ.
Ако трябва да импортирате релации, добавете методи в Port
такъв модел
class Port < ApplicationRecord
def shipment_type_name
shipment_type.try(:name)
end
def shipment_type_name=(name)
self.shipment_type = ShipmentType.where(:name => name).first_or_create
end
def country_country_code
country.try(:country_code)
end
def country_country_code=(code)
self.country = Country.where(:country_code => code).first
end
end
След това в CSV трябва да изпратите shipment_type_name
и country_country_code
атрибути.
Бихте направили нещо подобно с други взаимоотношения.