📜  在 django 模型中求和值并在模型字段中插入值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:55.906000             🧑  作者: Mango

代码示例1
# models.py
def total_amount_spent(self):
    temp_values = [int(user.amount_spent) for user in ExtendedProfile.objects.all()]
    return sum(temp_values)