Changes between Initial Version and Version 1 of Ticket #14030, comment 55


Ignore:
Timestamp:
Nov 30, 2014, 10:56:15 PM (9 years ago)
Author:
Josh Smeaton

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14030, comment 55

    initial v1  
    11Yeah I can see the problem. As a workaround, you could manually set the output_field yourself:
    22
    3 {{{ Sum('gross_income', output_field=models.DecimalField(max_digits=X, decimal_places=Y) }}}
     3{{{ Sum('gross_income', output_field=DecimalField(max_digits=X, decimal_places=Y) }}}
    44
    55I'll think on how to fix this so that a workaround isn't necessary. Should probably bump this to a release blocker, but I'm not sure whether to open a new ticket for the regression or to track it here just yet.
Back to Top