Lô hàng_type là một đối tượng ruby, bạn muốn gửi một chuỗi.
Nếu bạn cần nhập các mối quan hệ, hãy thêm các phương thức trên Port
mô hình như vậy
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
Sau đó, trong CSV, bạn sẽ gửi shipment_type_name
và country_country_code
thuộc tính.
Bạn sẽ làm điều gì đó tương tự với các mối quan hệ khác.