Commit 32166f96 authored by Quxl's avatar Quxl

x

parent 4022c3e8
......@@ -103,4 +103,11 @@ public class ExportConstant {
playShanghai.put("1", "人民币");
playShanghai.put("2", "美元");
}
public static final Map<String, String> copyopts = new HashMap<String, String>();
static {
playShanghai.put("1", "安全");
playShanghai.put("2", "不安全");
playShanghai.put("3", "待定");
}
}
......@@ -453,7 +453,8 @@ public class ExportServiceImpl implements ExportService {
map.put("film_medium", ExportConstant.filmMedium.get(String.valueOf(map.get("film_medium"))));
map.put("film_format", ExportConstant.filmFormat.get(String.valueOf(map.get("film_format"))));
map.put("play_shanghai", ExportConstant.playShanghai.get(String.valueOf(map.get("play_shanghai"))));
for(String key: new String[] {"is_viewer_metting", "is_copy_key", "copy_options", "is_important", "is_night"}) {
map.put("copy_options", ExportConstant.copyopts.get(String.valueOf(map.get("copy_options"))));
for(String key: new String[] {"is_viewer_metting", "is_copy_key", "is_important", "is_night"}) {
map.put(key, ExportConstant.YN.get(String.valueOf(map.get(key))));
}
for(String key: new String[] {"charge_show_currency", "charge_key_currency", "charge_copy_currency"}) {
......
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