From a5374dad9bc0f1e32fe682b46afc6e7f93bed5ec Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 23 Mar 2025 12:38:19 +0100 Subject: [PATCH] Add "fill sink" button. --- src/templates/edit_structured.tmpl | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/templates/edit_structured.tmpl b/src/templates/edit_structured.tmpl index 32816e3..676f49a 100644 --- a/src/templates/edit_structured.tmpl +++ b/src/templates/edit_structured.tmpl @@ -202,6 +202,45 @@ function mirror() { update_form(); } +function fill_sink() { + let sink_indices = []; + const sum_per_currency = {}; + for (let i = 0; i < dat_lines.length; i++) { + const dat_line = dat_lines[i]; + if (!dat_line.is_intro && !dat_line.error) { + const currency = dat_line.booked.currency || '€'; + if (dat_line.booked.amount == 'None') { + sink_indices.push(i); + } else { + if (!Object.hasOwn(sum_per_currency, currency)) { + sum_per_currency[currency] = 0; + } + sum_per_currency[currency] += parseFloat(dat_line.booked.amount); + } + } + } + const sink_amounts_per_currency = {}; + for (const [currency, amount] of Object.entries(sum_per_currency)) { + if (amount != 0) { + sink_amounts_per_currency[currency] = -amount; + } + } + for (i = 0; i < Object.keys(sink_amounts_per_currency).length - sink_indices.length; i++) { + sink_indices.push(dat_lines.length); + new_line = {error: '', comment: '', booked: {account: '?', amount: 'None', currency: ''}}; + dat_lines.push(new_line); + } + let sink_indices_index = 0; + for (const [currency, amount] of Object.entries(sink_amounts_per_currency)) { + const dat_line = dat_lines[sink_indices[sink_indices_index]]; + sink_indices_index++; + dat_line.booked.currency = currency; + dat_line.booked.amount = (-amount).toString(); + } + taint(); + update_form(); +} + window.onload = update_form; {% endblock %} @@ -210,6 +249,7 @@ window.onload = update_form;
{{ macros.edit_bar("raw", id) }} + | from -- 2.30.2