From 7313e5a337d4091e4eceee13984f959e9dd5b085 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 16 Mar 2020 13:06:02 +0100 Subject: [PATCH] Fix minor front bugs --- static/js/consos.js | 30 +++++++++++++++++++++------- templates/note/conso_form.html | 4 ++-- templates/note/transaction_form.html | 18 +++++++++++++---- 3 files changed, 39 insertions(+), 13 deletions(-) diff --git a/static/js/consos.js b/static/js/consos.js index a9a48a52..9fb0a8cb 100644 --- a/static/js/consos.js +++ b/static/js/consos.js @@ -24,40 +24,56 @@ $(document).ready(function() { }); // Switching in double consumptions mode should update the layout - $("#double_conso").click(function() { + let double_conso_obj = $("#double_conso"); + double_conso_obj.click(function() { $("#consos_list_div").show(); $("#infos_div").attr('class', 'col-sm-5 col-xl-6'); $("#note_infos_div").attr('class', 'col-xl-3'); $("#user_select_div").attr('class', 'col-xl-4'); $("#buttons_div").attr('class', 'col-sm-7 col-xl-6'); - if (buttons.length > 0) { - let note_list_obj = $("#note_list"); + let note_list_obj = $("#note_list"); + if (buttons.length > 0 && note_list_obj.text().length > 0) { $("#consos_list").html(note_list_obj.html()); note_list_obj.html(""); + + buttons.forEach(function(button) { + $("#conso_button_" + button.id).click(removeNote(button, "conso_button", buttons, + "consos_list")); + }); } }); - $("#single_conso").click(function() { + let single_conso_obj = $("#single_conso"); + single_conso_obj.click(function() { $("#consos_list_div").hide(); $("#infos_div").attr('class', 'col-sm-5 col-md-4'); $("#note_infos_div").attr('class', 'col-xl-5'); $("#user_select_div").attr('class', 'col-xl-7'); $("#buttons_div").attr('class', 'col-sm-7 col-md-8'); + let consos_list_obj = $("#consos_list"); if (buttons.length > 0) { - if (notes_display.length === 0) { - let consos_list_obj = $("#consos_list"); + if (notes_display.length === 0 && consos_list_obj.text().length > 0) { $("#note_list").html(consos_list_obj.html()); consos_list_obj.html(""); + buttons.forEach(function(button) { + $("#conso_button_" + button.id).click(removeNote(button, "conso_button", buttons, + "note_list")); + }); } else { buttons.length = 0; - $("#consos_list").html(""); + consos_list_obj.html(""); } } }); + // Ensure we begin in single consumption. Removing these lines may cause problems when reloading. + single_conso_obj.prop('checked', 'true'); + double_conso_obj.removeAttr('checked'); + $("label[for='double_conso']").attr('class', 'btn btn-sm btn-outline-primary'); + $("#consos_list_div").hide(); $("#consume_all").click(consumeAll); diff --git a/templates/note/conso_form.html b/templates/note/conso_form.html index 3925241d..b108a96f 100644 --- a/templates/note/conso_form.html +++ b/templates/note/conso_form.html @@ -121,11 +121,11 @@ {% trans "Edit" %}
-