From: Christian Heller Date: Sun, 23 Mar 2025 10:29:27 +0000 (+0100) Subject: In /edit_structured, fix mirroring of empty amounts. X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/test.html?a=commitdiff_plain;h=ae9f9d5ccfa3609be83a6f3a453ff733293fac6b;p=ledgplom In /edit_structured, fix mirroring of empty amounts. --- diff --git a/src/templates/edit_structured.tmpl b/src/templates/edit_structured.tmpl index 8673746..32816e3 100644 --- a/src/templates/edit_structured.tmpl +++ b/src/templates/edit_structured.tmpl @@ -135,7 +135,7 @@ function update_form() { // line deletion and addition buttons td_add_del = add_td(tr); add_button(td_add_del, 'add new', false, function() { - new_line = {error: '', comment: '', booked: {account: '', amount: '', currency: ''}}; + new_line = {error: '', comment: '', booked: {account: '', amount: 'None', currency: ''}}; dat_lines.splice(i + 1, 0, new_line); }); if (i > 0) { @@ -181,9 +181,12 @@ function replace() { function mirror() { dat_lines.slice(1).forEach((dat_line) => { - let inverted_amount = `-${dat_line.booked.amount}`; - if (inverted_amount.startsWith('--')) { - inverted_amount = inverted_amount.slice(2); + let inverted_amount = 'None'; + if (dat_line.booked.amount != 'None') { + inverted_amount = `-${dat_line.booked.amount}`; + if (inverted_amount.startsWith('--')) { + inverted_amount = inverted_amount.slice(2); + } } dat_lines.push({ error: '',