/*
* reconcile.js
* Copyright (c) 2019 thegrumpydictator@gmail.com
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
').addClass('text-center').html('')); var uri = transactionsUri.replace('%start%', $('input[name="start_date"]').val()).replace('%end%', $('input[name="end_date"]').val()); var index = indexUri.replace('%start%', $('input[name="start_date"]').val()).replace('%end%', $('input[name="end_date"]').val()); window.history.pushState('object or string', "Reconcile account", index); $.getJSON(uri).done(placeTransactions); } // /** // * Loop over all transactions that have already been cleared (in the range) // * and add this to the selectedAmount. // * // */ // function includeClearedTransactions() { // $.each($('input[class="cleared"]'), function (i, v) { // var obj = $(v); // if (obj.data('younger') === false) { // //selectedAmount = selectedAmount - parseFloat(obj.val()); // } // }); // } /** * Loop over all transactions that have already been cleared (in the range) * and add this to the selectedAmount. * */ function includeClearedTransactions() { console.log('in includeClearedTransactions()'); $.each($('input[class="cleared"]'), function (i, v) { var obj = $(v); var amount = parseFloat(obj.val()); if (obj.data('inrange') === true) { console.log('Amount is ' + amount + ' and inrange = true'); selectedAmount = selectedAmount - amount; } else { console.log('Amount is ' + amount + ' but inrange = FALSE so ignore.'); } }); } /** * Place the HTML for the transactions within the date range and update the balance difference. * @param data */ function placeTransactions(data) { console.log('in placeTransactions()'); $('#transactions_holder').empty().html(data.html); selectedAmount = 0; // update start + end balance when user has not touched them. if (!changedBalances) { $('input[name="start_balance"]').val(data.startBalance); $('input[name="end_balance"]').val(data.endBalance); } // as long as the dates are equal, changing the balance does not matter. calculateBalanceDifference(); // any already cleared transactions must be added to / removed from selectedAmount. includeClearedTransactions(); difference = balanceDifference - selectedAmount; updateDifference(); // enable the check buttons: $('.reconcile_checkbox').prop('disabled', false).unbind('change').change(checkReconciledBox); // show the other instruction: $('.select_transactions_instruction').show(); $('.store_reconcile').prop('disabled', false); } /** * * @returns {boolean} */ function startReconcile() { console.log('in startReconcile()'); reconcileStarted = true; // hide the start button. $('.start_reconcile').hide(); // hide the start instructions: $('.update_balance_instruction').hide(); // hide date-change warning $('.date_change_warning').hide(); // hide update button $('.change_date_button').hide(); getTransactionsForRange(); return false; } function updateDifference() { console.log('in updateDifference()'); var addClass = 'text-info'; if (difference > 0) { addClass = 'text-success'; } if (difference < 0) { addClass = 'text-danger'; } $('#difference').addClass(addClass).text(accounting.formatMoney(difference)); }