शिपमेंट_टाइप एक रूबी ऑब्जेक्ट है, आप एक स्ट्रिंग भेजना चाहते हैं।
यदि आपको संबंध आयात करने की आवश्यकता है, तो 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
विशेषताएँ।
आप अन्य रिश्तों के समान कुछ करेंगे।