Fix: Add field total_order

This commit is contained in:
2025-01-29 16:21:40 -05:00
parent 096386d8f7
commit 12e42a67d0
2 changed files with 44 additions and 4 deletions

View File

@@ -41,5 +41,8 @@ Create order::
>>> line1.quantity = 4.0
>>> line1.unitprice = Decimal('8400')
>>> line1.total_amount = Decimal('33600')
>>> order.total_order = Decimal('33600')
>>> order.save()