fix posdetail view when no pos json yet

This commit is contained in:
Thomas Steen Rasmussen 2021-08-19 10:47:33 +02:00
parent df10fc89c6
commit f28858e4a3

View file

@ -853,6 +853,7 @@ class PosReport(CampRelatedModel, UUIDModel):
"""Calculate the total HAX sales and number of transactions.""" """Calculate the total HAX sales and number of transactions."""
transactions = 0 transactions = 0
total = 0 total = 0
if self.pos_json:
for tx in self.pos_json: for tx in self.pos_json:
transactions += 1 transactions += 1
total += tx["amount"] total += tx["amount"]