預算 | 2014年院線預算 | 影城(多選) | 北京CBD影城 | 查詢 | ||
科目 | 蚌埠萬達廣場店 | 北京CBD影城 | ||||
營業收入 | 1 | 1 | ||||
票房收入 | 1 | 1 | ||||
賣品收入 | 0 | 0 | ||||
逾期收入 | 0 | 0 | ||||
廣告收入 | 0 | 0 | ||||
映前廣告 | 0 | 0 | ||||
LCD廣告 | 0 | 0 | ||||
陣地收入 | 0 | 0 | ||||
IMAX廣告收入 | 0 | 0 | ||||
其餘廣告收入 | 0 | 0 | ||||
其餘收入 | 0 | 0 | ||||
租賃收入 | 0 | 0 | ||||
噴繪費收入 | 0 | 0 | ||||
卡費收入 | 0 | 0 | ||||
影片返點獎勵收入 | 0 | 0 | ||||
IMAX冠名費收入 | 0 | 0 | ||||
其它冠名費收入 | 0 | 0 | ||||
贊助費 | 0 | |||||
RealD廣告贊助費 | 0 | |||||
萬達自有媒體收入 | 0 | |||||
其它(其餘收入) | 0 | |||||
變更成本 | 0 | |||||
票房成本 | 0 | |||||
賣品成本 | 0 | |||||
廣告成本 | 0 | |||||
其餘成本 | 0 | |||||
營業稅金及附加(不含專資) | 0 | |||||
電影專資 | 0 | |||||
變更費用 | 0 | |||||
影院分紅租金 | 0 | |||||
IMAX設備租金 | 0 | |||||
固定費用 | 0 | |||||
影院固定租金 | 0 | |||||
職工薪酬 | 0 | |||||
折舊攤銷費 | 0 | |||||
辦公房屋租金及物業費 | 0 |
List<HashMap> list_temp = new ArrayList<HashMap>();
List listSubject = hrSalaryReportDetail.removeDuplicateWithSubject(allCinema);
List listOrg = hrSalaryReportDetail.removeDuplicatWithOrg(allCinema);
HashMap map = new HashMap();
for (int k = 0; k < allCinema.size(); k++) {
// String org_id = listOrg.get(i).toString().split("_")[0];
Object[] objLIst = (Object[]) allCinema.get(k);// 結果集
// if(objLIst[2].toString().equals(org_id)&&objLIst[1].toString().equals(listSubject.get(j).toString())){//subjectid與orgid對應
map.put(objLIst[2].toString() + "_" + objLIst[3].toString(),
objLIst[6].toString());// subjectid與orgid對應
// }
}spa
for (int j = 0; j < listSubject.size(); j++) {
String subject_id = listSubject.get(j).toString().split("_")[0];
String subject_name = listSubject.get(j).toString().split("_")[1];
String subject_parent_id = listSubject.get(j).toString().split("_")[2];
HashMap sub_map = new HashMap();
sub_map.put("subjectId", subject_id);
sub_map.put("parentSubjectId", subject_parent_id);
sub_map.put("subject_name", subject_name);
for (int i = 0; i < listOrg.size(); i++) {
String org_id = listOrg.get(i).toString().split("_")[0];
String str_key = subject_id + "_" + org_id;
String str_value = "";
if (map.containsKey(str_key)) {
str_value = map.get(str_key).toString();
}
sub_map.put(org_id, str_value);
}
list_temp.add(sub_map);ci