Cảm ơn @Alasdair đã chỉ cho tôi đúng hướng.
Sau khi điền vào các trường của inst
(một Expense
mới ), làm:
with transaction.atomic():
project = models.Project.objects.select_for_update().get(
pk=project_id)
cost = project.total_cost()
budget = project.budget
if cost + inst.cost > budget:
raise forms.ValidationError(_('Over-budget'))
self._inst.save()
Lưu ý rằng tôi có total_cost
được định nghĩa như một phương thức trên Project
:
class Project:
def total_cost(self):
return self.expense_set.all().aggregate(
t=Sum(F('cost')))['t']