Django Query中的重复值在聚合和SUM上

时间:2017-09-18 11:03:40

标签: python django orm django-queryset pygal

我正在使用PyGal在前端渲染一些图表。我的django-view [基于功能]看起来像这样:

def random_view(request):
    values_list = list()
    camera_dict = dict()
    bar_chart = pygal.Bar(spacing=60, explicit_size=True, width=2000,
                          height=800, pretty_print=True, margin=5, x_label_rotation=60, show_minor_x_labels=True)
    bar_chart.x_labels = ['8 AM', '9 AM', '10 AM', '11 AM', '12 Noon', '13 PM', '14 PM',
                          '15 PM', '16 PM', '17 PM', '18 PM', '19 PM', '20 PM', '21 PM', '22 PM', '23 PM']

    if request.method == 'GET':
        profile = Profile.objects.get(user_profile=request.user)
        store_qs = Store.objects.filter(brand_admin=profile)
        for store in store_qs:
            cam_qs = Camera.objects.filter(install_location=store)
            for cam in cam_qs:
                for x in range(10, 22):
                    value = PeopleCount.objects.filter(
                        timestamp__date='2017-09-06', timestamp__hour=x, camera=cam).aggregate(Sum('people_count_entry'))['people_count_entry__sum']  # noqa
                    values_list.append(value)
                bar_chart.add(str(cam), values_list)
        context = {'test': camera_dict, 'fun': bar_chart.render_data_uri()}

    return render(request, 'reports/report_daily.html', context)

问题是我得到两个不同相机对象的相同值。

的信息:

例如,如果storetwo cameras,请说cam1 and cam2。我得到的两个凸轮都是相同的值,不应该是这种情况。

我不知道我在哪里弄错了。帮助感谢

提前致谢:)

1 个答案:

答案 0 :(得分:2)

问题是你在“相机”循环之外定义values_list。你正在做的是建立一个列表,其中包含来自所有商店的所有摄像机的值。要为每个摄像头构建列表,请在“摄像头”循环内实例化values_list

#...
for cam in cam_qs:
    values_list = []
    # ...