Changes between Version 1 and Version 2 of Ticket #10929, comment 20
- Timestamp:
- Dec 9, 2016, 10:58:49 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10929, comment 20
v1 v2 4 4 5 5 {{{#!python 6 Sum('amount', coalesce=F('minimum_amount') 6 Sum('amount', coalesce=F('minimum_amount')) 7 7 }}} 8 9 Which is more readable than 10 11 {{{#!python 12 Coalesce(Sum('amount), F('minimum_amount')) 13 }}}