Commit b56b386d authored by Quxl's avatar Quxl

x

parent d97eddf0
...@@ -583,7 +583,7 @@ public class ExportServiceImpl implements ExportService { ...@@ -583,7 +583,7 @@ public class ExportServiceImpl implements ExportService {
vars.put("6,1", film.getFilm_country()); vars.put("6,1", film.getFilm_country());
vars.put("7,1", film.getCompletion_date()); vars.put("7,1", film.getCompletion_date());
vars.put("8,1", film.getFilm_total_time()); vars.put("8,1", film.getFilm_total_time());
vars.put("9,1", filmExt.getFormat()); vars.put("9,1", ExportConstant.fmtopts.get(String.valueOf(filmExt.getFormat())));
vars.put("11,1", filmExt.getScreenplay()); vars.put("11,1", filmExt.getScreenplay());
vars.put("13,1", filmExt.getDirector_of_photography()); vars.put("13,1", filmExt.getDirector_of_photography());
vars.put("15,1", filmExt.getMusic()); vars.put("15,1", filmExt.getMusic());
...@@ -594,13 +594,13 @@ public class ExportServiceImpl implements ExportService { ...@@ -594,13 +594,13 @@ public class ExportServiceImpl implements ExportService {
vars.put("25,1", filmExt.getCast()); vars.put("25,1", filmExt.getCast());
vars.put("27,1", filmExt.getProduction_en()); vars.put("27,1", filmExt.getProduction_en());
vars.put("29,1", filmExt.getWorld_sales()); vars.put("29,1", filmExt.getWorld_sales());
vars.put("30,1", filmExt.getResolution()); vars.put("30,1", ExportConstant.resolutionopts.get(String.valueOf(filmExt.getResolution())));
vars.put("31,1", filmExt.getAspect_ratio()); vars.put("31,1", ExportConstant.aspectopts.get(String.valueOf(filmExt.getAspect_ratio())));
vars.put("32,1", filmExt.getSound_format()); vars.put("32,1", ExportConstant.soundopts.get(String.valueOf(filmExt.getSound_format())));
vars.put("33,1", filmExt.getFrame_rate()); vars.put("33,1", ExportConstant.frameopts.get(String.valueOf(filmExt.getFrame_rate())));
vars.put("34,1", filmExt.getKdm()); vars.put("34,1", ExportConstant.kdmopts.get(String.valueOf(filmExt.getKdm())));
vars.put("6,3", filmExt.getSynopsis_cn()); vars.put("5,3", filmExt.getSynopsis_cn());
vars.put("12,3", filmExt.getSynopsis_en()); vars.put("12,3", filmExt.getSynopsis_en());
vars.put("20,5", filmExt.getDirector_biography_cn()); vars.put("20,5", filmExt.getDirector_biography_cn());
vars.put("24,5", filmExt.getDirector_biography_en()); vars.put("24,5", filmExt.getDirector_biography_en());
......
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