PonyConf/proposals/utils.py
2016-07-02 01:03:07 +02:00

7 lines
177 B
Python

from django.db.models import Sum
from django.db.models.functions import Coalesce
def query_sum(queryset, field):
return queryset.aggregate(s=Coalesce(Sum(field), 0))['s']