New code for #736

This commit is contained in:
James Cole
2017-11-15 06:29:49 +01:00
parent d413615943
commit 5530347bb2
9 changed files with 539 additions and 194 deletions

View File

@@ -18,20 +18,178 @@
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
var balanceDifference = 0;
var difference = 0;
var selectedAmount = 0;
var reconcileStarted = false;
/**
*
*/
$(function () {
"use strict";
$('input[type="date"]').on('change', showUpdateButton);
$('.update_view').on('click', updateView);
/*
Respond to changes in balance statements.
*/
$('input[type="number"]').on('change', function () {
if (reconcileStarted) {
calculateBalanceDifference();
difference = balanceDifference - selectedAmount;
updateDifference();
}
});
/*
Respond to changes in the date range.
*/
$('input[type="date"]').on('change', function () {
if (reconcileStarted) {
// hide original instructions.
$('.select_transactions_instruction').hide();
// show date-change warning
$('.date_change_warning').show();
// show update button
$('.change_date_button').show();
}
});
$('.change_date_button').click(startReconcile);
$('.start_reconcile').click(startReconcile);
$('.store_reconcile').click(storeReconcile);
});
function showUpdateButton() {
$('.update_date_button').show();
function storeReconcile() {
// get modal HTML:
var ids = [];
$.each($('.reconcile_checkbox:checked'), function (i, v) {
ids.push($(v).data('id'));
});
var variables = {
startBalance: parseFloat($('input[name="start_balance"]').val()),
endBalance: parseFloat($('input[name="end_balance"]').val()),
startDate: $('input[name="start_date"]').val(),
startEnd: $('input[name="end_date"]').val(),
transactions: ids
};
var uri = overviewUri.replace('%start%', $('input[name="start_date"]').val()).replace('%end%', $('input[name="end_date"]').val());
$.getJSON(uri, variables).done(function (data) {
if (data.is_zero === false) {
$('#defaultModal').empty().html(data.html).modal('show');
}
});
}
function updateView() {
var startDate = $('input[name="start_date"]').val();
var endDate = $('input[name="end_date"]').val();
window.location = '/accounts/reconcile/2/' + startDate + '/' + endDate;
/**
* What happens when you check a checkbox:
* @param e
*/
function checkReconciledBox(e) {
var el = $(e.target);
var amount = parseFloat(el.val());
console.log('Amount is ' + amount);
// if checked, add to selected amount
if (el.prop('checked') === true && el.data('younger') === false) {
console.log("Sum is: " + selectedAmount + " - " + amount + " = " + (selectedAmount - amount));
selectedAmount = selectedAmount - amount;
}
if (el.prop('checked') === false && el.data('younger') === false) {
console.log("Sum is: " + selectedAmount + " + " + amount + " = " + (selectedAmount + amount));
selectedAmount = selectedAmount + amount;
}
difference = balanceDifference - selectedAmount;
updateDifference();
allowReconcile();
}
/**
*
*/
function allowReconcile() {
var count = $('.reconcile_checkbox:checked').length;
console.log('Count checkboxes is ' + count);
if (count > 0) {
$('.store_reconcile').prop('disabled', false);
}
}
/**
* Calculate the difference between given start and end balance
* and put it in balanceDifference.
*/
function calculateBalanceDifference() {
var startBalance = parseFloat($('input[name="start_balance"]').val());
var endBalance = parseFloat($('input[name="end_balance"]').val());
balanceDifference = startBalance - endBalance;
if (balanceDifference < 0) {
balanceDifference = balanceDifference * -1;
}
}
function getTransactionsForRange() {
// clear out the box:
$('#transactions_holder').empty().append($('<p>').addClass('text-center').html('<i class="fa fa-fw fa-spin fa-spinner"></i>'));
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);
}
function placeTransactions(data) {
$('#transactions_holder').empty().html(data.html);
// as long as the dates are equal, changing the balance does not matter.
calculateBalanceDifference();
difference = balanceDifference;
updateDifference();
// enable the check buttons:
$('.reconcile_checkbox').prop('disabled', false).unbind('change').change(checkReconciledBox);
// show the other instruction:
$('.select_transactions_instruction').show();
}
/**
*
* @returns {boolean}
*/
function 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() {
var addClass = 'text-info';
if (difference > 0) {
addClass = 'text-success';
}
if (difference < 0) {
addClass = 'text-danger';
}
$('#difference').addClass(addClass).text(accounting.formatMoney(difference));
}