我的代码:
verloningsoverzicht_cumulatief_dagen =
Overzicht.objects.filter(periode=periode, jaar=jaar)
.values('testcontract', 'contract')
.annotate(aantal=Sum('aantal'))
字符串
现在假设. annotatieSum是6.3500000,我想把它四舍五入到6.35。
.annotate(aantal=round(Sum('aantal'),2))
型
1条答案
按热度按时间34gzjxbg1#
你可以使用**
Round
**表达式[Django-doc]:字符串
如果使用django-3.2或更早版本,则可以使用:
型