Backend order view: Show canceled fees

This commit is contained in:
Raphael Michel
2019-01-12 22:18:55 +01:00
parent 2d48198c83
commit 77ebd18404
2 changed files with 2 additions and 2 deletions

View File

@@ -231,7 +231,7 @@ class OrderDetail(OrderView):
'positions': positions,
'raw': cartpos,
'total': self.object.total,
'fees': self.object.fees.all(),
'fees': self.object.all_fees.all(),
'net_total': self.object.net_total,
'tax_total': self.object.tax_total,
}