Commit 96cd9575 authored by Quxl's avatar Quxl

x

parent e62ab0c4
...@@ -118,8 +118,8 @@ public class ExportServiceImpl implements ExportService { ...@@ -118,8 +118,8 @@ public class ExportServiceImpl implements ExportService {
map.put("film_no", filmNo == null ? null : StringUtil.formatLength(filmNo.toString(), "0000")); map.put("film_no", filmNo == null ? null : StringUtil.formatLength(filmNo.toString(), "0000"));
map.put("film_country_cn", countryMap.get(map.get("film_country"))); map.put("film_country_cn", countryMap.get(map.get("film_country")));
map.put("co_production_country_cn", countryMap.get(map.get("co_production_country"))); map.put("co_production_country_cn", countryMap.get(map.get("co_production_country")));
map.put("dialogue_lang_cn", countryMap.get(map.get("dialogue_lang"))); map.put("dialogue_lang_cn", languageMap.get(map.get("dialogue_lang")));
map.put("subtitle_lang_cn", countryMap.get(map.get("subtitle_lang"))); map.put("subtitle_lang_cn", languageMap.get(map.get("subtitle_lang")));
map.put("film_type_name", ExportConstant.filmTypes.get(map.get("film_type_name"))); map.put("film_type_name", ExportConstant.filmTypes.get(map.get("film_type_name")));
map.put("film_type_name_short", ExportConstant.filmShortTypes.get(map.get("film_type_name_short"))); map.put("film_type_name_short", ExportConstant.filmShortTypes.get(map.get("film_type_name_short")));
map.put("film_medium", ExportConstant.filmMedium.get(map.get("film_medium"))); map.put("film_medium", ExportConstant.filmMedium.get(map.get("film_medium")));
...@@ -269,8 +269,8 @@ public class ExportServiceImpl implements ExportService { ...@@ -269,8 +269,8 @@ public class ExportServiceImpl implements ExportService {
map.put("film_no", filmNo == null ? null : StringUtil.formatLength(filmNo.toString(), "0000")); map.put("film_no", filmNo == null ? null : StringUtil.formatLength(filmNo.toString(), "0000"));
map.put("film_country_cn", countryMap.get(map.get("film_country"))); map.put("film_country_cn", countryMap.get(map.get("film_country")));
map.put("co_production_country_cn", countryMap.get(map.get("co_production_country"))); map.put("co_production_country_cn", countryMap.get(map.get("co_production_country")));
map.put("dialogue_lang_cn", countryMap.get(map.get("dialogue_lang"))); map.put("dialogue_lang_cn", languageMap.get(map.get("dialogue_lang")));
map.put("subtitle_lang_cn", countryMap.get(map.get("subtitle_lang"))); map.put("subtitle_lang_cn", languageMap.get(map.get("subtitle_lang")));
map.put("film_type_name", ExportConstant.filmTypes.get(map.get("film_type_name"))); map.put("film_type_name", ExportConstant.filmTypes.get(map.get("film_type_name")));
map.put("film_type_name_short", ExportConstant.filmShortTypes.get(map.get("film_type_name_short"))); map.put("film_type_name_short", ExportConstant.filmShortTypes.get(map.get("film_type_name_short")));
map.put("film_medium", ExportConstant.filmMedium.get(String.valueOf(map.get("film_medium")))); map.put("film_medium", ExportConstant.filmMedium.get(String.valueOf(map.get("film_medium"))));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment