|
@@ -516,8 +516,8 @@ class ReportPush(object):
|
|
|
pass
|
|
|
# 2: 项目数据排行榜
|
|
|
house_with_brand_data = self.house_with_brand(xcx_top_data_part, brand_top_data_part)
|
|
|
- for index, x in enumerate(house_with_brand_data):
|
|
|
- if x[2] in house_ids or x[1] in brand_id_list:
|
|
|
+ for x in house_with_brand_data:
|
|
|
+ if x[2] in house_ids:
|
|
|
result_data_2.append(x)
|
|
|
|
|
|
# 3: 项目历史累计总数
|