Possible Duplicate:
Grouping dates in Django

I've got a simple Model like this:

class Order(models.Model):
    created = model.DateTimeField(auto_now_add=True)
    total = models.IntegerField() # monetary value

And I want to output a month-by-month breakdown of:

  • How many sales there were in a month (COUNT)
  • The combined value (SUM)

I'm not sure what the best way to attack this is. I've seen some fairly scary-looking extra-select queries but my simple mind is telling me I might be better off just iterating numbers, starting from an arbitrary start year/month and counting up until I reach the current month, throwing out simple queries filtering for that month. More database work - less developer stress!

What makes most sense to you? Is there a nice way I can pull back a quick table of data? Or is my dirty method probably the best idea?

I'm using Django 1.3. Not sure if they've added a nicer way to GROUP_BY recently.

link|improve this question

70% accept rate
feedback

closed as exact duplicate by casperOne Jan 6 at 17:22

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

This does it nice and smooth:

from django.db import connection
truncate_date = connection.ops.date_trunc_sql('month','created')
qs = Order.objects.extra({'month':truncate_date})
report = qs.values('month').annotate(Sum('total'), Count('pk')).order_by('month')

Edit: Added count

link|improve this answer
1  
Oh yes, that makes a lot more sense than my hacktastrophe. Have some points. – Oli Jan 5 at 17:34
+1 for the hacktastrophe – Till Backhaus Jan 5 at 17:35
I don't suppose there's a nice simple way to convert the date into a proper datetime.date? Either in-template or as part of the query? I'm currently passing this output through a list-comprehension to sort the date out. – Oli Jan 5 at 17:56
what about xx.month.date() which whould be {{ row.month.date }} in the template? – Till Backhaus Jan 5 at 18:02
but {{ row.month|date: "Y m d" }} should work even better. – Till Backhaus Jan 5 at 18:06
show 2 more comments
feedback

Here's my dirty method. It is dirty.

import datetime, decimal
from django.db.models import Count, Sum
from account.models import Order
d = []

# arbitrary starting dates
year = 2011
month = 12

cyear = datetime.date.today().year
cmonth = datetime.date.today().month

while year <= cyear:
    while (year < cyear and month <= 12) or (year == cyear and month <= cmonth):
        sales = Order.objects.filter(created__year=year, created__month=month).aggregate(Count('total'), Sum('total'))
        d.append({
            'year': year,
            'month': month,
            'sales': sales['total__count'] or 0,
            'value': decimal.Decimal(sales['total__sum'] or 0),
        })
        month += 1
    month = 1
    year += 1

There may well be a better way of looping years/months but that's not really what I care about :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.