Last active
November 5, 2019 02:41
-
-
Save walison17/8114a1102cd4526f24689a107dd3c3e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def save_model(self, request, obj, form, change): | |
obj = super().save_model(request, obj, form, change) | |
form.save_m2m() | |
total = obj.item_pedido.aggregate(total=Sum('valor_item_pedido_qtd'))['total'] | |
obj.valor_total = total | |
obj.save(update_fields=['total']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment