From e9a086afd467fa21efb5a5e81d54c2cec6169d9e Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Sat, 30 Nov 2019 03:59:00 +0100 Subject: [PATCH 13/13] overhaul of query to table transformation (#38067) * during query obtain dimension id and label if a different projection is defined * use object to materialize query results : Cells, DimensionCell, MeasureCell * handle stringification in the *Cell classes * never ignore NULL dimension's values (it's detected in Visualization.data() and added to the list of dimension members) * sum of columns is only computed if there are more than one column * sum of rows is only computed if there are more than one row * full sum is only computed if there are more thant one column and more than one row * 1 dimension table are computed in the same maner as 2 dimensions tables, no more discrepancies * JSON web-service now use the same base methods table_2d() and table_1d() as the native rendering in bijoe * EngineDimension.members is specialized for bool dimensions (as it's always True/False) --- bijoe/engine.py | 116 +- bijoe/visualization/utils.py | 239 +- bijoe/visualization/views.py | 55 +- tests/fixtures/schema2/tables.json | 7208 +++++++++++++++++++++++----- tests/test_schema1.py | 23 +- 5 files changed, 6257 insertions(+), 1384 deletions(-) diff --git a/bijoe/engine.py b/bijoe/engine.py index 3f01dc5..9cc48c2 100644 --- a/bijoe/engine.py +++ b/bijoe/engine.py @@ -14,12 +14,12 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +import collections import contextlib import logging import itertools import hashlib -import collections import psycopg2 from django.core.cache import cache @@ -31,6 +31,71 @@ psycopg2.extensions.register_type(psycopg2.extensions.UNICODE) psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY) +class DimensionCell(collections.namedtuple('_Cell', ['dimension', 'value', 'value_label'])): + @property + def label(self): + if self.value_label: + return self.value_label + if self.value is None: + return self.dimension.absent_label + elif self.dimension.type == 'bool': + return _('Yes') if self.value else _('No') + else: + return unicode(self.value) + + def __unicode__(self): + return unicode(self.label) + + +class MeasureCell(collections.namedtuple('_Cell', ['measure', 'value'])): + @property + def label(self): + value = self.value + + if self.measure.type == 'percent': + if value is None: + return _('N/A') + else: + try: + return (u'%4.2f' % float(value)).replace('.', ',') + u' %' + except TypeError: + return _('N/A') + elif self.measure.type == 'duration': + if value is None: + return u'0' + else: + s = u'' + if value.days: + s += u'%d jour(s)' % value.days + if value.seconds / 3600: + s += u' %d heure(s)' % (value.seconds / 3600) + if not s: + s = u'moins d\'1 heure' + return s + elif self.measure.type == 'bool': + if value is None: + return _('N/A') + else: + return _('Yes') if value else _('No') + elif self.measure.type == 'integer': + if value is None: + return '0' + else: + return unicode(value) + else: + raise NotImplementedError('unknown type %s' % self.measure.type) + + def __unicode__(self): + return unicode(self.label) + + +class Cells(collections.namedtuple('Cells', ['dimensions', 'measures'])): + def __new__(cls, dimensions=[], measures=[]): + dimensions = list(dimensions) + measures = list(measures) + return super(Cells, cls).__new__(cls, dimensions, measures) + + def quote(s): return '"%s"' % s.replace('"', '\\"') @@ -72,6 +137,9 @@ class EngineDimension(object): def members(self): assert self.type != 'date' + if self.type == 'bool': + return [Member(id=True, label=_('Yes')), Member(id=False, label=_('No'))] + members = cache.get(self.cache_key) if members is not None: return members @@ -110,7 +178,7 @@ class EngineDimension(object): for row in cursor.fetchall(): if row[0] is None: continue - members.append(Member(*row)) + members.append(Member(id=row[0], label=unicode(row[1]))) cache.set(self.cache_key, members, 600) return members @@ -295,11 +363,11 @@ class EngineCube(object): else: where.append(condition) - for dimension_name in drilldown: - dimension = self.dimensions[dimension_name] + for dimension in drilldown: joins.update(dimension.join or []) - projections.append('%s AS %s' % (dimension.value_label or dimension.value, - dimension.name)) + projections.append('%s AS %s' % (dimension.value, dimension.name + '_value')) + if dimension.value_label: + projections.append('%s AS %s' % (dimension.value_label, dimension.name + '_label')) group_by.append(dimension.group_by or dimension.value) order_by.extend(dimension.order_by or [dimension.value]) @@ -307,8 +375,7 @@ class EngineCube(object): if order_value not in group_by: group_by.append(order_value) - for measure_name in measures: - measure = self.get_measure(measure_name) + for measure in measures: if measure.expression not in projections: projections.append(measure.expression + ' AS ' + measure.name) sql = 'SELECT ' + ', '.join(projections) @@ -334,23 +401,32 @@ class EngineCube(object): self.engine.log.debug('%s.%s query filters=%s drilldown=%s measures=%s', self.engine.warehouse.name, self.cube.name, filters, drilldown, measures) - cells = [] - for dimension_name in drilldown: - cells.append(self.dimensions[dimension_name]) - for measure_name in measures: - cells.append(self.measures[measure_name]) with self.engine.get_cursor() as cursor: sql = self.sql_query(filters=filters, drilldown=drilldown, measures=measures, **kwargs) self.engine.log.debug('SQL: %s', sql) cursor.execute(sql) for row in cursor.fetchall(): - yield [{ - 'name': cell.name, - 'label': cell.label, - 'type': cell.type, - 'value': value, - 'kind': 'dimension' if isinstance(cell, EngineDimension) else 'measure', - } for cell, value in zip(cells, row)] + cells = Cells() + j = 0 + for dimension in drilldown: + value = row[j] + if not dimension.value_label: + value_label = None + j += 1 + else: + value_label = row[j + 1] + j += 2 + cells.dimensions.append(DimensionCell( + dimension=dimension, + value=value, + value_label=value_label, + )) + for i, measure in enumerate(measures): + cells.measures.append(MeasureCell( + measure=measure, + value=row[j + i], + )) + yield cells def build_table_expression(self, joins, table_name, other_conditions=None): '''Recursively build the table expression from the join tree, diff --git a/bijoe/visualization/utils.py b/bijoe/visualization/utils.py index 56382d8..0bdab24 100644 --- a/bijoe/visualization/utils.py +++ b/bijoe/visualization/utils.py @@ -20,16 +20,17 @@ import hashlib import datetime import decimal import copy +import collections +from django.core.cache import cache from django.utils.safestring import mark_safe from django.utils.translation import ugettext_lazy as _ from django.utils import six -from django.core.cache import cache from django.http import Http404 from django.conf import settings from ..utils import get_warehouses -from ..engine import Engine +from ..engine import Engine, Member, MeasureCell from .ods import Workbook @@ -146,38 +147,22 @@ class Visualization(object): key = '$'.join(v.encode('utf8') for v in keys) return hashlib.md5(key).hexdigest() - def stringified(self): - data = self.cached() - for row in data: - for cell in row: - value = cell['value'] - if cell['type'] == 'percent': - try: - value = ('%4.2f' % float(value)).replace('.', ',') + u' %' - except: - value = _('Not applicable') - elif value is not None and cell['type'] == 'duration': - s = '' - if value.days: - s += '%d jour(s)' % value.days - if value.seconds / 3600: - s += ' %d heure(s)' % (value.seconds / 3600) - if not s: - s = 'moins d\'1 heure' - value = s - elif value is not None and cell['type'] == 'bool': - value = _('Yes') if value else _('No') - elif value is None and cell['type'] in ('duration', 'integer') and cell['kind'] == 'measure': - value = 0 - elif value is None: - value = _('None') - cell['value'] = value - return data - def data(self): - return self.cube.query(self.filters.items(), - [dim.name for dim in self.drilldown], - [self.measure.name]) + '''Execute aggregation query, list members and check None values in + dimensions. + ''' + rows = list(self.cube.query(self.filters.items(), + self.drilldown, + [self.measure])) + self.members = {dimension: list(dimension.members) for dimension in self.drilldown} + seen_none = set() + for cells in rows: + for cell in cells.dimensions: + if cell.value is None: + if cell.dimension not in seen_none: + self.members[cell.dimension].append(Member(None, cell.dimension.absent_label)) + seen_none.add(cell.dimension) + return rows def cached(self): key = self.key @@ -188,63 +173,102 @@ class Visualization(object): cache.set(key, data) return data + def default_cell(self): + return MeasureCell(measure=self.measure, value=None) + + def table_2d(self): + '''Layout data into 2d tables''' + assert len(self.drilldown) == 2 + + data = self.data() + + x_axis = self.members[self.drilldown_x] + y_axis = self.members[self.drilldown_y] + + grid = collections.defaultdict(self.default_cell) + + for cells in data: + x_id = cells.dimensions[0].value + y_id = cells.dimensions[1].value + grid[(x_id, y_id)] = cells.measures[0] + + return (x_axis, y_axis), grid + + def table_1d(self): + assert len(self.drilldown) == 1 + + data = self.data() + if self.drilldown_x: + axis = self.members[self.drilldown_x] + else: + axis = self.members[self.drilldown_y] + + grid = collections.defaultdict(self.default_cell) + for cells in data: + grid[cells.dimensions[0].value] = cells.measures[0] + return axis, grid + def table(self): table = [] + if len(self.drilldown) == 2: - if self.measure.type == 'integer': - default = 0 - elif self.measure.type == 'duration': - default = '0 s' - elif self.measure.type == 'percent': - default = '0 %' - else: - raise NotImplementedError(self.measure.type) - - x_labels = [x.label for x in self.drilldown_x.members] - y_labels = [y.label for y in self.drilldown_y.members] - used_x_label = set() - used_y_label = set() - - grid = {(x, y): default for x in x_labels for y in y_labels} - - for row in self.stringified(): - x_label = unicode(row[0]['value']) - y_label = unicode(row[1]['value']) - used_x_label.add(x_label) - used_y_label.add(y_label) - grid[(x_label, y_label)] = row[2]['value'] - - table.append([''] + [x for x in x_labels if x in used_x_label]) - for y in y_labels: - if y not in used_y_label: - continue - table.append([y] + [grid[(x, y)] for x in x_labels if x in used_x_label]) - if self.measure.expression.lower().startswith('count('): - # ajout des totaux horizontaux - table[0].append(_('Total')) - for row in table[1:]: - row.append(sum(v or 0 for v in row[1:])) - table.append([_('Total')]) - for i in range(1, len(table[0])): - table[-1].append(sum([ - row[i] or 0 for row in table[1:-1]])) - return table + (x_axis, y_axis), grid = self.table_2d() + + # Only compute sum of cells for count() measures + compute_sums = self.measure.expression.lower().startswith('count(') + compute_lines_sums = compute_sums and len(x_axis) > 1 + compute_columns_sums = compute_sums and len(y_axis) > 1 + compute_global_sum = compute_lines_sums and compute_columns_sums + sums_columns = collections.defaultdict(lambda: 0) + sums_lines = collections.defaultdict(lambda: 0) + sum_table = 0 + + for coord in grid: + value = grid[coord].value + if value is not None: + if compute_columns_sums: + sums_columns[coord[0]] += value + if compute_lines_sums: + sums_lines[coord[1]] += value + if compute_global_sum: + sum_table += value + + table.append([''] + [x.label for x in x_axis]) + # line sums header + if compute_lines_sums: + table[-1].append(_('Total')) + for y in y_axis: + table.append([y.label]) + table[-1].extend(unicode(grid[(x.id, y.id)]) for x in x_axis) + # line sums + if compute_lines_sums: + table[-1].append(sums_lines[y.id]) + # columns sums + if compute_columns_sums: + table.append([_('Total')] + [sums_columns[x.id] for x in x_axis]) + if compute_global_sum: + table[-1].append(sum_table) elif self.drilldown_x: + x_axis, grid = self.table_1d() table.append([self.drilldown_x.label]) table.append([self.measure.label]) - for row in self.stringified(): - table[0].append(row[0]['value']) - table[1].append(row[1]['value']) + for x in x_axis: + table[0].append(x.label) + table[1].append(unicode(grid[x.id])), elif self.drilldown_y: + y_axis, grid = self.table_1d() table.append([self.drilldown_y.label, self.measure.label]) - for row in self.stringified(): + for y in y_axis: table.append([ - row[0]['value'], - row[1]['value'] + y.label, + unicode(grid[y.id]), ]) else: - value = self.stringified()[0][0]['value'] - table.append([self.measure.label, value]) + table.append([self.measure.label, unicode(self.data()[0].measures[0])]) + + for row in table: + for cell in row: + assert cell != 's' return table def javascript(self): @@ -257,32 +281,47 @@ class Visualization(object): def json_data(self): json_data = [] - for row in self.data(): - coords = [] - for cell in row[:len(self.drilldown)]: - coords.append(cell) - measures = [] - for cell in row[len(self.drilldown):]: - if isinstance(cell['value'], decimal.Decimal): - cell['value'] = float(cell['value']) - if isinstance(cell['value'], datetime.timedelta): - cell['value'] = cell['value'].days + cell['value'].seconds / 86400. - measures.append(cell) - json_data.append({'coords': coords, 'measures': measures}) + + def cell_value(cell): + value = cell.value + if isinstance(value, decimal.Decimal): + value = float(value) + if isinstance(value, datetime.timedelta): + value = value.days + value.seconds / 86400. + return value + + if len(self.drilldown) == 2: + (x_axis, y_axis), grid = self.table_2d() + cells = (([x.label, y.label], cell_value(grid[(x.id, y.id)])) for x in x_axis for y in y_axis) + elif len(self.drilldown) == 1: + axis, grid = self.table_1d() + cells = (([x.label], cell_value(grid[x.id])) for x in axis) + else: + raise NotImplementedError + + for coords, value in cells: + json_data.append({ + 'coords': [{'value': coord} for coord in coords], + 'measures': [{'value': value}], + }) + return json_data def ods(self): workbook = Workbook() - full_title = self.title() - - for table in self: - sheet_name = re.sub('[^a-zA-Z ]', '', table.table_title) + for visualization in self: + sheet_name = re.sub('[^a-zA-Z ]', '', visualization.table_title) sheet = workbook.add_sheet(sheet_name) + sheet.write(0, 0, self.title()) - sheet.write(0, 0, full_title) - for j, row in enumerate(table.table()): + for j, row in enumerate(visualization.table()): for i, value in enumerate(row): + if self.measure.type == 'integer': + try: + value = int(value) + except ValueError: + pass sheet.write(j + 1, i, 0 if value is None else value) return workbook @@ -301,15 +340,11 @@ class Visualization(object): def __iter__(self): if self.loop: members = list(self.loop.members) - d = list(self.cube.query(self.filters.items(), [self.loop.name], - [self.measure.name])) - names = [unicode(x[0]['value']) for x in d] - members = [m for m in members if unicode(m.label) in names] for member in members: table = self.copy() table.loop = None table.filters[self.loop.name] = [member.id] - table.table_title = unicode(member.label) + table.table_title = member.label yield table else: self.table_title = self.title() diff --git a/bijoe/visualization/views.py b/bijoe/visualization/views.py index ec9be2c..64b2a52 100644 --- a/bijoe/visualization/views.py +++ b/bijoe/visualization/views.py @@ -256,15 +256,16 @@ class VisualizationGeoJSONView(generics.GenericAPIView): visualization.measure = visualization.cube.measures['geolocation'] drilldown = visualization.drilldown geojson = [] + for row in visualization.data(): properties = {} - for dim in row[:len(drilldown)]: - properties[dim['label']] = dim['value'] + for cell in row[:len(drilldown)]: + properties[cell.label] = unicode(cell) geojson.append({ 'type': 'Feature', 'geometry': { 'type': 'MultiPoint', - 'coordinates': row[len(drilldown)]['value'] or [], + 'coordinates': [unicode(cell) for cell in row[len(drilldown)]] }, 'properties': properties, }) @@ -275,13 +276,14 @@ class VisualizationJSONView(generics.GenericAPIView): permission_classes = () queryset = models.Visualization.objects.all() - def get(self, request, pk, format=None): - def cell_value(cell): - if cell['type'] == 'duration' and cell['value'] is not None: - return cell['value'].total_seconds() - return cell['value'] + if cell.measure.type == 'duration' and cell.value is not None: + return cell.value.total_seconds() + return cell.value + + def labels(axis): + return [x.label.strip() for x in axis] instance = self.get_object() loop = [] @@ -289,37 +291,24 @@ class VisualizationJSONView(generics.GenericAPIView): for visualization in all_visualizations: drilldowns = visualization.drilldown if len(drilldowns) == 2: - x_labels = [x.label for x in visualization.drilldown_x.members] - y_labels = [y.label for y in visualization.drilldown_y.members] - used_x_labels = OrderedDict() - used_y_labels = OrderedDict() - default = 0 - grid = {(x, y): default for x in x_labels for y in y_labels} - - for row in visualization.data(): - x_label = unicode(row[0]['value']) - y_label = unicode(row[1]['value']) - used_x_labels[x_label] = True - used_y_labels[y_label] = True - grid[(x_label, y_label)] = cell_value(row[2]) - - data = [] - for y in used_y_labels.keys(): - data.append([grid[(x, y)] for x in used_x_labels.keys()]) + (x_axis, y_axis), grid = visualization.table_2d() axis = { - 'x_labels': [x.strip() for x in used_x_labels.keys()], - 'y_labels': [x.strip() for x in used_y_labels.keys()] + 'x_labels': labels(x_axis), + 'y_labels': labels(y_axis), } + + data = [] + for y in y_axis: + data.append([cell_value(grid[(x.id, y.id)]) for x in x_axis]) elif len(drilldowns) == 1: - table = list(visualization.data()) - axis_data = [force_text(x[0]['value'] or '').strip() for x in table] - data = [cell_value(x[1]) for x in table] + x_axis, grid = visualization.table_1d() if visualization.drilldown_x: - axis = {'x_labels': axis_data} + axis = {'x_labels': labels(x_axis)} else: - axis = {'y_labels': axis_data} + axis = {'y_labels': labels(x_axis)} + data = [cell_value(grid[x.id]) for x in x_axis] elif len(drilldowns) == 0: - data = cell_value(list(list(visualization.data())[0])[0]) + data = cell_value(visualization.data()[0][0]) axis = {} loop.append({ 'data': data, diff --git a/tests/fixtures/schema2/tables.json b/tests/fixtures/schema2/tables.json index 385631a..e4e0dc7 100644 --- a/tests/fixtures/schema2/tables.json +++ b/tests/fixtures/schema2/tables.json @@ -58532,22 +58532,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -58580,22 +58564,6 @@ "0", "3" ], - [ - "Total", - "0", - "0", - "0", - "0", - "1", - "0", - "0", - "1", - "1", - "0", - "0", - "0", - "3" - ], [ "", "janvier", @@ -58628,22 +58596,6 @@ "0", "5" ], - [ - "Total", - "0", - "0", - "0", - "1", - "0", - "0", - "0", - "1", - "3", - "0", - "0", - "0", - "5" - ], [ "", "janvier", @@ -58676,22 +58628,6 @@ "0", "3" ], - [ - "Total", - "0", - "0", - "0", - "0", - "2", - "1", - "0", - "0", - "0", - "0", - "0", - "0", - "3" - ], [ "", "janvier", @@ -58724,22 +58660,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -58771,22 +58691,6 @@ "0", "0", "0" - ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" ] ], "Renseignement D\u00e9chets - Demandes par Origine et par mois": [ @@ -61968,6 +61872,22 @@ "0", "3" ], + [ + "La redevance sp\u00e9ciale", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Une visite du centre de tri", "0", @@ -61984,6 +61904,38 @@ "0", "1" ], + [ + "La location de bacs pour \u00e9v\u00e9nements", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Un permis de construire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Horaires d\u00e9ch\u00e8teries", "41", @@ -62624,6 +62576,38 @@ "2", "7" ], + [ + "La redevance sp\u00e9ciale", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Une visite du centre de tri", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "La location de bacs pour \u00e9v\u00e9nements", "0", @@ -62640,6 +62624,22 @@ "0", "2" ], + [ + "Un permis de construire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Horaires d\u00e9ch\u00e8teries", "18", @@ -63024,6 +63024,22 @@ "0", "2" ], + [ + "Zones industrielles / Zones d\u2019activit\u00e9s", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "184", @@ -63280,6 +63296,22 @@ "0", "1" ], + [ + "Une visite du centre de tri", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "La location de bacs pour \u00e9v\u00e9nements", "0", @@ -63536,6 +63568,22 @@ "0", "22" ], + [ + "Redevance sp\u00e9ciale", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Permis de construire", "0", @@ -63680,6 +63728,22 @@ "0", "2" ], + [ + "Zones industrielles / Zones d\u2019activit\u00e9s", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "139", @@ -63952,6 +64016,22 @@ "0", "1" ], + [ + "La location de bacs pour \u00e9v\u00e9nements", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Un permis de construire", "0", @@ -64160,6 +64240,22 @@ "0", "3" ], + [ + "Location de bacs pour \u00e9v\u00e9nements", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Localisation point d\u2019apport volontaire", "0", @@ -64192,6 +64288,22 @@ "0", "5" ], + [ + "Permis de construire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Visite du centre de tri", "0", @@ -64320,6 +64432,22 @@ "0", "6" ], + [ + "Zones industrielles / Zones d\u2019activit\u00e9s", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "185", @@ -64537,22 +64665,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -64585,22 +64697,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -64633,22 +64729,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -64680,22 +64760,6 @@ "0", "0", "0" - ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" ] ], "Renseignement Voirie - Demandes par Origine et par mois": [ @@ -87336,22 +87400,6 @@ "0", "1" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "1", - "0", - "0", - "0", - "0", - "1" - ], [ "", "janvier", @@ -87384,22 +87432,6 @@ "0", "3" ], - [ - "Total", - "0", - "0", - "0", - "0", - "1", - "2", - "0", - "0", - "0", - "0", - "0", - "0", - "3" - ], [ "", "janvier", @@ -87432,22 +87464,6 @@ "0", "2" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "1", - "0", - "0", - "0", - "1", - "0", - "0", - "2" - ], [ "", "janvier", @@ -87480,22 +87496,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -87527,22 +87527,6 @@ "0", "0", "0" - ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" ] ], "Signalement D\u00e9chets - Demandes par Commune et par mois": [ @@ -89622,6 +89606,22 @@ "0", "10" ], + [ + "Gardiennage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Erreur de tri", "0", @@ -89702,6 +89702,22 @@ "0", "57" ], + [ + "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "71", @@ -89990,6 +90006,22 @@ "0", "36" ], + [ + "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "73", @@ -90054,6 +90086,22 @@ "18", "957" ], + [ + "Bac incendi\u00e9", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "D\u00e9bordement PAV", "0", @@ -90166,6 +90214,22 @@ "0", "10" ], + [ + "Gardiennage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Erreur de tri", "0", @@ -90454,6 +90518,22 @@ "0", "1" ], + [ + "Gardiennage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Erreur de tri", "1", @@ -90534,6 +90614,22 @@ "0", "45" ], + [ + "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "59", @@ -90552,26 +90648,306 @@ ], [ "", + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", "octobre", "novembre", + "d\u00e9cembre", "Total" ], [ "Autre dysfonctionnement", "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", "1", + "0", "1" ], [ "Bac non collect\u00e9", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", "1", "11", + "0", "12" ], + [ + "Bac incendi\u00e9", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9bordement PAV", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Entretien logette", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Attitude des ripeurs", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Bac cass\u00e9", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9p\u00f4t sauvage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Fr\u00e9quences de collecte", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Fermeture d\u00e9ch\u00e8terie", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Gardiennage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Erreur de tri", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Bac vol\u00e9", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Nuisances sonores", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Attitude des gardiens", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9bordement de point d\u2019apport volontaire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", "1", "12", + "0", "13" ] ], @@ -90730,22 +91106,6 @@ "0", "135" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "5", - "44", - "35", - "43", - "8", - "0", - "0", - "135" - ], [ "", "janvier", @@ -90778,22 +91138,6 @@ "0", "56" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "27", - "16", - "13", - "0", - "0", - "0", - "56" - ], [ "", "janvier", @@ -90826,22 +91170,6 @@ "0", "163" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "2", - "27", - "46", - "77", - "11", - "0", - "0", - "163" - ], [ "", "janvier", @@ -90874,22 +91202,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -90922,22 +91234,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -90970,22 +91266,6 @@ "0", "0" ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], [ "", "janvier", @@ -91017,22 +91297,6 @@ "0", "0", "0" - ], - [ - "Total", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" ] ], "Signalement Voirie - Demandes par Commune et par mois": [ @@ -92612,6 +92876,22 @@ "10", "579" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "2", + "2", + "4" + ], [ "Total", "0", @@ -92624,9 +92904,9 @@ "398", "473", "433", - "493", - "87", - "3437" + "495", + "89", + "3441" ] ], "Signalement Voirie - Demandes par type intervention GRU et par mois": [ @@ -95792,21 +96072,37 @@ "0", "4" ], + [ + "Aucun(e)", + "1037", + "745", + "1215", + "1655", + "2239", + "1940", + "1450", + "1297", + "1703", + "3231", + "1627", + "268", + "18407" + ], [ "Total", - "0", - "0", - "0", - "0", - "0", - "15", - "563", - "739", - "681", - "1198", - "1208", - "156", - "4560" + "1037", + "745", + "1215", + "1655", + "2239", + "1955", + "2013", + "2036", + "2384", + "4429", + "2835", + "424", + "22967" ] ], "Tronche (La) - Signalement D\u00e9ch\u00eats par qualification": [ @@ -112536,325 +112832,386 @@ "", "GAM", "Hors GAM", + "Aucun(e)", "Total" ], [ "Grenoble", "2624", "0", + "0", "2624" ], [ "Meylan", "1075", "0", + "0", "1075" ], [ "Saint-\u00c9gr\u00e8ve", "897", "0", + "0", "897" ], [ "Claix", "541", "0", + "0", "541" ], [ "Saint-Martin-d'H\u00e8res", "876", "0", + "0", "876" ], [ "Le Sappey-en-Chartreuse", "26", "0", + "0", "26" ], [ "Vif", "330", "0", + "0", "330" ], [ "Fontaine", "1107", "0", + "0", "1107" ], [ "Le Gua", "46", "0", + "0", "46" ], [ "La Tronche", "337", "0", + "0", "337" ], [ "Varces-Alli\u00e8res-et-Risset", "200", "0", + "0", "200" ], [ "Gi\u00e8res", "208", "0", + "0", "208" ], [ "Fontanil-Cornillon", "75", "0", + "0", "75" ], [ "\u00c9chirolles", "1022", "0", + "0", "1022" ], [ "Champ-sur-Drac", "127", "0", + "0", "127" ], [ "Seyssinet-Pariset", "231", "0", + "0", "231" ], [ "Sassenage", "464", "0", + "0", "464" ], [ "Dom\u00e8ne", "208", "0", + "0", "208" ], [ "Vizille", "280", "0", + "0", "280" ], [ "Seyssins", "403", "0", + "0", "403" ], [ "Herbeys", "88", "0", + "0", "88" ], [ "Bri\u00e9-et-Angonnes", "101", "0", + "0", "101" ], [ "Eybens", "363", "0", + "0", "363" ], [ "Veurey-Voroize", "87", "0", + "0", "87" ], [ "Saint-Martin-le-Vinoux", "129", "0", + "0", "129" ], [ "Le Pont-de-Claix", "218", "0", + "0", "218" ], [ "Vaulnaveys-le-Haut", "223", "0", + "0", "223" ], [ "Corenc", "230", "0", + "0", "230" ], [ "S\u00e9chilienne", "25", "0", + "0", "25" ], [ "Saint-Paul-de-Varces", "77", "0", + "0", "77" ], [ "Jarrie", "153", "0", + "0", "153" ], [ "Hors GAM", "0", "110", + "0", "110" ], [ "Noyarey", "60", "0", + "0", "60" ], [ "Bresson", "58", "0", + "0", "58" ], [ "Vaulnaveys-le-Bas", "84", "0", + "0", "84" ], [ "Poisat", "65", "0", + "0", "65" ], [ "Champagnier", "62", "0", + "0", "62" ], [ "Proveysieux", "5", "0", + "0", "5" ], [ "Notre-Dame-de-M\u00e9sage", "38", "0", + "0", "38" ], [ "Venon", "10", "0", + "0", "10" ], [ "Saint-Georges-de-Commiers", "36", "0", + "0", "36" ], [ "Notre-Dame-de-Commiers", "18", "0", + "0", "18" ], [ "Murianette", "19", "0", + "0", "19" ], [ "Saint-Pierre-de-M\u00e9sage", "14", "0", + "0", "14" ], [ "Miribel-Lanch\u00e2tre", "4", "0", + "0", "4" ], [ "Mont-Saint-Martin", "4", "0", + "0", "4" ], [ "Montchaboud", "10", "0", + "0", "10" ], [ "Quaix-en-Chartreuse", "6", "0", + "0", "6" ], [ "Saint-Barth\u00e9l\u00e9my-de-S\u00e9chilienne", "6", "0", + "0", "6" ], [ "Sarcenas", "3", "0", + "0", "3" ], [ "Pont-de-Claix (Le)", "1", "0", + "0", "1" ], [ "Sappey-en-Chartreuse (Le)", "0", "0", + "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "793", + "793" + ], [ "Total", "13274", "110", - "13384" + "793", + "14177" ] ], "zz _ Signalements d\u00e9chets - Guichet commune": [ @@ -113627,6 +113984,7 @@ "Nord-Est", "Grand-Sud", "inconnu", + "Aucun(e)", "Total" ], [ @@ -113636,6 +113994,7 @@ "47", "12", "1", + "0", "109" ], [ @@ -113645,6 +114004,7 @@ "547", "131", "12", + "0", "1230" ], [ @@ -113654,6 +114014,7 @@ "0", "4", "0", + "0", "8" ], [ @@ -113663,6 +114024,7 @@ "3", "7", "0", + "0", "26" ], [ @@ -113672,6 +114034,7 @@ "3", "0", "0", + "0", "15" ], [ @@ -113681,6 +114044,7 @@ "1", "7", "0", + "0", "8" ], [ @@ -113690,6 +114054,7 @@ "7", "6", "0", + "0", "28" ], [ @@ -113699,6 +114064,7 @@ "1", "4", "0", + "0", "12" ], [ @@ -113708,6 +114074,7 @@ "2", "0", "0", + "0", "4" ], [ @@ -113717,6 +114084,7 @@ "9", "2", "0", + "0", "26" ], [ @@ -113726,6 +114094,7 @@ "2", "0", "0", + "0", "9" ], [ @@ -113735,6 +114104,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -113744,6 +114114,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -113753,6 +114124,7 @@ "2", "1", "0", + "0", "3" ], [ @@ -113762,6 +114134,7 @@ "4", "0", "0", + "0", "4" ], [ @@ -113771,6 +114144,7 @@ "76", "23", "0", + "0", "200" ], [ @@ -113780,6 +114154,7 @@ "410", "241", "0", + "0", "1494" ], [ @@ -113789,6 +114164,7 @@ "2", "2", "0", + "0", "16" ], [ @@ -113798,6 +114174,7 @@ "7", "2", "0", + "0", "23" ], [ @@ -113807,6 +114184,7 @@ "2", "4", "0", + "0", "20" ], [ @@ -113816,6 +114194,7 @@ "18", "11", "0", + "0", "61" ], [ @@ -113825,6 +114204,7 @@ "10", "7", "0", + "0", "32" ], [ @@ -113834,6 +114214,7 @@ "48", "45", "0", + "0", "186" ], [ @@ -113843,6 +114224,7 @@ "6", "0", "0", + "0", "28" ], [ @@ -113852,6 +114234,7 @@ "8", "1", "0", + "0", "21" ], [ @@ -113861,6 +114244,7 @@ "3", "1", "0", + "0", "18" ], [ @@ -113870,6 +114254,7 @@ "3", "3", "0", + "0", "17" ], [ @@ -113879,6 +114264,7 @@ "8", "4", "0", + "0", "25" ], [ @@ -113888,6 +114274,7 @@ "5", "1", "0", + "0", "18" ], [ @@ -113897,6 +114284,7 @@ "0", "4", "0", + "0", "8" ], [ @@ -113906,6 +114294,17 @@ "1", "0", "0", + "0", + "1" + ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "1", "1" ], [ @@ -113915,7 +114314,8 @@ "1235", "523", "13", - "3653" + "1", + "3654" ] ], "zz_old_Dysfonctionnement D\u00e9chets - Demandes par qualification - ann\u00e9e en cours": [ @@ -130650,6 +131050,7 @@ "Nord-Est", "Grand-Sud", "inconnu", + "Aucun(e)", "Total" ], [ @@ -130659,6 +131060,7 @@ "132", "35", "1", + "0", "352" ], [ @@ -130668,6 +131070,7 @@ "957", "372", "12", + "0", "2724" ], [ @@ -130677,6 +131080,7 @@ "0", "8", "0", + "0", "16" ], [ @@ -130686,6 +131090,7 @@ "3", "7", "0", + "0", "26" ], [ @@ -130695,6 +131100,7 @@ "4", "10", "0", + "0", "25" ], [ @@ -130704,6 +131110,7 @@ "25", "17", "0", + "0", "89" ], [ @@ -130713,6 +131120,7 @@ "11", "11", "0", + "0", "44" ], [ @@ -130722,6 +131130,7 @@ "7", "1", "0", + "0", "22" ], [ @@ -130731,6 +131140,7 @@ "11", "6", "0", + "0", "46" ], [ @@ -130740,6 +131150,7 @@ "10", "1", "0", + "0", "30" ], [ @@ -130749,6 +131160,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -130758,6 +131170,7 @@ "8", "4", "0", + "0", "27" ], [ @@ -130767,6 +131180,7 @@ "5", "2", "0", + "0", "21" ], [ @@ -130776,6 +131190,7 @@ "11", "2", "0", + "0", "27" ], [ @@ -130785,6 +131200,7 @@ "2", "2", "0", + "0", "16" ], [ @@ -130794,6 +131210,7 @@ "48", "45", "0", + "0", "186" ], [ @@ -130803,6 +131220,7 @@ "1", "0", "0", + "0", "1" ], [ @@ -130812,6 +131230,7 @@ "1235", "523", "13", + "0", "3653" ] ], @@ -130823,6 +131242,7 @@ "Nord-Est", "Grand-Sud", "inconnu", + "Aucun(e)", "Total" ], [ @@ -130832,6 +131252,7 @@ "132", "35", "1", + "0", "352" ], [ @@ -130841,6 +131262,7 @@ "957", "372", "12", + "0", "2724" ], [ @@ -130850,6 +131272,7 @@ "0", "8", "0", + "0", "16" ], [ @@ -130859,6 +131282,7 @@ "3", "7", "0", + "0", "26" ], [ @@ -130868,6 +131292,7 @@ "4", "10", "0", + "0", "25" ], [ @@ -130877,6 +131302,7 @@ "25", "17", "0", + "0", "89" ], [ @@ -130886,6 +131312,7 @@ "11", "11", "0", + "0", "44" ], [ @@ -130895,6 +131322,7 @@ "7", "1", "0", + "0", "22" ], [ @@ -130904,6 +131332,7 @@ "11", "6", "0", + "0", "46" ], [ @@ -130913,6 +131342,7 @@ "10", "1", "0", + "0", "30" ], [ @@ -130922,6 +131352,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -130931,6 +131362,7 @@ "8", "4", "0", + "0", "27" ], [ @@ -130940,6 +131372,7 @@ "5", "2", "0", + "0", "21" ], [ @@ -130949,6 +131382,7 @@ "11", "2", "0", + "0", "27" ], [ @@ -130958,6 +131392,7 @@ "2", "2", "0", + "0", "16" ], [ @@ -130967,6 +131402,7 @@ "48", "45", "0", + "0", "186" ], [ @@ -130976,6 +131412,7 @@ "1", "0", "0", + "0", "1" ], [ @@ -130985,6 +131422,7 @@ "1235", "523", "13", + "0", "3653" ] ], @@ -130996,6 +131434,7 @@ "Nord-Est", "Grand-Sud", "inconnu", + "Aucun(e)", "Total" ], [ @@ -131005,6 +131444,7 @@ "64", "59", "0", + "0", "267" ], [ @@ -131014,6 +131454,7 @@ "39", "21", "0", + "0", "149" ], [ @@ -131023,6 +131464,7 @@ "56", "28", "0", + "0", "176" ], [ @@ -131032,6 +131474,7 @@ "46", "25", "0", + "0", "186" ], [ @@ -131041,6 +131484,7 @@ "74", "38", "0", + "0", "250" ], [ @@ -131050,6 +131494,7 @@ "71", "30", "0", + "0", "212" ], [ @@ -131059,6 +131504,7 @@ "79", "64", "0", + "0", "327" ], [ @@ -131068,6 +131514,7 @@ "106", "44", "0", + "0", "341" ], [ @@ -131077,6 +131524,7 @@ "58", "37", "0", + "0", "208" ], [ @@ -131086,6 +131534,7 @@ "345", "48", "1", + "0", "759" ], [ @@ -131095,6 +131544,7 @@ "275", "118", "12", + "0", "713" ], [ @@ -131104,7 +131554,8 @@ "22", "11", "0", - "65" + "1", + "66" ], [ "Total", @@ -131113,7 +131564,8 @@ "1235", "523", "13", - "3653" + "1", + "3654" ] ], "zz_old_Dysfonctionnement D\u00e9chets - Demandes par statut d\u00e9taill\u00e9 - ann\u00e9e en cours": [ @@ -131149,6 +131601,38 @@ "0", "2" ], + [ + "Calcul du code Insee", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Calcul du nom de la commune", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Qualification manuelle de la commune", "0", @@ -131197,6 +131681,38 @@ "0", "0" ], + [ + "D\u00e9finition automatique du secteur hors Grenoble", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9finition automatique du secteur dans Grenoble", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Qualification manuelle du secteur", "0", @@ -131245,6 +131761,22 @@ "0", "0" ], + [ + "Aiguillage apr\u00e8s guichet", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Demande transmise pour traitement aux services", "0", @@ -131261,6 +131793,22 @@ "13", "23" ], + [ + "Traitement par le service", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Commentaire interne service", "0", @@ -131277,6 +131825,22 @@ "0", "0" ], + [ + "Dispatch manuel", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Orientation apr\u00e8s dispatch", "0", @@ -131309,6 +131873,22 @@ "0", "0" ], + [ + "Pi\u00e8ces jointes r\u00e9ponse", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Communication de la r\u00e9ponse", "0", @@ -131357,6 +131937,214 @@ "0", "0" ], + [ + "Informations sur l'appel", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9ponse par t\u00e9l\u00e9phone", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Courrier \u00e0 transmettre", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9ponse par courrier", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Demande termin\u00e9e", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9diger une question \u00e0 destination de l'usager", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Demande d'information compl\u00e9mentaire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Annuler et prendre en charge la demande", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9ponse d\u00e9pos\u00e9e par l'usager", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Anonymiser", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Repasser en priorit\u00e9 normale", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Marquer comme VIP", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Reset", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -132245,6 +133033,22 @@ "11", "174" ], + [ + "Une d\u00e9ch\u00e8terie", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "R\u00e9clamation sur la collecte des ordures m\u00e9nag\u00e8res", "59", @@ -132295,20 +133099,98 @@ ], [ "", + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", "octobre", "novembre", + "d\u00e9cembre", "Total" ], [ "La collecte des ordures m\u00e9nag\u00e8res", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", "1", "12", + "0", "13" ], + [ + "Une d\u00e9ch\u00e8terie", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9clamation sur la collecte des ordures m\u00e9nag\u00e8res", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Signaler un probl\u00e8me survenu dans une d\u00e9ch\u00e8terie", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", "1", "12", + "0", "13" ] ], @@ -132317,85 +133199,99 @@ "", "Email envoy\u00e9", "Non", + "Aucun(e)", "Total" ], [ "janvier", "51", "216", + "0", "267" ], [ "f\u00e9vrier", "50", "99", + "0", "149" ], [ "mars", "35", "141", + "0", "176" ], [ "avril", "67", "119", + "0", "186" ], [ "mai", "82", "168", + "0", "250" ], [ "juin", "80", "132", + "0", "212" ], [ "juillet", "94", "233", + "0", "327" ], [ "ao\u00fbt", "73", "268", + "0", "341" ], [ "septembre", "72", "136", + "0", "208" ], [ "octobre", "249", "510", + "0", "759" ], [ "novembre", "207", "506", + "0", "713" ], [ "d\u00e9cembre", "15", "50", - "65" + "1", + "66" ], [ "Total", "1075", "2578", - "3653" + "1", + "3654" ] ], "zz_old_Dysfonctionnement D\u00e9chets - Signalements par d\u00e9ch\u00e9teries et par mois - ann\u00e9e en cours": [ @@ -133801,6 +134697,7 @@ "Nord-Ouest", "Grand-Sud", "Sud", + "Aucun(e)", "Total" ], [ @@ -133809,6 +134706,7 @@ "32", "5", "20", + "0", "87" ], [ @@ -133817,6 +134715,7 @@ "416", "187", "236", + "0", "1414" ], [ @@ -133825,6 +134724,7 @@ "361", "183", "220", + "0", "1093" ], [ @@ -133833,6 +134733,7 @@ "65", "41", "21", + "0", "171" ], [ @@ -133841,6 +134742,7 @@ "14", "1", "13", + "0", "38" ], [ @@ -133849,6 +134751,7 @@ "35", "28", "22", + "0", "130" ], [ @@ -133857,6 +134760,7 @@ "21", "15", "32", + "0", "108" ], [ @@ -133865,6 +134769,7 @@ "46", "17", "30", + "0", "134" ], [ @@ -133873,6 +134778,7 @@ "4", "2", "11", + "0", "23" ], [ @@ -133881,6 +134787,7 @@ "44", "30", "20", + "0", "152" ], [ @@ -133889,6 +134796,7 @@ "6", "2", "1", + "0", "17" ], [ @@ -133897,6 +134805,7 @@ "117", "110", "34", + "0", "395" ], [ @@ -133905,6 +134814,7 @@ "7", "3", "2", + "0", "15" ], [ @@ -133913,6 +134823,7 @@ "0", "1", "2", + "0", "3" ], [ @@ -133921,6 +134832,7 @@ "0", "0", "1", + "0", "2" ], [ @@ -133929,6 +134841,7 @@ "2", "1", "0", + "0", "3" ], [ @@ -133937,6 +134850,7 @@ "0", "1", "1", + "0", "2" ], [ @@ -133945,6 +134859,7 @@ "563", "436", "262", + "0", "1744" ], [ @@ -133953,6 +134868,7 @@ "390", "237", "272", + "0", "1270" ], [ @@ -133961,6 +134877,7 @@ "261", "153", "213", + "0", "909" ], [ @@ -133969,6 +134886,7 @@ "84", "76", "45", + "0", "287" ], [ @@ -133977,6 +134895,7 @@ "236", "170", "129", + "0", "756" ], [ @@ -133985,6 +134904,7 @@ "30", "9", "11", + "0", "70" ], [ @@ -133993,6 +134913,7 @@ "221", "72", "153", + "0", "659" ], [ @@ -134001,6 +134922,7 @@ "112", "66", "68", + "0", "371" ], [ @@ -134009,6 +134931,7 @@ "267", "192", "299", + "0", "1105" ], [ @@ -134017,6 +134940,7 @@ "26", "11", "22", + "0", "83" ], [ @@ -134025,6 +134949,7 @@ "35", "6", "22", + "0", "93" ], [ @@ -134033,6 +134958,7 @@ "5", "3", "3", + "0", "12" ], [ @@ -134041,6 +134967,7 @@ "6", "5", "0", + "0", "15" ], [ @@ -134049,6 +134976,7 @@ "20", "22", "10", + "0", "84" ], [ @@ -134057,6 +134985,7 @@ "7", "0", "5", + "0", "20" ], [ @@ -134065,6 +134994,7 @@ "4", "2", "0", + "0", "8" ], [ @@ -134073,6 +135003,7 @@ "5", "3", "3", + "0", "20" ], [ @@ -134081,6 +135012,7 @@ "574", "419", "508", + "0", "2025" ], [ @@ -134089,6 +135021,7 @@ "209", "107", "109", + "0", "629" ], [ @@ -134097,6 +135030,7 @@ "15", "11", "8", + "0", "45" ], [ @@ -134105,6 +135039,7 @@ "8", "2", "3", + "0", "15" ], [ @@ -134113,6 +135048,7 @@ "10", "1", "6", + "0", "20" ], [ @@ -134121,6 +135057,7 @@ "4", "3", "2", + "0", "17" ], [ @@ -134129,6 +135066,7 @@ "2", "2", "6", + "0", "15" ], [ @@ -134137,6 +135075,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -134145,6 +135084,7 @@ "4264", "2635", "2825", + "0", "14061" ] ], @@ -134181,6 +135121,54 @@ "0", "0" ], + [ + "V\u00e9rification commune de la M\u00e9tro", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9finition du secteur dans Grenoble", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "D\u00e9finition du secteur dans la M\u00e9tro", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Qualification manuelle du secteur", "0", @@ -134229,6 +135217,38 @@ "0", "0" ], + [ + "Aiguillage apr\u00e8s guichet", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Demande transmise pour traitement aux services", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Traitement par le service", "0", @@ -134261,6 +135281,38 @@ "0", "0" ], + [ + "Dispatch manuel", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Orientation apr\u00e8s dispatch", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "R\u00e9daction de la r\u00e9ponse", "0", @@ -134293,6 +135345,22 @@ "0", "0" ], + [ + "Aiguillage apr\u00e8s r\u00e9ponse", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "R\u00e9ponse par mail", "0", @@ -134325,6 +135393,22 @@ "0", "0" ], + [ + "R\u00e9ponse par t\u00e9l\u00e9phone", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Courrier \u00e0 transmettre", "0", @@ -134373,6 +135457,102 @@ "194", "13989" ], + [ + "Anonymiser", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9diger une question \u00e0 destination de l'usager", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Demande d'information compl\u00e9mentaire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Annuler et prendre en charge la demande", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "R\u00e9ponse d\u00e9pos\u00e9e par l'usager", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Reset", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "770", @@ -134393,59 +135573,59 @@ "zz_old_Renseignement D\u00e9chets - Demandes par type de retard - Ann\u00e9e en cours": [ [ "", - "Total" + "Aucun(e)" ], [ "janvier", - "0" + "770" ], [ "f\u00e9vrier", - "0" + "596" ], [ "mars", - "0" + "1039" ], [ "avril", - "0" + "1151" ], [ "mai", - "0" + "1399" ], [ "juin", - "0" + "997" ], [ "juillet", - "0" + "1047" ], [ "ao\u00fbt", - "0" + "1085" ], [ "septembre", - "0" + "1498" ], [ "octobre", - "0" + "2934" ], [ "novembre", - "0" + "1337" ], [ "d\u00e9cembre", - "0" + "208" ], [ "Total", - "0" + "14061" ] ], "zz_old_Renseignement D\u00e9chets - Demandes par type et par commune": [ @@ -135376,6 +136556,19 @@ "104", "2825" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "175", @@ -135525,6 +136718,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -135540,6 +136734,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135555,6 +136750,7 @@ "0", "3", "0", + "0", "3" ], [ @@ -135570,6 +136766,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135585,6 +136782,7 @@ "0", "1", "0", + "0", "4" ], [ @@ -135600,6 +136798,7 @@ "0", "2", "0", + "0", "2" ], [ @@ -135615,6 +136814,7 @@ "0", "1", "0", + "0", "13" ], [ @@ -135630,6 +136830,7 @@ "0", "1", "0", + "0", "25" ], [ @@ -135645,6 +136846,7 @@ "0", "3", "0", + "0", "9" ], [ @@ -135660,6 +136862,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135675,6 +136878,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -135690,6 +136894,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135705,6 +136910,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135720,6 +136926,7 @@ "0", "4", "0", + "0", "40" ], [ @@ -135735,6 +136942,7 @@ "0", "3", "0", + "0", "18" ], [ @@ -135750,6 +136958,7 @@ "0", "2", "0", + "0", "33" ], [ @@ -135765,6 +136974,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -135780,6 +136990,7 @@ "0", "1", "0", + "0", "14" ], [ @@ -135795,6 +137006,7 @@ "0", "22", "0", + "0", "189" ], [ @@ -135810,6 +137022,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -135825,6 +137038,7 @@ "0", "32", "0", + "0", "445" ], [ @@ -135840,6 +137054,7 @@ "0", "1", "0", + "0", "9" ], [ @@ -135855,6 +137070,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -135870,6 +137086,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135885,6 +137102,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -135900,6 +137118,7 @@ "0", "0", "0", + "0", "12" ], [ @@ -135915,6 +137134,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135930,6 +137150,7 @@ "0", "6", "0", + "0", "22" ], [ @@ -135945,6 +137166,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -135960,6 +137182,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -135975,6 +137198,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -135990,6 +137214,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136005,6 +137230,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136020,6 +137246,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136035,6 +137262,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -136050,6 +137278,7 @@ "0", "1", "0", + "0", "7" ], [ @@ -136065,6 +137294,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136080,6 +137310,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136095,6 +137326,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136110,6 +137342,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136125,6 +137358,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136140,6 +137374,7 @@ "0", "1", "0", + "0", "7" ], [ @@ -136155,6 +137390,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136170,6 +137406,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136185,6 +137422,7 @@ "0", "2", "0", + "0", "35" ], [ @@ -136200,6 +137438,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -136215,6 +137454,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -136230,6 +137470,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136245,6 +137486,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136260,6 +137502,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -136275,6 +137518,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -136290,6 +137534,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136305,6 +137550,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -136320,6 +137566,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136335,6 +137582,7 @@ "0", "4", "0", + "0", "28" ], [ @@ -136350,6 +137598,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -136365,6 +137614,7 @@ "0", "2", "0", + "0", "13" ], [ @@ -136380,6 +137630,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -136395,6 +137646,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -136410,6 +137662,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136425,6 +137678,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -136440,6 +137694,7 @@ "0", "1", "0", + "0", "13" ], [ @@ -136455,8 +137710,25 @@ "0", "1", "0", + "0", "20" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "1", @@ -136470,6 +137742,7 @@ "0", "97", "0", + "0", "1037" ], [ @@ -136485,6 +137758,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -136500,6 +137774,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136515,6 +137790,7 @@ "0", "2", "0", + "0", "6" ], [ @@ -136530,6 +137806,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136545,6 +137822,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136560,6 +137838,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136575,6 +137854,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136590,6 +137870,7 @@ "0", "1", "0", + "0", "2" ], [ @@ -136605,6 +137886,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136620,6 +137902,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136635,6 +137918,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -136650,6 +137934,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136665,6 +137950,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136680,6 +137966,7 @@ "0", "6", "0", + "0", "21" ], [ @@ -136695,6 +137982,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136710,6 +137998,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -136725,6 +138014,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136740,6 +138030,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -136755,6 +138046,7 @@ "0", "5", "0", + "0", "59" ], [ @@ -136770,6 +138062,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -136785,6 +138078,7 @@ "0", "0", "0", + "0", "596" ], [ @@ -136800,6 +138094,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -136815,6 +138110,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136830,6 +138126,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136845,6 +138142,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136860,6 +138158,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136875,6 +138174,7 @@ "0", "2", "0", + "0", "3" ], [ @@ -136890,6 +138190,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136905,6 +138206,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136920,6 +138222,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136935,6 +138238,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136950,6 +138254,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136965,6 +138270,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -136980,6 +138286,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -136995,6 +138302,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137010,6 +138318,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137025,6 +138334,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137040,6 +138350,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137055,6 +138366,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137070,6 +138382,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137085,6 +138398,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137100,6 +138414,7 @@ "0", "1", "0", + "0", "6" ], [ @@ -137115,6 +138430,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137130,6 +138446,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137145,6 +138462,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -137160,6 +138478,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -137175,6 +138494,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137190,6 +138510,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137205,6 +138526,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137220,6 +138542,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137235,6 +138558,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -137250,6 +138574,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137265,6 +138590,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137280,6 +138606,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137295,6 +138622,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137310,6 +138638,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137325,6 +138654,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -137340,6 +138670,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137355,6 +138686,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137370,6 +138702,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137385,6 +138718,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137400,6 +138734,7 @@ "0", "2", "0", + "0", "6" ], [ @@ -137415,8 +138750,25 @@ "0", "1", "0", + "0", "4" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -137430,6 +138782,7 @@ "0", "22", "0", + "0", "745" ], [ @@ -137445,6 +138798,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -137460,6 +138814,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137475,6 +138830,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137490,6 +138846,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137505,6 +138862,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137520,6 +138878,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137535,6 +138894,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137550,6 +138910,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -137565,6 +138926,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -137580,6 +138942,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137595,6 +138958,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137610,6 +138974,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137625,6 +138990,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137640,6 +139006,7 @@ "0", "4", "0", + "0", "25" ], [ @@ -137655,6 +139022,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -137670,6 +139038,7 @@ "0", "0", "0", + "0", "5" ], [ @@ -137685,6 +139054,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137700,6 +139070,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -137715,6 +139086,7 @@ "0", "9", "0", + "0", "56" ], [ @@ -137730,6 +139102,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137745,6 +139118,7 @@ "0", "0", "0", + "0", "1035" ], [ @@ -137760,6 +139134,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -137775,6 +139150,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -137790,6 +139166,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137805,6 +139182,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -137820,6 +139198,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137835,6 +139214,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -137850,6 +139230,7 @@ "0", "2", "0", + "0", "8" ], [ @@ -137865,6 +139246,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137880,6 +139262,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -137895,6 +139278,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137910,6 +139294,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137925,6 +139310,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137940,6 +139326,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137955,6 +139342,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137970,6 +139358,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -137985,6 +139374,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138000,6 +139390,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138015,6 +139406,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138030,6 +139422,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138045,6 +139438,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138060,6 +139454,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -138075,6 +139470,7 @@ "0", "1", "0", + "0", "2" ], [ @@ -138090,6 +139486,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138105,6 +139502,7 @@ "0", "2", "0", + "0", "15" ], [ @@ -138120,6 +139518,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -138135,6 +139534,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138150,6 +139550,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138165,6 +139566,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138180,6 +139582,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138195,6 +139598,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -138210,6 +139614,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138225,6 +139630,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -138240,6 +139646,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138255,6 +139662,7 @@ "0", "1", "0", + "0", "7" ], [ @@ -138270,6 +139678,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138285,6 +139694,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -138300,6 +139710,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138315,6 +139726,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138330,6 +139742,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138345,6 +139758,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138360,6 +139774,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138375,8 +139790,25 @@ "0", "0", "0", + "0", "5" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -138390,6 +139822,7 @@ "0", "24", "0", + "0", "1215" ], [ @@ -138405,6 +139838,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -138420,6 +139854,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138435,6 +139870,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -138450,6 +139886,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138465,6 +139902,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -138480,6 +139918,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -138495,6 +139934,7 @@ "0", "0", "0", + "0", "17" ], [ @@ -138510,6 +139950,7 @@ "0", "0", "0", + "0", "28" ], [ @@ -138525,6 +139966,7 @@ "0", "0", "0", + "0", "21" ], [ @@ -138540,6 +139982,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138555,6 +139998,7 @@ "0", "0", "0", + "0", "14" ], [ @@ -138570,6 +140014,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138585,6 +140030,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138600,6 +140046,7 @@ "0", "1", "0", + "0", "110" ], [ @@ -138615,6 +140062,7 @@ "0", "0", "0", + "0", "25" ], [ @@ -138630,6 +140078,7 @@ "0", "1", "0", + "0", "79" ], [ @@ -138645,6 +140094,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -138660,6 +140110,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -138675,6 +140126,7 @@ "0", "10", "0", + "0", "295" ], [ @@ -138690,6 +140142,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -138705,6 +140158,7 @@ "0", "0", "0", + "0", "233" ], [ @@ -138720,6 +140174,7 @@ "0", "1", "0", + "0", "19" ], [ @@ -138735,6 +140190,7 @@ "0", "1", "0", + "0", "22" ], [ @@ -138750,6 +140206,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -138765,6 +140222,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -138780,6 +140238,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -138795,6 +140254,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -138810,6 +140270,7 @@ "0", "0", "0", + "0", "67" ], [ @@ -138825,6 +140286,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138840,6 +140302,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138855,6 +140318,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138870,6 +140334,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -138885,6 +140350,7 @@ "0", "0", "0", + "0", "5" ], [ @@ -138900,6 +140366,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138915,6 +140382,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -138930,6 +140398,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -138945,6 +140414,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -138960,6 +140430,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138975,6 +140446,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -138990,6 +140462,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139005,6 +140478,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -139020,6 +140494,7 @@ "0", "0", "0", + "0", "73" ], [ @@ -139035,6 +140510,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -139050,6 +140526,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139065,6 +140542,7 @@ "0", "1", "0", + "0", "58" ], [ @@ -139080,6 +140558,7 @@ "0", "2", "0", + "0", "25" ], [ @@ -139095,6 +140574,7 @@ "0", "0", "0", + "0", "5" ], [ @@ -139110,6 +140590,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139125,6 +140606,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -139140,6 +140622,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139155,6 +140638,7 @@ "0", "1", "0", + "0", "38" ], [ @@ -139170,6 +140654,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -139185,6 +140670,7 @@ "0", "0", "0", + "0", "26" ], [ @@ -139200,6 +140686,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139215,6 +140702,7 @@ "0", "1", "0", + "0", "48" ], [ @@ -139230,6 +140718,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139245,6 +140734,7 @@ "0", "1", "0", + "0", "14" ], [ @@ -139260,6 +140750,7 @@ "0", "0", "0", + "0", "17" ], [ @@ -139275,6 +140766,7 @@ "0", "0", "0", + "0", "14" ], [ @@ -139290,6 +140782,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139305,6 +140798,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -139320,6 +140814,7 @@ "0", "2", "0", + "0", "28" ], [ @@ -139335,8 +140830,25 @@ "0", "0", "0", + "0", "29" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "217", + "217" + ], [ "Total", "0", @@ -139350,7 +140862,8 @@ "0", "23", "0", - "1438" + "217", + "1655" ], [ "", @@ -139365,6 +140878,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -139380,6 +140894,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139395,6 +140910,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139410,6 +140926,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139425,6 +140942,7 @@ "0", "1", "0", + "0", "11" ], [ @@ -139440,6 +140958,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -139455,6 +140974,7 @@ "0", "0", "0", + "0", "21" ], [ @@ -139470,6 +140990,7 @@ "0", "1", "0", + "0", "70" ], [ @@ -139485,6 +141006,7 @@ "0", "1", "0", + "0", "38" ], [ @@ -139500,6 +141022,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139515,6 +141038,7 @@ "0", "0", "0", + "0", "21" ], [ @@ -139530,6 +141054,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139545,6 +141070,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139560,6 +141086,7 @@ "0", "7", "0", + "0", "185" ], [ @@ -139575,6 +141102,7 @@ "0", "1", "0", + "0", "46" ], [ @@ -139590,6 +141118,7 @@ "0", "0", "0", + "0", "103" ], [ @@ -139605,6 +141134,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -139620,6 +141150,7 @@ "0", "1", "0", + "0", "42" ], [ @@ -139635,6 +141166,7 @@ "0", "5", "0", + "0", "442" ], [ @@ -139650,6 +141182,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -139665,6 +141198,7 @@ "0", "0", "0", + "0", "20" ], [ @@ -139680,6 +141214,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -139695,6 +141230,7 @@ "0", "0", "0", + "0", "37" ], [ @@ -139710,6 +141246,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139725,6 +141262,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -139740,6 +141278,7 @@ "0", "0", "0", + "0", "32" ], [ @@ -139755,6 +141294,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -139770,6 +141310,7 @@ "0", "0", "0", + "0", "105" ], [ @@ -139785,6 +141326,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139800,6 +141342,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -139815,6 +141358,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139830,6 +141374,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139845,6 +141390,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -139860,6 +141406,7 @@ "0", "1", "0", + "0", "4" ], [ @@ -139875,6 +141422,7 @@ "0", "0", "0", + "0", "9" ], [ @@ -139890,6 +141438,7 @@ "0", "0", "0", + "0", "9" ], [ @@ -139905,6 +141454,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139920,6 +141470,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139935,6 +141486,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -139950,6 +141502,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139965,6 +141518,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -139980,6 +141534,7 @@ "0", "4", "0", + "0", "93" ], [ @@ -139995,6 +141550,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -140010,6 +141566,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140025,6 +141582,7 @@ "0", "1", "0", + "0", "119" ], [ @@ -140040,6 +141598,7 @@ "0", "0", "0", + "0", "13" ], [ @@ -140055,6 +141614,7 @@ "0", "0", "0", + "0", "13" ], [ @@ -140070,6 +141630,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140085,6 +141646,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140100,6 +141662,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140115,6 +141678,7 @@ "0", "1", "0", + "0", "61" ], [ @@ -140130,6 +141694,7 @@ "0", "1", "0", + "0", "6" ], [ @@ -140145,6 +141710,7 @@ "0", "0", "0", + "0", "33" ], [ @@ -140160,6 +141726,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140175,6 +141742,7 @@ "0", "0", "0", + "0", "57" ], [ @@ -140190,6 +141758,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140205,6 +141774,7 @@ "0", "0", "0", + "0", "18" ], [ @@ -140220,6 +141790,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -140235,6 +141806,7 @@ "0", "0", "0", + "0", "47" ], [ @@ -140250,6 +141822,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140265,6 +141838,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -140280,6 +141854,7 @@ "0", "2", "0", + "0", "34" ], [ @@ -140295,8 +141870,25 @@ "0", "2", "0", + "0", "26" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "425", + "425" + ], [ "Total", "0", @@ -140310,7 +141902,8 @@ "0", "29", "0", - "1814" + "425", + "2239" ], [ "", @@ -140325,6 +141918,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -140340,6 +141934,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140355,6 +141950,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -140370,6 +141966,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140385,6 +141982,7 @@ "0", "0", "0", + "0", "9" ], [ @@ -140400,6 +141998,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -140415,6 +142014,7 @@ "0", "1", "0", + "0", "16" ], [ @@ -140430,6 +142030,7 @@ "0", "1", "0", + "0", "42" ], [ @@ -140445,6 +142046,7 @@ "0", "0", "0", + "0", "14" ], [ @@ -140460,6 +142062,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140475,6 +142078,7 @@ "0", "1", "0", + "0", "24" ], [ @@ -140490,6 +142094,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140505,6 +142110,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140520,6 +142126,7 @@ "0", "9", "0", + "0", "153" ], [ @@ -140535,6 +142142,7 @@ "0", "2", "0", + "0", "50" ], [ @@ -140550,6 +142158,7 @@ "0", "0", "0", + "0", "78" ], [ @@ -140565,6 +142174,7 @@ "0", "0", "0", + "0", "12" ], [ @@ -140580,6 +142190,7 @@ "0", "0", "0", + "0", "25" ], [ @@ -140595,6 +142206,7 @@ "0", "16", "0", + "0", "443" ], [ @@ -140610,6 +142222,7 @@ "0", "0", "0", + "0", "14" ], [ @@ -140625,6 +142238,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -140640,6 +142254,7 @@ "0", "0", "0", + "0", "13" ], [ @@ -140655,6 +142270,7 @@ "0", "0", "0", + "0", "31" ], [ @@ -140670,6 +142286,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -140685,6 +142302,7 @@ "0", "2", "0", + "0", "8" ], [ @@ -140700,6 +142318,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -140715,6 +142334,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -140730,6 +142350,7 @@ "0", "2", "0", + "0", "68" ], [ @@ -140745,6 +142366,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -140760,6 +142382,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -140775,6 +142398,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -140790,6 +142414,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -140805,6 +142430,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -140820,6 +142446,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -140835,6 +142462,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -140850,6 +142478,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -140865,6 +142494,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140880,6 +142510,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140895,6 +142526,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -140910,6 +142542,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140925,6 +142558,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -140940,6 +142574,7 @@ "0", "3", "0", + "0", "73" ], [ @@ -140955,6 +142590,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -140970,6 +142606,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -140985,6 +142622,7 @@ "0", "0", "0", + "0", "65" ], [ @@ -141000,6 +142638,7 @@ "0", "1", "0", + "0", "22" ], [ @@ -141015,6 +142654,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -141030,6 +142670,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141045,6 +142686,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141060,6 +142702,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -141075,6 +142718,7 @@ "0", "0", "0", + "0", "40" ], [ @@ -141090,6 +142734,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -141105,6 +142750,7 @@ "0", "0", "0", + "0", "24" ], [ @@ -141120,6 +142766,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141135,6 +142782,7 @@ "0", "2", "0", + "0", "33" ], [ @@ -141150,6 +142798,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141165,6 +142814,7 @@ "0", "1", "0", + "0", "16" ], [ @@ -141180,6 +142830,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -141195,6 +142846,7 @@ "0", "0", "0", + "0", "20" ], [ @@ -141210,6 +142862,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -141225,6 +142878,7 @@ "0", "0", "0", + "0", "16" ], [ @@ -141240,6 +142894,7 @@ "0", "2", "0", + "0", "32" ], [ @@ -141255,8 +142910,25 @@ "0", "2", "0", + "0", "37" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "475", + "475" + ], [ "Total", "0", @@ -141270,7 +142942,8 @@ "0", "45", "0", - "1480" + "475", + "1955" ], [ "", @@ -141285,6 +142958,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -141300,6 +142974,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141315,6 +142990,7 @@ "0", "1", "0", + "0", "13" ], [ @@ -141330,6 +143006,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141345,6 +143022,7 @@ "0", "1", "0", + "0", "9" ], [ @@ -141360,6 +143038,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -141375,6 +143054,7 @@ "0", "2", "0", + "0", "19" ], [ @@ -141390,6 +143070,7 @@ "0", "12", "0", + "0", "58" ], [ @@ -141405,6 +143086,7 @@ "0", "7", "0", + "0", "32" ], [ @@ -141420,6 +143102,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141435,6 +143118,7 @@ "0", "3", "0", + "0", "30" ], [ @@ -141450,6 +143134,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141465,6 +143150,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141480,6 +143166,7 @@ "0", "15", "0", + "0", "147" ], [ @@ -141495,6 +143182,7 @@ "0", "11", "0", + "0", "59" ], [ @@ -141510,6 +143198,7 @@ "0", "8", "0", + "0", "147" ], [ @@ -141525,6 +143214,7 @@ "0", "0", "0", + "0", "5" ], [ @@ -141540,6 +143230,7 @@ "0", "5", "0", + "0", "35" ], [ @@ -141555,6 +143246,7 @@ "0", "61", "0", + "0", "551" ], [ @@ -141570,6 +143262,7 @@ "0", "1", "0", + "0", "18" ], [ @@ -141585,6 +143278,7 @@ "0", "0", "0", + "0", "18" ], [ @@ -141600,6 +143294,7 @@ "0", "1", "0", + "0", "21" ], [ @@ -141615,6 +143310,7 @@ "0", "3", "0", + "0", "52" ], [ @@ -141630,6 +143326,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -141645,6 +143342,7 @@ "0", "2", "0", + "0", "9" ], [ @@ -141660,6 +143358,7 @@ "0", "1", "0", + "0", "30" ], [ @@ -141675,6 +143374,7 @@ "0", "2", "0", + "0", "11" ], [ @@ -141690,6 +143390,7 @@ "0", "7", "0", + "0", "96" ], [ @@ -141705,6 +143406,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141720,6 +143422,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141735,6 +143438,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141750,6 +143454,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -141765,6 +143470,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -141780,6 +143486,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -141795,6 +143502,7 @@ "0", "2", "0", + "0", "12" ], [ @@ -141810,6 +143518,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -141825,6 +143534,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141840,6 +143550,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -141855,6 +143566,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141870,6 +143582,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141885,6 +143598,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141900,6 +143614,7 @@ "0", "10", "0", + "0", "96" ], [ @@ -141915,6 +143630,7 @@ "0", "0", "0", + "0", "9" ], [ @@ -141930,6 +143646,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -141945,6 +143662,7 @@ "0", "0", "0", + "0", "95" ], [ @@ -141960,6 +143678,7 @@ "0", "10", "0", + "0", "34" ], [ @@ -141975,6 +143694,7 @@ "0", "1", "0", + "0", "27" ], [ @@ -141990,6 +143710,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142005,6 +143726,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -142020,6 +143742,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -142035,6 +143758,7 @@ "0", "4", "0", + "0", "58" ], [ @@ -142050,6 +143774,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -142065,6 +143790,7 @@ "0", "3", "0", + "0", "43" ], [ @@ -142080,6 +143806,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142095,6 +143822,7 @@ "0", "6", "0", + "0", "75" ], [ @@ -142110,6 +143838,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142125,6 +143854,7 @@ "0", "2", "0", + "0", "32" ], [ @@ -142140,6 +143870,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -142155,6 +143886,7 @@ "0", "2", "0", + "0", "28" ], [ @@ -142170,6 +143902,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -142185,6 +143918,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -142200,6 +143934,7 @@ "0", "7", "0", + "0", "50" ], [ @@ -142215,8 +143950,25 @@ "0", "3", "0", + "0", "31" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -142230,6 +143982,7 @@ "0", "194", "0", + "0", "2013" ], [ @@ -142245,6 +143998,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -142260,6 +144014,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142275,6 +144030,7 @@ "0", "0", "0", + "0", "10" ], [ @@ -142290,6 +144046,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142305,6 +144062,7 @@ "0", "2", "0", + "0", "13" ], [ @@ -142320,6 +144078,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -142335,6 +144094,7 @@ "0", "0", "0", + "0", "19" ], [ @@ -142350,6 +144110,7 @@ "0", "7", "0", + "0", "48" ], [ @@ -142365,6 +144126,7 @@ "0", "8", "0", + "0", "52" ], [ @@ -142380,6 +144142,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142395,6 +144158,7 @@ "0", "2", "0", + "0", "32" ], [ @@ -142410,6 +144174,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142425,6 +144190,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142440,6 +144206,7 @@ "0", "17", "0", + "0", "152" ], [ @@ -142455,6 +144222,7 @@ "0", "22", "0", + "0", "75" ], [ @@ -142470,6 +144238,7 @@ "0", "8", "0", + "0", "133" ], [ @@ -142485,6 +144254,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -142500,6 +144270,7 @@ "0", "2", "0", + "0", "30" ], [ @@ -142515,6 +144286,7 @@ "0", "84", "0", + "0", "633" ], [ @@ -142530,6 +144302,7 @@ "0", "1", "0", + "0", "9" ], [ @@ -142545,6 +144318,7 @@ "0", "0", "0", + "0", "18" ], [ @@ -142560,6 +144334,7 @@ "0", "1", "0", + "0", "10" ], [ @@ -142575,6 +144350,7 @@ "0", "4", "0", + "0", "41" ], [ @@ -142590,6 +144366,7 @@ "0", "2", "0", + "0", "8" ], [ @@ -142605,6 +144382,7 @@ "0", "1", "0", + "0", "9" ], [ @@ -142620,6 +144398,7 @@ "0", "7", "0", + "0", "51" ], [ @@ -142635,6 +144414,7 @@ "0", "3", "0", + "0", "8" ], [ @@ -142650,6 +144430,7 @@ "0", "9", "0", + "0", "95" ], [ @@ -142665,6 +144446,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -142680,6 +144462,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -142695,6 +144478,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -142710,6 +144494,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -142725,6 +144510,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -142740,6 +144526,7 @@ "0", "4", "0", + "0", "7" ], [ @@ -142755,6 +144542,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -142770,6 +144558,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -142785,6 +144574,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142800,6 +144590,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142815,6 +144606,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -142830,6 +144622,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142845,6 +144638,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142860,6 +144654,7 @@ "0", "13", "0", + "0", "97" ], [ @@ -142875,6 +144670,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -142890,6 +144686,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142905,6 +144702,7 @@ "0", "7", "0", + "0", "86" ], [ @@ -142920,6 +144718,7 @@ "0", "4", "0", + "0", "35" ], [ @@ -142935,6 +144734,7 @@ "0", "1", "0", + "0", "6" ], [ @@ -142950,6 +144750,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142965,6 +144766,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -142980,6 +144782,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -142995,6 +144798,7 @@ "0", "9", "0", + "0", "57" ], [ @@ -143010,6 +144814,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -143025,6 +144830,7 @@ "0", "4", "0", + "0", "55" ], [ @@ -143040,6 +144846,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143055,6 +144862,7 @@ "0", "1", "0", + "0", "56" ], [ @@ -143070,6 +144878,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143085,6 +144894,7 @@ "0", "4", "0", + "0", "37" ], [ @@ -143100,6 +144910,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -143115,6 +144926,7 @@ "0", "0", "0", + "0", "16" ], [ @@ -143130,6 +144942,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -143145,6 +144958,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -143160,6 +144974,7 @@ "0", "6", "0", + "0", "62" ], [ @@ -143175,8 +144990,25 @@ "0", "1", "0", + "0", "14" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -143190,6 +145022,7 @@ "0", "234", "0", + "0", "2036" ], [ @@ -143205,6 +145038,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -143220,6 +145054,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143235,6 +145070,7 @@ "0", "0", "0", + "0", "9" ], [ @@ -143250,6 +145086,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143265,6 +145102,7 @@ "0", "0", "0", + "0", "22" ], [ @@ -143280,6 +145118,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -143295,6 +145134,7 @@ "0", "1", "0", + "0", "19" ], [ @@ -143310,6 +145150,7 @@ "0", "9", "0", + "0", "96" ], [ @@ -143325,6 +145166,7 @@ "0", "10", "0", + "0", "32" ], [ @@ -143340,6 +145182,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143355,6 +145198,7 @@ "0", "0", "0", + "0", "31" ], [ @@ -143370,6 +145214,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143385,6 +145230,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143400,6 +145246,7 @@ "0", "25", "0", + "0", "149" ], [ @@ -143415,6 +145262,7 @@ "0", "6", "0", + "0", "50" ], [ @@ -143430,6 +145278,7 @@ "0", "12", "0", + "0", "150" ], [ @@ -143445,6 +145294,7 @@ "0", "0", "0", + "0", "6" ], [ @@ -143460,6 +145310,7 @@ "0", "5", "0", + "0", "28" ], [ @@ -143475,6 +145326,7 @@ "0", "122", "0", + "0", "609" ], [ @@ -143490,6 +145342,7 @@ "0", "2", "0", + "0", "9" ], [ @@ -143505,6 +145358,7 @@ "0", "0", "0", + "0", "12" ], [ @@ -143520,6 +145374,7 @@ "0", "1", "0", + "0", "17" ], [ @@ -143535,6 +145390,7 @@ "0", "3", "0", + "0", "34" ], [ @@ -143550,6 +145406,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -143565,6 +145422,7 @@ "0", "3", "0", + "0", "14" ], [ @@ -143580,6 +145438,7 @@ "0", "1", "0", + "0", "19" ], [ @@ -143595,6 +145454,7 @@ "0", "4", "0", + "0", "7" ], [ @@ -143610,6 +145470,7 @@ "0", "9", "0", + "0", "153" ], [ @@ -143625,6 +145486,7 @@ "0", "2", "0", + "0", "2" ], [ @@ -143640,6 +145502,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143655,6 +145518,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143670,6 +145534,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -143685,6 +145550,7 @@ "0", "3", "0", + "0", "3" ], [ @@ -143700,6 +145566,7 @@ "0", "2", "0", + "0", "6" ], [ @@ -143715,6 +145582,7 @@ "0", "0", "0", + "0", "16" ], [ @@ -143730,6 +145598,7 @@ "0", "3", "0", + "0", "12" ], [ @@ -143745,6 +145614,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143760,6 +145630,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143775,6 +145646,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143790,6 +145662,7 @@ "0", "3", "0", + "0", "5" ], [ @@ -143805,6 +145678,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143820,6 +145694,7 @@ "0", "15", "0", + "0", "196" ], [ @@ -143835,6 +145710,7 @@ "0", "1", "0", + "0", "7" ], [ @@ -143850,6 +145726,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143865,6 +145742,7 @@ "0", "10", "0", + "0", "143" ], [ @@ -143880,6 +145758,7 @@ "0", "2", "0", + "0", "31" ], [ @@ -143895,6 +145774,7 @@ "0", "0", "0", + "0", "12" ], [ @@ -143910,6 +145790,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143925,6 +145806,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -143940,6 +145822,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -143955,6 +145838,7 @@ "0", "6", "0", + "0", "84" ], [ @@ -143970,6 +145854,7 @@ "0", "2", "0", + "0", "7" ], [ @@ -143985,6 +145870,7 @@ "0", "5", "0", + "0", "59" ], [ @@ -144000,6 +145886,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144015,6 +145902,7 @@ "0", "5", "0", + "0", "64" ], [ @@ -144030,6 +145918,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144045,6 +145934,7 @@ "0", "6", "0", + "0", "49" ], [ @@ -144060,6 +145950,7 @@ "0", "1", "0", + "0", "14" ], [ @@ -144075,6 +145966,7 @@ "0", "4", "0", + "0", "31" ], [ @@ -144090,6 +145982,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -144105,6 +145998,7 @@ "0", "0", "0", + "0", "40" ], [ @@ -144120,6 +146014,7 @@ "0", "10", "0", + "0", "62" ], [ @@ -144135,8 +146030,25 @@ "0", "2", "0", + "0", "64" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "Total", "0", @@ -144150,6 +146062,7 @@ "0", "296", "0", + "0", "2384" ], [ @@ -144165,6 +146078,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -144180,6 +146094,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144195,6 +146110,7 @@ "0", "0", "0", + "0", "17" ], [ @@ -144210,6 +146126,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144225,6 +146142,7 @@ "0", "0", "0", + "0", "30" ], [ @@ -144240,6 +146158,7 @@ "0", "2", "0", + "0", "7" ], [ @@ -144255,6 +146174,7 @@ "0", "0", "0", + "0", "15" ], [ @@ -144270,6 +146190,7 @@ "0", "12", "0", + "0", "208" ], [ @@ -144285,6 +146206,7 @@ "0", "10", "0", + "0", "107" ], [ @@ -144300,6 +146222,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144315,6 +146238,7 @@ "0", "2", "0", + "0", "45" ], [ @@ -144330,6 +146254,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -144345,6 +146270,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144360,6 +146286,7 @@ "0", "23", "0", + "0", "269" ], [ @@ -144375,6 +146302,7 @@ "0", "18", "0", + "0", "93" ], [ @@ -144390,6 +146318,7 @@ "0", "29", "0", + "0", "384" ], [ @@ -144405,6 +146334,7 @@ "0", "0", "0", + "0", "8" ], [ @@ -144420,6 +146350,7 @@ "0", "4", "0", + "0", "26" ], [ @@ -144435,6 +146366,7 @@ "2", "193", "0", + "0", "1273" ], [ @@ -144450,6 +146382,7 @@ "0", "3", "0", + "0", "18" ], [ @@ -144465,6 +146398,7 @@ "0", "4", "0", + "0", "19" ], [ @@ -144480,6 +146414,7 @@ "0", "6", "0", + "0", "18" ], [ @@ -144495,6 +146430,7 @@ "2", "9", "0", + "0", "96" ], [ @@ -144510,6 +146446,7 @@ "0", "1", "0", + "0", "4" ], [ @@ -144525,6 +146462,7 @@ "0", "4", "0", + "0", "13" ], [ @@ -144540,6 +146478,7 @@ "0", "4", "0", + "0", "44" ], [ @@ -144555,6 +146494,7 @@ "0", "1", "0", + "0", "4" ], [ @@ -144570,6 +146510,7 @@ "2", "17", "0", + "0", "357" ], [ @@ -144585,6 +146526,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144600,6 +146542,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144615,6 +146558,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144630,6 +146574,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144645,6 +146590,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -144660,6 +146606,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -144675,6 +146622,7 @@ "0", "3", "0", + "0", "18" ], [ @@ -144690,6 +146638,7 @@ "0", "0", "0", + "0", "4" ], [ @@ -144705,6 +146654,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144720,6 +146670,7 @@ "0", "2", "0", + "0", "4" ], [ @@ -144735,6 +146686,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -144750,6 +146702,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144765,6 +146718,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144780,6 +146734,7 @@ "0", "17", "0", + "0", "297" ], [ @@ -144795,6 +146750,7 @@ "0", "4", "0", + "0", "7" ], [ @@ -144810,6 +146766,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144825,6 +146782,7 @@ "0", "25", "0", + "0", "348" ], [ @@ -144840,6 +146798,7 @@ "0", "9", "0", + "0", "40" ], [ @@ -144855,6 +146814,7 @@ "0", "3", "0", + "0", "19" ], [ @@ -144870,6 +146830,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144885,6 +146846,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144900,6 +146862,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144915,6 +146878,7 @@ "0", "6", "0", + "0", "127" ], [ @@ -144930,6 +146894,7 @@ "0", "3", "0", + "0", "6" ], [ @@ -144945,6 +146910,7 @@ "0", "6", "0", + "0", "64" ], [ @@ -144960,6 +146926,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -144975,6 +146942,7 @@ "0", "5", "0", + "0", "87" ], [ @@ -144990,6 +146958,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145005,6 +146974,7 @@ "0", "6", "0", + "0", "55" ], [ @@ -145020,6 +146990,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145035,6 +147006,7 @@ "0", "2", "0", + "0", "50" ], [ @@ -145050,6 +147022,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145065,6 +147038,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -145080,6 +147054,7 @@ "0", "11", "0", + "0", "81" ], [ @@ -145095,8 +147070,25 @@ "0", "2", "0", + "0", "30" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "116", + "116" + ], [ "Total", "0", @@ -145110,7 +147102,8 @@ "6", "449", "0", - "4313" + "116", + "4429" ], [ "", @@ -145125,6 +147118,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -145140,6 +147134,7 @@ "0", "4", "0", + "0", "9" ], [ @@ -145155,6 +147150,7 @@ "0", "0", "0", + "0", "12" ], [ @@ -145170,6 +147166,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -145185,6 +147182,7 @@ "0", "7", "0", + "0", "35" ], [ @@ -145200,6 +147198,7 @@ "0", "0", "0", + "0", "17" ], [ @@ -145215,6 +147214,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -145230,6 +147230,7 @@ "0", "15", "0", + "0", "136" ], [ @@ -145245,6 +147246,7 @@ "0", "11", "0", + "0", "55" ], [ @@ -145260,6 +147262,7 @@ "0", "2", "0", + "0", "2" ], [ @@ -145275,6 +147278,7 @@ "0", "3", "0", + "0", "20" ], [ @@ -145290,6 +147294,7 @@ "0", "3", "0", + "0", "3" ], [ @@ -145305,6 +147310,7 @@ "0", "3", "0", + "0", "3" ], [ @@ -145320,6 +147326,7 @@ "0", "26", "0", + "0", "186" ], [ @@ -145335,6 +147342,7 @@ "0", "7", "0", + "0", "57" ], [ @@ -145350,6 +147358,7 @@ "0", "36", "0", + "0", "252" ], [ @@ -145365,6 +147374,7 @@ "0", "1", "0", + "0", "13" ], [ @@ -145380,6 +147390,7 @@ "0", "4", "0", + "0", "21" ], [ @@ -145395,6 +147406,7 @@ "0", "234", "0", + "0", "774" ], [ @@ -145410,6 +147422,7 @@ "0", "2", "0", + "0", "6" ], [ @@ -145425,6 +147438,7 @@ "0", "5", "0", + "0", "8" ], [ @@ -145440,6 +147454,7 @@ "0", "2", "0", + "0", "18" ], [ @@ -145455,6 +147470,7 @@ "0", "11", "0", + "0", "102" ], [ @@ -145470,6 +147486,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -145485,6 +147502,7 @@ "0", "6", "0", + "0", "19" ], [ @@ -145500,6 +147518,7 @@ "0", "10", "0", + "0", "95" ], [ @@ -145515,6 +147534,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -145530,6 +147550,7 @@ "0", "18", "0", + "0", "199" ], [ @@ -145545,6 +147566,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145560,6 +147582,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145575,6 +147598,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145590,6 +147614,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145605,6 +147630,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145620,6 +147646,7 @@ "0", "2", "0", + "0", "3" ], [ @@ -145635,6 +147662,7 @@ "0", "2", "0", + "0", "10" ], [ @@ -145650,6 +147678,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -145665,6 +147694,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145680,6 +147710,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145695,6 +147726,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145710,6 +147742,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -145725,6 +147758,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145740,6 +147774,7 @@ "0", "17", "0", + "0", "89" ], [ @@ -145755,6 +147790,7 @@ "0", "3", "0", + "0", "4" ], [ @@ -145770,6 +147806,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -145785,6 +147822,7 @@ "0", "18", "0", + "0", "124" ], [ @@ -145800,6 +147838,7 @@ "0", "2", "0", + "0", "24" ], [ @@ -145815,6 +147854,7 @@ "0", "4", "0", + "0", "22" ], [ @@ -145830,6 +147870,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -145845,6 +147886,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145860,6 +147902,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145875,6 +147918,7 @@ "0", "8", "0", + "0", "76" ], [ @@ -145890,6 +147934,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -145905,6 +147950,7 @@ "0", "7", "0", + "0", "28" ], [ @@ -145920,6 +147966,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -145935,6 +147982,7 @@ "0", "8", "0", + "0", "59" ], [ @@ -145950,6 +147998,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -145965,6 +148014,7 @@ "0", "10", "0", + "0", "78" ], [ @@ -145980,6 +148030,7 @@ "0", "3", "0", + "0", "10" ], [ @@ -145995,6 +148046,7 @@ "0", "1", "0", + "0", "21" ], [ @@ -146010,6 +148062,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146025,6 +148078,7 @@ "0", "0", "0", + "0", "11" ], [ @@ -146040,6 +148094,7 @@ "0", "13", "0", + "0", "66" ], [ @@ -146055,8 +148110,25 @@ "0", "2", "0", + "0", "22" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "123", + "123" + ], [ "Total", "0", @@ -146070,7 +148142,8 @@ "0", "516", "0", - "2712" + "123", + "2835" ], [ "", @@ -146085,6 +148158,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -146100,6 +148174,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146115,6 +148190,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146130,6 +148206,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146145,6 +148222,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -146160,6 +148238,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146175,6 +148254,7 @@ "0", "2", "0", + "0", "5" ], [ @@ -146190,6 +148270,7 @@ "0", "1", "0", + "0", "10" ], [ @@ -146205,6 +148286,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -146220,6 +148302,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146235,6 +148318,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -146250,6 +148334,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146265,6 +148350,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146280,6 +148366,7 @@ "0", "8", "0", + "0", "37" ], [ @@ -146295,6 +148382,7 @@ "0", "3", "0", + "0", "16" ], [ @@ -146310,6 +148398,7 @@ "0", "5", "0", + "0", "27" ], [ @@ -146325,6 +148414,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -146340,6 +148430,7 @@ "0", "1", "0", + "0", "6" ], [ @@ -146355,6 +148446,7 @@ "0", "34", "0", + "0", "113" ], [ @@ -146370,6 +148462,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -146385,6 +148478,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -146400,6 +148494,7 @@ "0", "1", "0", + "0", "3" ], [ @@ -146415,6 +148510,7 @@ "0", "1", "1", + "0", "10" ], [ @@ -146430,6 +148526,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -146445,6 +148542,7 @@ "0", "1", "0", + "0", "4" ], [ @@ -146460,6 +148558,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -146475,6 +148574,7 @@ "0", "1", "0", + "0", "2" ], [ @@ -146490,6 +148590,7 @@ "0", "2", "0", + "0", "39" ], [ @@ -146505,6 +148606,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146520,6 +148622,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146535,6 +148638,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146550,6 +148654,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146565,6 +148670,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146580,6 +148686,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -146595,6 +148702,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -146610,6 +148718,7 @@ "0", "1", "0", + "0", "2" ], [ @@ -146625,6 +148734,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146640,6 +148750,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146655,6 +148766,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146670,6 +148782,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146685,6 +148798,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146700,6 +148814,7 @@ "0", "3", "0", + "0", "14" ], [ @@ -146715,6 +148830,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146730,6 +148846,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146745,6 +148862,7 @@ "0", "5", "0", + "0", "25" ], [ @@ -146760,6 +148878,7 @@ "0", "0", "0", + "0", "3" ], [ @@ -146775,6 +148894,7 @@ "0", "1", "0", + "0", "1" ], [ @@ -146790,6 +148910,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146805,6 +148926,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146820,6 +148942,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146835,6 +148958,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -146850,6 +148974,7 @@ "0", "0", "0", + "0", "2" ], [ @@ -146865,6 +148990,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -146880,6 +149006,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146895,6 +149022,7 @@ "0", "1", "0", + "0", "8" ], [ @@ -146910,6 +149038,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146925,6 +149054,7 @@ "0", "0", "0", + "0", "7" ], [ @@ -146940,6 +149070,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146955,6 +149086,7 @@ "0", "0", "0", + "0", "1" ], [ @@ -146970,6 +149102,7 @@ "0", "0", "0", + "0", "0" ], [ @@ -146985,6 +149118,7 @@ "0", "1", "0", + "0", "5" ], [ @@ -147000,6 +149134,7 @@ "0", "3", "0", + "0", "22" ], [ @@ -147015,8 +149150,25 @@ "0", "1", "0", + "0", "3" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "19", + "19" + ], [ "Total", "0", @@ -147030,7 +149182,8 @@ "0", "81", "1", - "405" + "19", + "424" ] ], "zz_old_Tous formulaires - Demandes par canal - ann\u00e9e en cours": [ @@ -147047,6 +149200,7 @@ "Formulaire Elu", "Formulaire Portail citoyen", "Observation terrain", + "Aucun(e)", "Total" ], [ @@ -147062,6 +149216,7 @@ "0", "97", "0", + "0", "1037" ], [ @@ -147077,6 +149232,7 @@ "0", "22", "0", + "0", "745" ], [ @@ -147092,6 +149248,7 @@ "0", "24", "0", + "0", "1215" ], [ @@ -147107,7 +149264,8 @@ "0", "23", "0", - "1438" + "217", + "1655" ], [ "mai", @@ -147122,7 +149280,8 @@ "0", "29", "0", - "1814" + "425", + "2239" ], [ "juin", @@ -147137,7 +149296,8 @@ "0", "45", "0", - "1480" + "475", + "1955" ], [ "juillet", @@ -147152,6 +149312,7 @@ "0", "194", "0", + "0", "2013" ], [ @@ -147167,6 +149328,7 @@ "0", "234", "0", + "0", "2036" ], [ @@ -147182,6 +149344,7 @@ "0", "296", "0", + "0", "2384" ], [ @@ -147197,7 +149360,8 @@ "6", "449", "0", - "4313" + "116", + "4429" ], [ "novembre", @@ -147212,7 +149376,8 @@ "0", "516", "0", - "2712" + "123", + "2835" ], [ "d\u00e9cembre", @@ -147227,7 +149392,8 @@ "0", "81", "1", - "405" + "19", + "424" ], [ "Total", @@ -147242,7 +149408,8 @@ "6", "2010", "1", - "21592" + "1375", + "22967" ] ], "zz_old_Tous formulaires - Demandes par heure - Ann\u00e9e en cours": [], @@ -148368,346 +150535,2184 @@ "353" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Acc\u00e8s d\u00e9ch\u00e8teries", - "0", - "0", - "0", - "0", - "0", - "0", - "56", - "73", - "56", - "102", - "0", - "0", - "287" + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Acc\u00e8s d\u00e9ch\u00e8teries", + "0", + "0", + "0", + "0", + "0", + "0", + "56", + "73", + "56", + "102", + "0", + "0", + "287" + ], + [ + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Autre demande d\u2019information", + "24", + "52", + "59", + "31", + "40", + "8", + "12", + "12", + "3", + "1", + "0", + "0", + "242" + ], + [ + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Horaires d\u00e9ch\u00e8teries", + "104", + "40", + "67", + "103", + "240", + "56", + "97", + "148", + "502", + "387", + "0", + "0", + "1744" + ], + [ + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : S\u00e9curit\u00e9 d\u00e9ch\u00e8teries", + "5", + "2", + "0", + "1", + "4", + "3", + "0", + "0", + "0", + "0", + "0", + "0", + "15" + ], + [ + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s", + "0", + "0", + "0", + "0", + "0", + "0", + "148", + "117", + "98", + "8", + "0", + "0", + "371" + ], + [ + "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s en d\u00e9ch\u00e8teries", + "70", + "58", + "86", + "133", + "124", + "158", + "0", + "0", + "0", + "0", + "0", + "0", + "629" + ], + [ + "Une animation, un atelier ou une visite - Qualification par le guichet : Un atelier compostage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "20", + "15", + "3", + "38" + ], + [ + "Une animation, un atelier ou une visite - Qualification par le guichet : Une animation sur le tri", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "7", + "14", + "2", + "23" + ], + [ + "Une animation, un atelier ou une visite - Qualification par le guichet : Une visite du centre de tri", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "2", + "0", + "2" + ], + [ + "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Autre dysfonctionnement", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "5", + "9", + "1", + "15" + ], + [ + "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Fermeture d\u00e9ch\u00e8terie", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "6", + "3", + "0", + "9" + ], + [ + "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Gardiennage", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "1", + "0", + "1" + ], + [ + "Aucun(e)", + "0", + "0", + "0", + "318", + "590", + "746", + "639", + "610", + "678", + "733", + "785", + "151", + "5250" + ], + [ + "Total", + "1037", + "745", + "1215", + "1655", + "2239", + "1955", + "2013", + "2036", + "2384", + "4429", + "2835", + "424", + "22967" + ] + ], + "zz_old_Tous formulaires - Demandes par secteur et par mois - ann\u00e9e en cours": [ + [ + "", + "Grand-Sud", + "inconnu", + "Nord-Est", + "Nord-Ouest", + "Sud", + "Aucun(e)", + "Total" + ], + [ + "janvier", + "198", + "0", + "326", + "255", + "258", + "0", + "1037" + ], + [ + "f\u00e9vrier", + "122", + "0", + "225", + "210", + "188", + "0", + "745" + ], + [ + "mars", + "269", + "0", + "322", + "289", + "335", + "0", + "1215" + ], + [ + "avril", + "276", + "0", + "423", + "540", + "315", + "101", + "1655" + ], + [ + "mai", + "391", + "0", + "638", + "563", + "482", + "165", + "2239" + ], + [ + "juin", + "315", + "0", + "484", + "507", + "416", + "233", + "1955" + ], + [ + "juillet", + "354", + "0", + "626", + "610", + "423", + "0", + "2013" + ], + [ + "ao\u00fbt", + "307", + "0", + "647", + "589", + "493", + "0", + "2036" + ], + [ + "septembre", + "435", + "0", + "712", + "803", + "434", + "0", + "2384" + ], + [ + "octobre", + "564", + "1", + "1591", + "1309", + "848", + "116", + "4429" + ], + [ + "novembre", + "516", + "12", + "932", + "752", + "498", + "125", + "2835" + ], + [ + "d\u00e9cembre", + "66", + "0", + "131", + "115", + "90", + "22", + "424" + ], + [ + "Total", + "3813", + "13", + "7057", + "6542", + "4780", + "762", + "22967" + ] + ], + "zz_old_Tous formulaires - Demandes par semaine - 3 derniers mois": [ + [ + "semaine (date de la demande)", + "nombre de demandes" + ], + [ + "2009S53", + "0" + ], + [ + "2010S1", + "0" + ], + [ + "2010S2", + "0" + ], + [ + "2010S3", + "0" + ], + [ + "2010S4", + "0" + ], + [ + "2010S5", + "0" + ], + [ + "2010S6", + "0" + ], + [ + "2010S7", + "0" + ], + [ + "2010S8", + "0" + ], + [ + "2010S9", + "0" + ], + [ + "2010S10", + "0" + ], + [ + "2010S11", + "0" + ], + [ + "2010S12", + "0" + ], + [ + "2010S13", + "0" + ], + [ + "2010S14", + "0" + ], + [ + "2010S15", + "0" + ], + [ + "2010S16", + "0" + ], + [ + "2010S17", + "0" + ], + [ + "2010S18", + "0" + ], + [ + "2010S19", + "0" + ], + [ + "2010S20", + "0" + ], + [ + "2010S21", + "0" + ], + [ + "2010S22", + "0" + ], + [ + "2010S23", + "0" + ], + [ + "2010S24", + "0" + ], + [ + "2010S25", + "0" + ], + [ + "2010S26", + "0" + ], + [ + "2010S27", + "0" + ], + [ + "2010S28", + "0" + ], + [ + "2010S29", + "0" + ], + [ + "2010S30", + "0" + ], + [ + "2010S31", + "0" + ], + [ + "2010S32", + "0" + ], + [ + "2010S33", + "0" + ], + [ + "2010S34", + "0" + ], + [ + "2010S35", + "0" + ], + [ + "2010S36", + "0" + ], + [ + "2010S37", + "0" + ], + [ + "2010S38", + "0" + ], + [ + "2010S39", + "0" + ], + [ + "2010S40", + "0" + ], + [ + "2010S41", + "0" + ], + [ + "2010S42", + "0" + ], + [ + "2010S43", + "0" + ], + [ + "2010S44", + "0" + ], + [ + "2010S45", + "0" + ], + [ + "2010S46", + "0" + ], + [ + "2010S47", + "0" + ], + [ + "2010S48", + "0" + ], + [ + "2010S49", + "0" + ], + [ + "2010S50", + "0" + ], + [ + "2010S51", + "0" + ], + [ + "2010S52", + "0" + ], + [ + "2011S1", + "0" + ], + [ + "2011S2", + "0" + ], + [ + "2011S3", + "0" + ], + [ + "2011S4", + "0" + ], + [ + "2011S5", + "0" + ], + [ + "2011S6", + "0" + ], + [ + "2011S7", + "0" + ], + [ + "2011S8", + "0" + ], + [ + "2011S9", + "0" + ], + [ + "2011S10", + "0" + ], + [ + "2011S11", + "0" + ], + [ + "2011S12", + "0" + ], + [ + "2011S13", + "0" + ], + [ + "2011S14", + "0" + ], + [ + "2011S15", + "0" + ], + [ + "2011S16", + "0" + ], + [ + "2011S17", + "0" + ], + [ + "2011S18", + "0" + ], + [ + "2011S19", + "0" + ], + [ + "2011S20", + "0" + ], + [ + "2011S21", + "0" + ], + [ + "2011S22", + "0" + ], + [ + "2011S23", + "0" + ], + [ + "2011S24", + "0" + ], + [ + "2011S25", + "0" + ], + [ + "2011S26", + "0" + ], + [ + "2011S27", + "0" + ], + [ + "2011S28", + "0" + ], + [ + "2011S29", + "0" + ], + [ + "2011S30", + "0" + ], + [ + "2011S31", + "0" + ], + [ + "2011S32", + "0" + ], + [ + "2011S33", + "0" + ], + [ + "2011S34", + "0" + ], + [ + "2011S35", + "0" + ], + [ + "2011S36", + "0" + ], + [ + "2011S37", + "0" + ], + [ + "2011S38", + "0" + ], + [ + "2011S39", + "0" + ], + [ + "2011S40", + "0" + ], + [ + "2011S41", + "0" + ], + [ + "2011S42", + "0" + ], + [ + "2011S43", + "0" + ], + [ + "2011S44", + "0" + ], + [ + "2011S45", + "0" + ], + [ + "2011S46", + "0" + ], + [ + "2011S47", + "0" + ], + [ + "2011S48", + "0" + ], + [ + "2011S49", + "0" + ], + [ + "2011S50", + "0" + ], + [ + "2011S51", + "0" + ], + [ + "2011S52", + "0" + ], + [ + "2012S1", + "0" + ], + [ + "2012S2", + "0" + ], + [ + "2012S3", + "0" + ], + [ + "2012S4", + "0" + ], + [ + "2012S5", + "0" + ], + [ + "2012S6", + "0" + ], + [ + "2012S7", + "0" + ], + [ + "2012S8", + "0" + ], + [ + "2012S9", + "0" + ], + [ + "2012S10", + "0" + ], + [ + "2012S11", + "0" + ], + [ + "2012S12", + "0" + ], + [ + "2012S13", + "0" + ], + [ + "2012S14", + "0" + ], + [ + "2012S15", + "0" + ], + [ + "2012S16", + "0" + ], + [ + "2012S17", + "0" + ], + [ + "2012S18", + "0" + ], + [ + "2012S19", + "0" + ], + [ + "2012S20", + "0" + ], + [ + "2012S21", + "0" + ], + [ + "2012S22", + "0" + ], + [ + "2012S23", + "0" + ], + [ + "2012S24", + "0" + ], + [ + "2012S25", + "0" + ], + [ + "2012S26", + "0" + ], + [ + "2012S27", + "0" + ], + [ + "2012S28", + "0" + ], + [ + "2012S29", + "0" + ], + [ + "2012S30", + "0" + ], + [ + "2012S31", + "0" + ], + [ + "2012S32", + "0" + ], + [ + "2012S33", + "0" + ], + [ + "2012S34", + "0" + ], + [ + "2012S35", + "0" + ], + [ + "2012S36", + "0" + ], + [ + "2012S37", + "0" + ], + [ + "2012S38", + "0" + ], + [ + "2012S39", + "0" + ], + [ + "2012S40", + "0" + ], + [ + "2012S41", + "0" + ], + [ + "2012S42", + "0" + ], + [ + "2012S43", + "0" + ], + [ + "2012S44", + "0" + ], + [ + "2012S45", + "0" + ], + [ + "2012S46", + "0" + ], + [ + "2012S47", + "0" + ], + [ + "2012S48", + "0" + ], + [ + "2012S49", + "0" + ], + [ + "2012S50", + "0" + ], + [ + "2012S51", + "0" + ], + [ + "2012S52", + "0" + ], + [ + "2013S1", + "0" + ], + [ + "2013S2", + "0" + ], + [ + "2013S3", + "0" + ], + [ + "2013S4", + "0" + ], + [ + "2013S5", + "0" + ], + [ + "2013S6", + "0" + ], + [ + "2013S7", + "0" + ], + [ + "2013S8", + "0" + ], + [ + "2013S9", + "0" + ], + [ + "2013S10", + "0" + ], + [ + "2013S11", + "0" + ], + [ + "2013S12", + "0" + ], + [ + "2013S13", + "0" + ], + [ + "2013S14", + "0" + ], + [ + "2013S15", + "0" + ], + [ + "2013S16", + "0" + ], + [ + "2013S17", + "0" + ], + [ + "2013S18", + "0" + ], + [ + "2013S19", + "0" + ], + [ + "2013S20", + "0" + ], + [ + "2013S21", + "0" + ], + [ + "2013S22", + "0" + ], + [ + "2013S23", + "0" + ], + [ + "2013S24", + "0" + ], + [ + "2013S25", + "0" + ], + [ + "2013S26", + "0" + ], + [ + "2013S27", + "0" + ], + [ + "2013S28", + "0" + ], + [ + "2013S29", + "0" + ], + [ + "2013S30", + "0" + ], + [ + "2013S31", + "0" + ], + [ + "2013S32", + "0" + ], + [ + "2013S33", + "0" + ], + [ + "2013S34", + "0" + ], + [ + "2013S35", + "0" + ], + [ + "2013S36", + "0" + ], + [ + "2013S37", + "0" + ], + [ + "2013S38", + "0" + ], + [ + "2013S39", + "0" + ], + [ + "2013S40", + "0" + ], + [ + "2013S41", + "0" + ], + [ + "2013S42", + "0" + ], + [ + "2013S43", + "0" + ], + [ + "2013S44", + "0" + ], + [ + "2013S45", + "0" + ], + [ + "2013S46", + "0" + ], + [ + "2013S47", + "0" + ], + [ + "2013S48", + "0" + ], + [ + "2013S49", + "0" + ], + [ + "2013S50", + "0" + ], + [ + "2013S51", + "0" + ], + [ + "2013S52", + "0" + ], + [ + "2014S1", + "0" + ], + [ + "2014S2", + "0" + ], + [ + "2014S3", + "0" + ], + [ + "2014S4", + "0" + ], + [ + "2014S5", + "0" + ], + [ + "2014S6", + "0" + ], + [ + "2014S7", + "0" + ], + [ + "2014S8", + "0" + ], + [ + "2014S9", + "0" + ], + [ + "2014S10", + "0" + ], + [ + "2014S11", + "0" + ], + [ + "2014S12", + "0" + ], + [ + "2014S13", + "0" + ], + [ + "2014S14", + "0" + ], + [ + "2014S15", + "0" + ], + [ + "2014S16", + "0" + ], + [ + "2014S17", + "0" + ], + [ + "2014S18", + "0" + ], + [ + "2014S19", + "0" + ], + [ + "2014S20", + "0" + ], + [ + "2014S21", + "0" + ], + [ + "2014S22", + "0" + ], + [ + "2014S23", + "0" + ], + [ + "2014S24", + "0" + ], + [ + "2014S25", + "0" + ], + [ + "2014S26", + "0" + ], + [ + "2014S27", + "0" + ], + [ + "2014S28", + "0" + ], + [ + "2014S29", + "0" + ], + [ + "2014S30", + "0" + ], + [ + "2014S31", + "0" + ], + [ + "2014S32", + "0" + ], + [ + "2014S33", + "0" + ], + [ + "2014S34", + "0" + ], + [ + "2014S35", + "0" + ], + [ + "2014S36", + "0" + ], + [ + "2014S37", + "0" + ], + [ + "2014S38", + "0" + ], + [ + "2014S39", + "0" + ], + [ + "2014S40", + "0" + ], + [ + "2014S41", + "0" + ], + [ + "2014S42", + "0" + ], + [ + "2014S43", + "0" + ], + [ + "2014S44", + "0" + ], + [ + "2014S45", + "0" + ], + [ + "2014S46", + "0" + ], + [ + "2014S47", + "0" + ], + [ + "2014S48", + "0" + ], + [ + "2014S49", + "0" + ], + [ + "2014S50", + "0" + ], + [ + "2014S51", + "0" + ], + [ + "2014S52", + "0" + ], + [ + "2015S1", + "0" + ], + [ + "2015S2", + "0" + ], + [ + "2015S3", + "0" + ], + [ + "2015S4", + "0" + ], + [ + "2015S5", + "0" + ], + [ + "2015S6", + "0" + ], + [ + "2015S7", + "0" + ], + [ + "2015S8", + "0" + ], + [ + "2015S9", + "0" + ], + [ + "2015S10", + "0" + ], + [ + "2015S11", + "0" + ], + [ + "2015S12", + "0" + ], + [ + "2015S13", + "0" + ], + [ + "2015S14", + "0" + ], + [ + "2015S15", + "0" + ], + [ + "2015S16", + "0" + ], + [ + "2015S17", + "0" + ], + [ + "2015S18", + "0" + ], + [ + "2015S19", + "0" + ], + [ + "2015S20", + "0" + ], + [ + "2015S21", + "0" + ], + [ + "2015S22", + "0" + ], + [ + "2015S23", + "0" + ], + [ + "2015S24", + "0" + ], + [ + "2015S25", + "0" + ], + [ + "2015S26", + "0" + ], + [ + "2015S27", + "0" + ], + [ + "2015S28", + "0" + ], + [ + "2015S29", + "0" + ], + [ + "2015S30", + "0" + ], + [ + "2015S31", + "0" + ], + [ + "2015S32", + "0" + ], + [ + "2015S33", + "0" + ], + [ + "2015S34", + "0" + ], + [ + "2015S35", + "0" + ], + [ + "2015S36", + "0" + ], + [ + "2015S37", + "0" + ], + [ + "2015S38", + "0" + ], + [ + "2015S39", + "0" + ], + [ + "2015S40", + "0" + ], + [ + "2015S41", + "0" + ], + [ + "2015S42", + "0" + ], + [ + "2015S43", + "0" + ], + [ + "2015S44", + "0" + ], + [ + "2015S45", + "0" + ], + [ + "2015S46", + "0" + ], + [ + "2015S47", + "0" + ], + [ + "2015S48", + "0" + ], + [ + "2015S49", + "0" + ], + [ + "2015S50", + "0" + ], + [ + "2015S51", + "0" + ], + [ + "2015S52", + "0" + ], + [ + "2015S53", + "0" + ], + [ + "2016S1", + "0" + ], + [ + "2016S2", + "0" + ], + [ + "2016S3", + "0" + ], + [ + "2016S4", + "0" + ], + [ + "2016S5", + "0" + ], + [ + "2016S6", + "0" + ], + [ + "2016S7", + "0" + ], + [ + "2016S8", + "0" + ], + [ + "2016S9", + "0" + ], + [ + "2016S10", + "0" + ], + [ + "2016S11", + "0" + ], + [ + "2016S12", + "0" + ], + [ + "2016S13", + "0" + ], + [ + "2016S14", + "0" + ], + [ + "2016S15", + "0" + ], + [ + "2016S16", + "0" + ], + [ + "2016S17", + "0" + ], + [ + "2016S18", + "0" + ], + [ + "2016S19", + "0" + ], + [ + "2016S20", + "0" + ], + [ + "2016S21", + "0" + ], + [ + "2016S22", + "0" + ], + [ + "2016S23", + "0" + ], + [ + "2016S24", + "0" + ], + [ + "2016S25", + "0" + ], + [ + "2016S26", + "0" + ], + [ + "2016S27", + "0" + ], + [ + "2016S28", + "0" + ], + [ + "2016S29", + "0" + ], + [ + "2016S30", + "0" + ], + [ + "2016S31", + "0" + ], + [ + "2016S32", + "0" + ], + [ + "2016S33", + "0" + ], + [ + "2016S34", + "0" + ], + [ + "2016S35", + "0" + ], + [ + "2016S36", + "0" + ], + [ + "2016S37", + "0" + ], + [ + "2016S38", + "0" + ], + [ + "2016S39", + "0" + ], + [ + "2016S40", + "0" + ], + [ + "2016S41", + "0" + ], + [ + "2016S42", + "0" + ], + [ + "2016S43", + "0" + ], + [ + "2016S44", + "0" + ], + [ + "2016S45", + "0" + ], + [ + "2016S46", + "0" + ], + [ + "2016S47", + "0" + ], + [ + "2016S48", + "0" + ], + [ + "2016S49", + "0" + ], + [ + "2016S50", + "0" + ], + [ + "2016S51", + "0" + ], + [ + "2016S52", + "0" + ], + [ + "2017S1", + "0" + ], + [ + "2017S2", + "0" + ], + [ + "2017S3", + "0" + ], + [ + "2017S4", + "0" + ], + [ + "2017S5", + "0" + ], + [ + "2017S6", + "0" + ], + [ + "2017S7", + "0" + ], + [ + "2017S8", + "0" + ], + [ + "2017S9", + "0" + ], + [ + "2017S10", + "0" + ], + [ + "2017S11", + "0" + ], + [ + "2017S12", + "0" + ], + [ + "2017S13", + "0" + ], + [ + "2017S14", + "0" + ], + [ + "2017S15", + "0" + ], + [ + "2017S16", + "0" + ], + [ + "2017S17", + "0" + ], + [ + "2017S18", + "0" + ], + [ + "2017S19", + "0" + ], + [ + "2017S20", + "0" + ], + [ + "2017S21", + "0" + ], + [ + "2017S22", + "0" + ], + [ + "2017S23", + "0" + ], + [ + "2017S24", + "0" + ], + [ + "2017S25", + "0" + ], + [ + "2017S26", + "0" + ], + [ + "2017S27", + "0" + ], + [ + "2017S28", + "0" + ], + [ + "2017S29", + "0" + ], + [ + "2017S30", + "0" + ], + [ + "2017S31", + "0" + ], + [ + "2017S32", + "0" + ], + [ + "2017S33", + "0" + ], + [ + "2017S34", + "0" + ], + [ + "2017S35", + "0" + ], + [ + "2017S36", + "0" + ], + [ + "2017S37", + "0" + ], + [ + "2017S38", + "0" + ], + [ + "2017S39", + "0" + ], + [ + "2017S40", + "0" + ], + [ + "2017S41", + "0" + ], + [ + "2017S42", + "0" + ], + [ + "2017S43", + "0" + ], + [ + "2017S44", + "0" + ], + [ + "2017S45", + "0" + ], + [ + "2017S46", + "0" + ], + [ + "2017S47", + "0" + ], + [ + "2017S48", + "0" + ], + [ + "2017S49", + "0" + ], + [ + "2017S50", + "0" + ], + [ + "2017S51", + "0" + ], + [ + "2017S52", + "0" + ], + [ + "2018S1", + "0" + ], + [ + "2018S2", + "0" + ], + [ + "2018S3", + "0" + ], + [ + "2018S4", + "0" + ], + [ + "2018S5", + "0" + ], + [ + "2018S6", + "0" + ], + [ + "2018S7", + "0" + ], + [ + "2018S8", + "0" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Autre demande d\u2019information", - "24", - "52", - "59", - "31", - "40", - "8", - "12", - "12", - "3", - "1", - "0", - "0", - "242" + "2018S9", + "0" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Horaires d\u00e9ch\u00e8teries", - "104", - "40", - "67", - "103", - "240", - "56", - "97", - "148", - "502", - "387", - "0", - "0", - "1744" + "2018S10", + "0" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : S\u00e9curit\u00e9 d\u00e9ch\u00e8teries", - "5", - "2", - "0", - "1", - "4", - "3", - "0", - "0", - "0", - "0", - "0", - "0", - "15" + "2018S11", + "0" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s", - "0", - "0", - "0", - "0", - "0", - "0", - "148", - "117", - "98", - "8", - "0", - "0", - "371" + "2018S12", + "0" ], [ - "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s en d\u00e9ch\u00e8teries", - "70", - "58", - "86", - "133", - "124", - "158", - "0", - "0", - "0", - "0", - "0", - "0", - "629" + "2018S13", + "0" ], [ - "Une animation, un atelier ou une visite - Qualification par le guichet : Un atelier compostage", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "20", - "15", - "3", - "38" + "2018S14", + "0" ], [ - "Une animation, un atelier ou une visite - Qualification par le guichet : Une animation sur le tri", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "7", - "14", - "2", - "23" + "2018S15", + "0" ], [ - "Une animation, un atelier ou une visite - Qualification par le guichet : Une visite du centre de tri", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "2", - "0", - "2" + "2018S16", + "0" ], [ - "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Autre dysfonctionnement", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "5", - "9", - "1", - "15" + "2018S17", + "0" ], [ - "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Fermeture d\u00e9ch\u00e8terie", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "6", - "3", - "0", - "9" + "2018S18", + "0" ], [ - "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Gardiennage", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "1", - "0", - "1" + "2018S19", + "0" ], [ - "Total", - "1037", - "745", - "1215", - "1337", - "1649", - "1209", - "1374", - "1426", - "1706", - "3696", - "2050", - "273", - "17717" - ] - ], - "zz_old_Tous formulaires - Demandes par secteur et par mois - ann\u00e9e en cours": [ - [ - "", - "Grand-Sud", - "inconnu", - "Nord-Est", - "Nord-Ouest", - "Sud", - "Total" + "2018S20", + "0" ], [ - "janvier", - "198", - "0", - "326", - "255", - "258", - "1037" + "2018S21", + "0" ], [ - "f\u00e9vrier", - "122", - "0", - "225", - "210", - "188", - "745" + "2018S22", + "0" ], [ - "mars", - "269", - "0", - "322", - "289", - "335", - "1215" + "2018S23", + "0" ], [ - "avril", - "276", - "0", - "423", - "540", - "315", - "1554" + "2018S24", + "0" ], [ - "mai", - "391", - "0", - "638", - "563", - "482", - "2074" + "2018S25", + "0" ], [ - "juin", - "315", - "0", - "484", - "507", - "416", - "1722" + "2018S26", + "0" ], [ - "juillet", - "354", - "0", - "626", - "610", - "423", - "2013" + "2018S27", + "0" ], [ - "ao\u00fbt", - "307", - "0", - "647", - "589", - "493", - "2036" + "2018S28", + "0" ], [ - "septembre", - "435", - "0", - "712", - "803", - "434", - "2384" + "2018S29", + "0" ], [ - "octobre", - "564", - "1", - "1591", - "1309", - "848", - "4313" + "2018S30", + "0" ], [ - "novembre", - "516", - "12", - "932", - "752", - "498", - "2710" + "2018S31", + "0" ], [ - "d\u00e9cembre", - "66", - "0", - "131", - "115", - "90", - "402" + "2018S32", + "0" ], [ - "Total", - "3813", - "13", - "7057", - "6542", - "4780", - "22205" - ] - ], - "zz_old_Tous formulaires - Demandes par semaine - 3 derniers mois": [ + "2018S33", + "0" + ], [ - "semaine (date de la demande)", - "nombre de demandes" + "2018S34", + "0" ], [ "2018S35", @@ -148768,6 +152773,230 @@ [ "2018S49", "409" + ], + [ + "2018S50", + "0" + ], + [ + "2018S51", + "0" + ], + [ + "2018S52", + "0" + ], + [ + "2019S1", + "0" + ], + [ + "2019S2", + "0" + ], + [ + "2019S3", + "0" + ], + [ + "2019S4", + "0" + ], + [ + "2019S5", + "0" + ], + [ + "2019S6", + "0" + ], + [ + "2019S7", + "0" + ], + [ + "2019S8", + "0" + ], + [ + "2019S9", + "0" + ], + [ + "2019S10", + "0" + ], + [ + "2019S11", + "0" + ], + [ + "2019S12", + "0" + ], + [ + "2019S13", + "0" + ], + [ + "2019S14", + "0" + ], + [ + "2019S15", + "0" + ], + [ + "2019S16", + "0" + ], + [ + "2019S17", + "0" + ], + [ + "2019S18", + "0" + ], + [ + "2019S19", + "0" + ], + [ + "2019S20", + "0" + ], + [ + "2019S21", + "0" + ], + [ + "2019S22", + "0" + ], + [ + "2019S23", + "0" + ], + [ + "2019S24", + "0" + ], + [ + "2019S25", + "0" + ], + [ + "2019S26", + "0" + ], + [ + "2019S27", + "0" + ], + [ + "2019S28", + "0" + ], + [ + "2019S29", + "0" + ], + [ + "2019S30", + "0" + ], + [ + "2019S31", + "0" + ], + [ + "2019S32", + "0" + ], + [ + "2019S33", + "0" + ], + [ + "2019S34", + "0" + ], + [ + "2019S35", + "0" + ], + [ + "2019S36", + "0" + ], + [ + "2019S37", + "0" + ], + [ + "2019S38", + "0" + ], + [ + "2019S39", + "0" + ], + [ + "2019S40", + "0" + ], + [ + "2019S41", + "0" + ], + [ + "2019S42", + "0" + ], + [ + "2019S43", + "0" + ], + [ + "2019S44", + "0" + ], + [ + "2019S45", + "0" + ], + [ + "2019S46", + "0" + ], + [ + "2019S47", + "0" + ], + [ + "2019S48", + "0" + ], + [ + "2019S49", + "0" + ], + [ + "2019S50", + "0" + ], + [ + "2019S51", + "0" + ], + [ + "2019S52", + "0" + ], + [ + "2020S1", + "0" ] ], "zz_old_Tous formulaires - Demandes par statut simplifi\u00e9 et par mois - ann\u00e9e en cours": [ @@ -151520,6 +155749,7 @@ "Par courrier", "Par mail", "Par t\u00e9l\u00e9phone", + "Aucun(e)", "Total" ], [ @@ -151529,7 +155759,8 @@ "0", "0", "0", - "0" + "1037", + "1037" ], [ "f\u00e9vrier", @@ -151538,7 +155769,8 @@ "0", "0", "0", - "0" + "745", + "745" ], [ "mars", @@ -151547,7 +155779,8 @@ "0", "0", "0", - "0" + "1215", + "1215" ], [ "avril", @@ -151556,7 +155789,8 @@ "1", "42", "4", - "52" + "1603", + "1655" ], [ "mai", @@ -151565,7 +155799,8 @@ "1", "114", "37", - "161" + "2078", + "2239" ], [ "juin", @@ -151574,7 +155809,8 @@ "2", "169", "67", - "282" + "1673", + "1955" ], [ "juillet", @@ -151583,7 +155819,8 @@ "48", "317", "167", - "734" + "1279", + "2013" ], [ "ao\u00fbt", @@ -151592,7 +155829,8 @@ "26", "340", "229", - "740" + "1296", + "2036" ], [ "septembre", @@ -151601,7 +155839,8 @@ "14", "465", "103", - "687" + "1697", + "2384" ], [ "octobre", @@ -151610,7 +155849,8 @@ "26", "939", "896", - "3558" + "871", + "4429" ], [ "novembre", @@ -151619,7 +155859,8 @@ "63", "881", "655", - "2712" + "123", + "2835" ], [ "d\u00e9cembre", @@ -151628,7 +155869,8 @@ "1", "124", "91", - "405" + "19", + "424" ], [ "Total", @@ -151637,7 +155879,8 @@ "182", "3391", "2249", - "9331" + "13636", + "22967" ] ], "zz_old_Tous formulaires - D\u00e9lai de traitement moyen par mois - ann\u00e9e en cours": [ @@ -155135,6 +159378,22 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "3", + "3" + ], [ "Total", "0", @@ -155148,8 +159407,8 @@ "0", "0", "0", - "203", - "203" + "206", + "206" ] ], "zz_old_Tous formulaires - Nb demandes par an et par commune - ann\u00e9e en cours": [ @@ -156161,6 +160420,22 @@ "3", "314" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "116", + "123", + "19", + "258" + ], [ "Total", "1037", @@ -156172,10 +160447,10 @@ "2013", "2036", "2384", - "4313", - "2712", - "405", - "22709" + "4429", + "2835", + "424", + "22967" ] ], "zz_old_Tous formulaires - Tableau mensuel - D\u00e9lai moyen traitement par origine": [ @@ -156359,6 +160634,411 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "", + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", + "octobre", + "novembre", + "d\u00e9cembre" + ], + [ + "---", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Accueil physique", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Agent terrain", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Appel t\u00e9l\u00e9phonique", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Contact direct", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Courrier", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire Elu", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire Portail citoyen", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Observation terrain", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "", + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", + "octobre", + "novembre", + "d\u00e9cembre" + ], + [ + "---", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Accueil physique", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Agent terrain", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Appel t\u00e9l\u00e9phonique", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Contact direct", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Courrier", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire Elu", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Formulaire Portail citoyen", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Observation terrain", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -156539,6 +161219,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -156719,6 +161414,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -156865,7 +161575,7 @@ "0", "0", "0", - "0", + "6 heure(s)", "0", "0" ], @@ -156899,6 +161609,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -157079,6 +161804,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -157225,7 +161965,7 @@ "0", "0", "0", - "6 heure(s)", + "0", "0", "0" ], @@ -157259,6 +161999,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -157341,6 +162096,21 @@ "0", "0", "0", + "moins d'1 heure", + "moins d'1 heure", + "9 heure(s)", + "20 heure(s)", + "moins d'1 heure", + "10 heure(s)", + "2 heure(s)" + ], + [ + "Contact direct", + "0", + "0", + "0", + "0", + "0", "0", "0", "0", @@ -157350,7 +162120,37 @@ "0" ], [ - "Contact direct", + "Courrier", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "3 heure(s)", + "12 heure(s)", + "11 heure(s)", + "1 jour(s) 3 heure(s)" + ], + [ + "Formulaire", + "0", + "0", + "0", + "0", + "0", + "2 heure(s)", + "1 heure(s)", + "6 heure(s)", + "1 heure(s)", + "15 heure(s)", + "6 heure(s)", + "moins d'1 heure" + ], + [ + "Formulaire Elu", "0", "0", "0", @@ -157365,7 +162165,22 @@ "0" ], [ - "Courrier", + "Formulaire Portail citoyen", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure", + "9 heure(s)", + "13 heure(s)", + "9 heure(s)" + ], + [ + "Observation terrain", "0", "0", "0", @@ -157380,7 +162195,67 @@ "0" ], [ - "Formulaire", + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "", + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", + "octobre", + "novembre", + "d\u00e9cembre" + ], + [ + "---", + "45 jour(s) 19 heure(s)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Accueil physique", + "0", + "0", + "0", + "1 heure(s)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Agent terrain", "0", "0", "0", @@ -157394,6 +162269,81 @@ "0", "0" ], + [ + "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Appel t\u00e9l\u00e9phonique", + "7 heure(s)", + "7 heure(s)", + "17 heure(s)", + "11 heure(s)", + "12 heure(s)", + "4 heure(s)", + "6 heure(s)", + "6 heure(s)", + "5 heure(s)", + "10 heure(s)", + "7 heure(s)", + "1 heure(s)" + ], + [ + "Contact direct", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + [ + "Courrier", + "4 jour(s) 23 heure(s)", + "8 jour(s) 10 heure(s)", + "33 jour(s) 4 heure(s)", + "5 jour(s) 11 heure(s)", + "53 jour(s) 19 heure(s)", + "27 jour(s) 1 heure(s)", + "13 jour(s) 11 heure(s)", + "11 jour(s)", + "0", + "0", + "3 jour(s) 1 heure(s)", + "0" + ], + [ + "Formulaire", + "1 jour(s) 12 heure(s)", + "1 jour(s) 17 heure(s)", + "5 jour(s) 10 heure(s)", + "4 jour(s) 6 heure(s)", + "3 jour(s) 16 heure(s)", + "1 jour(s) 5 heure(s)", + "1 jour(s) 22 heure(s)", + "2 jour(s) 23 heure(s)", + "2 jour(s) 11 heure(s)", + "3 jour(s) 6 heure(s)", + "2 jour(s) 8 heure(s)", + "12 heure(s)" + ], [ "Formulaire Elu", "0", @@ -157411,6 +162361,21 @@ ], [ "Formulaire Portail citoyen", + "1 jour(s) 3 heure(s)", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "14 heure(s)", + "2 jour(s) 4 heure(s)", + "4 jour(s) 6 heure(s)", + "15 heure(s)" + ], + [ + "Observation terrain", "0", "0", "0", @@ -157425,7 +162390,7 @@ "0" ], [ - "Observation terrain", + "Aucun(e)", "0", "0", "0", @@ -157619,6 +162584,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -157701,21 +162681,6 @@ "0", "0", "0", - "moins d'1 heure", - "moins d'1 heure", - "9 heure(s)", - "20 heure(s)", - "moins d'1 heure", - "10 heure(s)", - "2 heure(s)" - ], - [ - "Contact direct", - "0", - "0", - "0", - "0", - "0", "0", "0", "0", @@ -157725,67 +162690,7 @@ "0" ], [ - "Courrier", - "0", - "0", - "0", - "0", - "0", - "0", - "moins d'1 heure", - "moins d'1 heure", - "3 heure(s)", - "12 heure(s)", - "11 heure(s)", - "1 jour(s) 3 heure(s)" - ], - [ - "Formulaire", - "0", - "0", - "0", - "0", - "0", - "2 heure(s)", - "1 heure(s)", - "6 heure(s)", - "1 heure(s)", - "15 heure(s)", - "6 heure(s)", - "moins d'1 heure" - ], - [ - "Formulaire Elu", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire Portail citoyen", - "0", - "0", - "0", - "0", - "0", - "0", - "moins d'1 heure", - "moins d'1 heure", - "moins d'1 heure", - "9 heure(s)", - "13 heure(s)", - "9 heure(s)" - ], - [ - "Observation terrain", + "Contact direct", "0", "0", "0", @@ -157800,41 +162705,11 @@ "0" ], [ - "", - "janvier", - "f\u00e9vrier", - "mars", - "avril", - "mai", - "juin", - "juillet", - "ao\u00fbt", - "septembre", - "octobre", - "novembre", - "d\u00e9cembre" - ], - [ - "---", - "45 jour(s) 19 heure(s)", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", + "Courrier", "0", - "0" - ], - [ - "Accueil physique", "0", "0", "0", - "1 heure(s)", "0", "0", "0", @@ -157845,7 +162720,7 @@ "0" ], [ - "Agent terrain", + "Formulaire", "0", "0", "0", @@ -157860,7 +162735,7 @@ "0" ], [ - "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", + "Formulaire Elu", "0", "0", "0", @@ -157875,22 +162750,7 @@ "0" ], [ - "Appel t\u00e9l\u00e9phonique", - "7 heure(s)", - "7 heure(s)", - "17 heure(s)", - "11 heure(s)", - "12 heure(s)", - "4 heure(s)", - "6 heure(s)", - "6 heure(s)", - "5 heure(s)", - "10 heure(s)", - "7 heure(s)", - "1 heure(s)" - ], - [ - "Contact direct", + "Formulaire Portail citoyen", "0", "0", "0", @@ -157905,37 +162765,7 @@ "0" ], [ - "Courrier", - "4 jour(s) 23 heure(s)", - "8 jour(s) 10 heure(s)", - "33 jour(s) 4 heure(s)", - "5 jour(s) 11 heure(s)", - "53 jour(s) 19 heure(s)", - "27 jour(s) 1 heure(s)", - "13 jour(s) 11 heure(s)", - "11 jour(s)", - "0", - "0", - "3 jour(s) 1 heure(s)", - "0" - ], - [ - "Formulaire", - "1 jour(s) 12 heure(s)", - "1 jour(s) 17 heure(s)", - "5 jour(s) 10 heure(s)", - "4 jour(s) 6 heure(s)", - "3 jour(s) 16 heure(s)", - "1 jour(s) 5 heure(s)", - "1 jour(s) 22 heure(s)", - "2 jour(s) 23 heure(s)", - "2 jour(s) 11 heure(s)", - "3 jour(s) 6 heure(s)", - "2 jour(s) 8 heure(s)", - "12 heure(s)" - ], - [ - "Formulaire Elu", + "Observation terrain", "0", "0", "0", @@ -157950,22 +162780,7 @@ "0" ], [ - "Formulaire Portail citoyen", - "1 jour(s) 3 heure(s)", - "0", - "0", - "0", - "0", - "0", - "moins d'1 heure", - "moins d'1 heure", - "14 heure(s)", - "2 jour(s) 4 heure(s)", - "4 jour(s) 6 heure(s)", - "15 heure(s)" - ], - [ - "Observation terrain", + "Aucun(e)", "0", "0", "0", @@ -158159,6 +162974,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -158339,6 +163169,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure" + ], [ "", "janvier", @@ -158519,6 +163364,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "8 jour(s) 12 heure(s)", + "8 jour(s) 18 heure(s)", + "0" + ], [ "", "janvier", @@ -158699,6 +163559,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "0" + ], [ "", "janvier", @@ -158879,6 +163754,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "0" + ], [ "", "janvier", @@ -159059,6 +163949,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure" + ], [ "", "janvier", @@ -159239,6 +164144,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure" + ], [ "", "janvier", @@ -159419,6 +164339,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure" + ], [ "", "janvier", @@ -159599,6 +164534,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "moins d'1 heure", + "moins d'1 heure", + "moins d'1 heure" + ], [ "", "janvier", @@ -159780,172 +164730,7 @@ "0" ], [ - "", - "janvier", - "f\u00e9vrier", - "mars", - "avril", - "mai", - "juin", - "juillet", - "ao\u00fbt", - "septembre", - "octobre", - "novembre", - "d\u00e9cembre" - ], - [ - "---", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Accueil physique", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Agent terrain", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Appel t\u00e9l\u00e9phonique", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Contact direct", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Courrier", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire Elu", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire Portail citoyen", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Observation terrain", + "Aucun(e)", "0", "0", "0", @@ -160139,6 +164924,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -160319,6 +165119,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -160499,6 +165314,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -160680,172 +165510,7 @@ "0" ], [ - "", - "janvier", - "f\u00e9vrier", - "mars", - "avril", - "mai", - "juin", - "juillet", - "ao\u00fbt", - "septembre", - "octobre", - "novembre", - "d\u00e9cembre" - ], - [ - "---", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Accueil physique", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Agent terrain", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Appel t\u00e9l\u00e9phonique", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Contact direct", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Courrier", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire Elu", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Formulaire Portail citoyen", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0", - "0" - ], - [ - "Observation terrain", + "Aucun(e)", "0", "0", "0", @@ -161039,6 +165704,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -161219,6 +165899,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -161399,6 +166094,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "48 jour(s) 14 heure(s)", + "43 jour(s) 4 heure(s)", + "32 jour(s) 21 heure(s)", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -161579,6 +166289,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -161759,6 +166484,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -161939,6 +166679,21 @@ "0", "0" ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], [ "", "janvier", @@ -162118,6 +166873,21 @@ "0", "0", "moins d'1 heure" + ], + [ + "Aucun(e)", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" ] ], "zz_old_Tous les formulaires : Demandes par mois et par formulaire - ann\u00e9e en cours": [ diff --git a/tests/test_schema1.py b/tests/test_schema1.py index 69a667c..6b93393 100644 --- a/tests/test_schema1.py +++ b/tests/test_schema1.py @@ -45,15 +45,15 @@ def test_truncated_previous_year_range(schema1, app, admin, freezer): freezer.move_to('2019-01-01 01:00:00') response = form.submit('visualize') assert get_table(response) == [ - ['', 'Total'], - ['Total', '0'] + ['', 'janvier', u'f\xe9vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', u'ao\xfbt', 'Total'], + ['2017', '0', '0', '0', '0', '0', '0', '0', '0', '0'], ] + freezer.move_to('2018-01-01 01:00:00') response = form.submit('visualize') assert get_table(response) == [ ['', 'janvier', u'f\xe9vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', u'ao\xfbt', 'Total'], ['2017', '10', '1', '1', '1', '1', '1', '1', '1', '17'], - ['Total', '10', '1', '1', '1', '1', '1', '1', '1', '17'], ] @@ -66,10 +66,10 @@ def test_boolean_dimension(schema1, app, admin): form.set('measure', 'simple_count') form.set('drilldown_x', 'boolean') response = form.submit('visualize') - assert get_table(response) == [['Boolean', 'Non', 'Oui'], ['number of rows', '9', '8']] + assert get_table(response) == [['Boolean', 'Oui', 'Non'], ['number of rows', '8', '9']] form.set('filter__boolean', [o[0] for o in form.fields['filter__boolean'][0].options if o[2] == 'Oui'][0]) response = form.submit('visualize') - assert get_table(response) == [['Boolean', 'Oui'], ['number of rows', '8']] + assert get_table(response) == [['Boolean', 'Oui', 'Non'], ['number of rows', '8', '0']] def test_string_dimension(schema1, app, admin): @@ -84,7 +84,7 @@ def test_string_dimension(schema1, app, admin): assert get_table(response) == [['String', 'a', 'b', 'c', 'Aucun(e)'], ['number of rows', '11', '2', '3', '1']] form.set('filter__string', ['a', 'b', '__none__']) response = form.submit('visualize') - assert get_table(response) == [['String', 'a', 'b', 'Aucun(e)'], ['number of rows', '11', '2', '1']] + assert get_table(response) == [['String', 'a', 'b', 'c', 'Aucun(e)'], ['number of rows', '11', '2', '0', '1']] def test_item_dimension(schema1, app, admin): @@ -103,7 +103,11 @@ def test_item_dimension(schema1, app, admin): ] form.set('filter__outersubcategory', ['__none__']) response = form.submit('visualize') - assert get_table(response) == [['Outer SubCategory', 'Aucun(e)'], ['number of rows', '1']] + assert get_table(response) == [ + ['Outer SubCategory', u'sub\xe94', u'sub\xe95', u'sub\xe96', u'sub\xe98', + u'sub\xe99', u'sub\xe97', u'sub\xe92', u'sub\xe93', u'sub\xe91', 'Aucun(e)'], + ['number of rows', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'] + ] def test_yearmonth_drilldown(schema1, app, admin): @@ -160,13 +164,12 @@ def test_truncated_previous_year_range_on_datetime(schema1, app, admin, freezer) freezer.move_to('2019-01-01 01:00:00') response = form.submit('visualize') assert get_table(response) == [ - ['', 'Total'], - ['Total', '0'] + ['', 'janvier', u'f\xe9vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', u'ao\xfbt', 'Total'], + ['2017', '0', '0', '0', '0', '0', '0', '0', '0', '0'], ] freezer.move_to('2018-01-01 01:00:00') response = form.submit('visualize') assert get_table(response) == [ ['', 'janvier', u'f\xe9vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', u'ao\xfbt', 'Total'], ['2017', '10', '1', '1', '1', '1', '1', '1', '1', '17'], - ['Total', '10', '1', '1', '1', '1', '1', '1', '1', '17'], ] -- 2.23.0