From c7851afb7ffdcd66069e4fee98cae67a0262e07a Mon Sep 17 00:00:00 2001 From: nanoy Date: Tue, 20 Aug 2019 21:21:33 +0200 Subject: [PATCH] Fix cotisations --- staticfiles/manage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staticfiles/manage.js b/staticfiles/manage.js index f4d3249..24e242a 100644 --- a/staticfiles/manage.js +++ b/staticfiles/manage.js @@ -32,7 +32,7 @@ function get_menu(id){ function get_cotisation(id){ res = $.get("../preferences/getCotisation/" + id, function(data){ - add_cotisation(data.pk, "", data.duration, data.amount, data.needQuantityButton); + add_cotisation(data.pk, data.duration, data.amount); }); }