My database is set up with a list of cases with an ID from our ticketing system, a location, an assigned person and a short description taken from the ticket:

  • Case
    • ID
    • Location
    • Assigned Person
    • Short Description
    • Status

Now to help better sort things, depending on certain status values, we change the QuerySet after querying it.

current_active = Case.objects.filter(queue_num=0,status__lt=6)
for item in current_active:
    if(item.location == 'NPH'):
        item.assigned_tech = 'NPH'
    elif(item.location == 'Bins'):
        item.assigned_tech = 'Bins'
    elif(item.status > '2' and item.status < '6'):
        item.assigned_tech = 'Pending'

I was wondering if there was any way to sort this new modified QuerySet. We know it prints correctly, it just comes down to the sorting that gets messed up.

UPDATE 2

current_active = Case.objects.filter(queue_num=0,status__lt=6)
current_active_list = []
for item in current_active:
    number = item.id
    item.id = '%07d' % number
    phone = item.myneuname.phonenumber
    if(len(phone) > 7):
        formattedPhone = phone[:-10]+' ('+phone[-10:-7]+') '+phone[-7:-4]+'-'+phone[-4:]
        item.myneuname.phonenumber = formattedPhone
    if(item.location == 'NPH'):
        item.assigned_tech = 'NPH'
    elif(item.location == 'Bins'):
        item.assigned_tech = 'Bins'
    elif(item.status > '2' and item.status < '6'):
        item.assigned_tech = 'Pending'
    current_active_list.append(item)
current_active_list.sort(key=lambda x: x.assigned_tech)

While this is not idea and Django-style, this does work. If you have the same issue and find a more reasonable way to fix this problem, please don't hesitate to reply. Making a Python list seemed the only way possible without saving data.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Since you're evaluating the queryset and then modifying some of the elements without saving, you need to avoid anything that goes back to the database and re-evaluates it. In your case, there's nothing wrong with simply ordering the list in Python - for example:

current_active.sort(key=lambda x: x.assigned_tech)

to sort by the assigned_tech field.

link|improve this answer
Unfortunately, this will just do the exact thing as order_by and ignore the new values. – tlunter May 17 '11 at 21:53
Updated to show new code. – tlunter May 17 '11 at 22:15
feedback

Maybe you're talking about order_by method of django's ORM

link|improve this answer
order_by works on the original query. But if we run it after modifying the values, it doesn't seem to work correctly. – tlunter May 17 '11 at 20:30
how are you "modifying" the values of the query? – diegueus9 May 17 '11 at 20:34
Updated original post – tlunter May 17 '11 at 20:44
And then how do you run again the queryset? – diegueus9 May 17 '11 at 20:46
We would try and order_by by doing current_active.order_by('assigned_tech') after the for loop – tlunter May 17 '11 at 20:47
show 15 more comments
feedback

Not sure how you would sort that same QuerySet based on your new property, but if you were to append each item into a new list (after assigning assigned_tech to each item), you could do something like this:

import operator
new_list.sort(key=operator.attrgetter('assigned_tech'))

And to reverse the sort order:

import operator
new_list.sort(key=operator.attrgetter('assigned_tech'), reverse=True)

But if you find a way to do it without creating a new list, that would obviously be better and I would love to see it.

link|improve this answer
This is very similar to what Daniel Roseman said. – tlunter May 17 '11 at 22:16
feedback

Your Answer

 
or
required, but never shown

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