Fix import bug.

This commit is contained in:
BoHung Chiu 2021-07-16 16:17:32 +08:00
parent 005f221b99
commit 8503a2b85c
1 changed files with 14 additions and 0 deletions

View File

@ -65,42 +65,49 @@ module Admin::EventNewsHelper
anns.remote_image_url = val
when 9
value["en"] = val
anns.image_description_translations = value
when 10
value["zh_tw"] = val
anns.image_description_translations = value
value = {}
when 11
value["en"] = val
anns.title_translations = value
when 12
value["zh_tw"] = val
anns.title_translations = value
value = {}
when 13
value["en"] = val
anns.speaker_translations = value
when 14
value["zh_tw"] = val
anns.speaker_translations = value
value = {}
when 15
value["en"] = val
anns.host_translations = value
when 16
value["zh_tw"] = val
anns.host_translations = value
value = {}
when 17
value["en"] = val
anns.subtitle_translations = value
when 18
value["zh_tw"] = val
anns.subtitle_translations = value
value = {}
when 19
value["en"] = val
anns.text_translations = value
when 20
value["zh_tw"] = val
anns.text_translations = value
value = {}
when 21
value["en"] = val
anns.notes_translations = value
when 22
value["zh_tw"] = val
anns.notes_translations = value
@ -130,6 +137,13 @@ module Admin::EventNewsHelper
bf.event_news_id = anns.id
bf.save
end
when 31
value["en"] = val
anns.place_translations = value
when 32
value["zh_tw"] = val
anns.place_translations = value
value = {}
end
end
anns.create_user_id = current_user.id.to_s