Fix total price amount relation on purchase (fixes #722)

This commit is contained in:
Bernd Bestel
2020-04-13 14:52:13 +02:00
parent 1fc802c30e
commit 9a93c32d3c
2 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,7 @@
if ($("input[name='price-type']:checked").val() == "total-price")
{
price = price / amount;
price = price / jsonForm.amount;
}
}