mirror of https://gitlab.crans.org/bde/nk20
Fix the amount history in the button update page
This commit is contained in:
parent
f5f379e6ad
commit
29f8b9215d
|
@ -121,6 +121,9 @@ class TransactionTemplateUpdateView(ProtectQuerysetMixin, LoginRequiredMixin, Up
|
|||
for log in update_logs.all():
|
||||
old_dict = json.loads(log.previous)
|
||||
new_dict = json.loads(log.data)
|
||||
if not "amount" in old_price:
|
||||
# The amount price of the button was not modified in this changelog
|
||||
continue
|
||||
old_price = old_dict["amount"]
|
||||
new_price = new_dict["amount"]
|
||||
if old_price != new_price:
|
||||
|
|
Loading…
Reference in New Issue