Changes between Initial Version and Version 13 of Ticket #10972


Ignore:
Timestamp:
Sep 8, 2011, 8:44:14 PM (13 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10972

    • Property Version 1.1-beta-1SVN
    • Property Milestone 1.1
    • Property Triage Stage UnreviewedAccepted
    • Property Cc django@… Alexander Koshelev miracle2k meticulos_slacker bgrand nwp Dan Fairs added
    • Property Has patch set
    • Property Patch needs improvement set
    • Property SeverityNormal
    • Property TypeNew feature
    • Property Easy pickings unset
    • Property UI/UX unset
  • Ticket #10972 – Description

    initial v13  
    11It would be nice if expressions could be used inside annotations,  i.e. to perform something like the following:
    22
     3{{{
    34Customer.objects.annotate('total_purchased': Sum(F('customer__order__lineitem__quantity') * F('customer__order__lineitem__price')))
     5}}}
Back to Top