📅  最后修改于: 2022-03-11 14:46:55.906000             🧑  作者: Mango
# models.py
def total_amount_spent(self):
temp_values = [int(user.amount_spent) for user in ExtendedProfile.objects.all()]
return sum(temp_values)