Changes between Version 1 and Version 2 of Ticket #10929, comment 20


Ignore:
Timestamp:
Dec 9, 2016, 10:58:49 AM (7 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10929, comment 20

    v1 v2  
    44
    55{{{#!python
    6 Sum('amount', coalesce=F('minimum_amount')
     6Sum('amount', coalesce=F('minimum_amount'))
    77}}}
     8
     9Which is more readable than
     10
     11{{{#!python
     12Coalesce(Sum('amount), F('minimum_amount'))
     13}}}
Back to Top