} else {
return;
}
int index = city.indexOf('-');
if (StringUtil.isEmpty(m_city)) {
StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CITY + key).findOrCreateStatisticsItem(
city.substring(0, index));
tem.setCount(tem.getCount() + total);
} else if (!m_city.equals(city)) {
StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CITY + key).findOrCreateStatisticsItem(
city.substring(index + 1));
tem.setCount(tem.getCount() + total);
}
if (StringUtil.isEmpty(m_channel)) {
StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CHANNEL + key).findOrCreateStatisticsItem(
channel);
tem.setCount(tem.getCount() + total);
}
}
}