Files
firefly-iii/public/js/ff/transactions/split/edit.js

295 lines
9.2 KiB
JavaScript
Raw Normal View History

/*
2017-01-15 19:16:46 +01:00
* edit.js
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:43:13 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
2017-01-15 19:16:46 +01:00
2018-04-22 09:16:51 +02:00
/** global: originalSum,originalForeignSum, accounting, what, Modernizr, currencySymbol, foreignCurrencySymbol */
2016-07-26 20:40:46 +02:00
var destAccounts = {};
var srcAccounts = {};
var categories = {};
2017-01-15 19:16:46 +01:00
var descriptions = {};
$(document).ready(function () {
"use strict";
2017-07-02 09:22:56 +02:00
$('.btn-do-split').click(cloneDivRow);
$('.remove-current-split').click(removeDivRow);
2016-07-26 20:40:46 +02:00
$.getJSON('json/expense-accounts').done(function (data) {
destAccounts = data;
2018-05-31 21:48:09 +02:00
$('input[name$="destination_name]"]').typeahead({source: destAccounts, autoSelect: false});
2016-07-26 20:40:46 +02:00
});
$.getJSON('json/revenue-accounts').done(function (data) {
srcAccounts = data;
2018-05-31 21:48:09 +02:00
$('input[name$="source_name]"]').typeahead({source: srcAccounts, autoSelect: false});
2016-07-26 20:40:46 +02:00
});
$.getJSON('json/categories').done(function (data) {
categories = data;
$('input[name$="category_name]"]').typeahead({source: categories, autoSelect: false});
2016-07-26 20:40:46 +02:00
});
2017-01-15 19:16:46 +01:00
$.getJSON('json/transaction-journals/' + what).done(function (data) {
descriptions = data;
2018-01-22 18:37:59 +01:00
$('input[name="journal_description"]').typeahead({source: descriptions, autoSelect: false});
$('input[name$="transaction_description]"]').typeahead({source: descriptions, autoSelect: false});
2017-01-15 19:16:46 +01:00
});
2016-10-21 21:41:31 +02:00
2017-01-15 19:16:46 +01:00
$.getJSON('json/tags').done(function (data) {
var opt = {
typeahead: {
source: data,
afterSelect: function () {
this.$element.val("");
2018-01-22 18:37:59 +01:00
},
autoSelect: false
2017-01-15 19:16:46 +01:00
}
};
$('input[name="tags"]').tagsinput(
opt
);
});
2016-10-21 21:41:31 +02:00
2018-04-22 09:16:51 +02:00
$('input[name$="][amount]"]').on('change', calculateBothSums);
$('input[name$="][foreign_amount]"]').on('change', calculateBothSums);
if (!Modernizr.inputtypes.date) {
$('input[type="date"]').datepicker(
{
dateFormat: 'yy-mm-dd'
}
);
}
2016-10-22 07:28:31 +02:00
});
2016-10-21 21:41:31 +02:00
2018-04-22 09:16:51 +02:00
function calculateBothSums() {
console.log("Now in calculateBothSums()");
calculateSum();
calculateForeignSum();
}
2017-07-02 09:22:56 +02:00
/**
* New and cool
* @param e
* @returns {boolean}
*/
function removeDivRow(e) {
"use strict";
var rows = $('div.split_row');
if (rows.length === 1) {
return false;
}
var row = $(e.target);
var index = row.data('split');
2018-06-24 15:43:05 +02:00
if (typeof index === 'undefined') {
var parent = row.parent();
index = parent.data('split');
console.log('Parent. ' + parent.className);
}
console.log('Split index is "' + index + '"');
2017-07-02 09:22:56 +02:00
$('div.split_row[data-split="' + index + '"]').remove();
2017-01-15 19:16:46 +01:00
2017-07-02 09:22:56 +02:00
resetDivSplits();
return false;
}
/**
* New and cool
* @returns {boolean}
*/
function cloneDivRow() {
"use strict";
var source = $('div.split_row').last().clone();
var count = $('div.split_row').length + 1;
source.removeClass('initial-row');
source.find('.count').text('#' + count);
2018-04-22 09:16:51 +02:00
source.find('input[name$="][amount]"]').val("").on('change', calculateBothSums);
source.find('input[name$="][foreign_amount]"]').val("").on('change', calculateBothSums);
2017-07-02 09:22:56 +02:00
if (destAccounts.length > 0) {
2018-05-31 21:48:09 +02:00
source.find('input[name$="destination_name]"]').typeahead({source: destAccounts, autoSelect: false});
2017-07-02 09:22:56 +02:00
}
2018-03-11 15:54:33 +01:00
if (srcAccounts.length > 0) {
2018-05-31 21:48:09 +02:00
source.find('input[name$="source_name]"]').typeahead({source: srcAccounts, autoSelect: false});
2017-07-02 09:22:56 +02:00
}
if (categories.length > 0) {
source.find('input[name$="category_name]"]').typeahead({source: categories, autoSelect: false});
2017-07-02 09:22:56 +02:00
}
if (descriptions.length > 0) {
source.find('input[name$="transaction_description]"]').typeahead({source: descriptions, autoSelect: false});
2017-07-02 09:22:56 +02:00
}
$('div.split_row_holder').append(source);
// remove original click things, add them again:
2017-07-02 09:24:00 +02:00
$('.remove-current-split').unbind('click').click(removeDivRow);
2017-07-02 09:22:56 +02:00
2018-04-22 09:16:51 +02:00
calculateBothSums();
2017-07-02 09:22:56 +02:00
resetDivSplits();
return false;
}
/**
* New and hip
*/
function resetDivSplits() {
"use strict";
// loop rows, reset numbers:
// update the row split number:
$.each($('div.split_row'), function (i, v) {
var row = $(v);
row.attr('data-split', i);
// add or remove class with bg thing
2017-07-08 06:28:44 +02:00
if (i % 2 === 0) {
2017-07-02 09:22:56 +02:00
row.removeClass('bg-gray-light');
}
2017-07-08 06:28:44 +02:00
if (i % 2 === 1) {
2017-07-02 09:22:56 +02:00
row.addClass('bg-gray-light');
}
});
// loop each remove button, update the index
$.each($('.remove-current-split'), function (i, v) {
var button = $(v);
button.attr('data-split', i);
2018-04-22 09:16:51 +02:00
button.find('span').text(' #' + (i + 1));
2017-07-02 09:22:56 +02:00
});
// loop each possible field.
// ends with ][description]
$.each($('input[name$="][transaction_description]"]'), function (i, v) {
2017-07-02 09:22:56 +02:00
var input = $(v);
input.attr('name', 'transactions[' + i + '][transaction_description]');
2017-07-02 09:22:56 +02:00
});
2018-06-30 05:21:21 +02:00
// ends with ][destination_name]
2018-05-31 21:48:09 +02:00
$.each($('input[name$="][destination_name]"]'), function (i, v) {
2017-07-02 09:22:56 +02:00
var input = $(v);
2018-06-24 13:46:34 +02:00
input.attr('name', 'transactions[' + i + '][destination_name]');
2017-07-02 09:22:56 +02:00
});
2018-06-30 05:21:21 +02:00
// ends with ][source_name]
2018-05-31 21:48:09 +02:00
$.each($('input[name$="][source_name]"]'), function (i, v) {
2017-07-02 09:22:56 +02:00
var input = $(v);
2018-06-24 13:46:34 +02:00
input.attr('name', 'transactions[' + i + '][source_name]');
2017-07-02 09:22:56 +02:00
});
// ends with ][amount]
$.each($('input[name$="][amount]"]'), function (i, v) {
var input = $(v);
input.attr('name', 'transactions[' + i + '][amount]');
});
// ends with ][foreign_amount]
$.each($('input[name$="][foreign_amount]"]'), function (i, v) {
var input = $(v);
input.attr('name', 'transactions[' + i + '][foreign_amount]');
});
// ends with ][transaction_currency_id]
$.each($('input[name$="][transaction_currency_id]"]'), function (i, v) {
var input = $(v);
input.attr('name', 'transactions[' + i + '][transaction_currency_id]');
});
// ends with ][foreign_currency_id]
$.each($('input[name$="][foreign_currency_id]"]'), function (i, v) {
var input = $(v);
input.attr('name', 'transactions[' + i + '][foreign_currency_id]');
});
// ends with ][budget_id]
$.each($('select[name$="][budget_id]"]'), function (i, v) {
var input = $(v);
input.attr('name', 'transactions[' + i + '][budget_id]');
});
// ends with ][category]
$.each($('input[name$="][category_name]"]'), function (i, v) {
2017-07-02 09:22:56 +02:00
var input = $(v);
input.attr('name', 'transactions[' + i + '][category_name]');
2017-07-02 09:22:56 +02:00
});
}
2016-10-22 07:28:31 +02:00
function calculateSum() {
"use strict";
2018-04-22 09:16:51 +02:00
console.log("Now in calculateSum()");
2017-08-12 06:55:46 +02:00
var left = originalSum * -1;
var sum = 0;
2016-10-21 21:41:31 +02:00
var set = $('input[name$="][amount]"]');
for (var i = 0; i < set.length; i++) {
var current = $(set[i]);
2017-04-09 07:56:46 +02:00
sum += (current.val() === "" ? 0 : parseFloat(current.val()));
2017-08-12 06:55:46 +02:00
left += (current.val() === "" ? 0 : parseFloat(current.val()));
}
sum = Math.round(sum * 100) / 100;
2017-08-12 06:55:46 +02:00
left = Math.round(left * 100) / 100;
2018-04-22 09:16:51 +02:00
console.log("Sum is " + sum + ", left is " + left);
2017-08-19 21:59:13 +02:00
$('.amount-warning').remove();
2017-04-09 07:56:46 +02:00
if (sum !== originalSum) {
2018-04-22 09:16:51 +02:00
console.log("Is different from original sum " + originalSum);
var paragraph = $('#journal_amount_holder').find('p.form-control-static');
$('<span>').text(' (' + accounting.formatMoney(sum, currencySymbol) + ')').addClass('text-danger amount-warning').appendTo(paragraph);
// also add what's left to divide (or vice versa)
$('<span>').text(' (' + accounting.formatMoney(left, currencySymbol) + ')').addClass('text-danger amount-warning').appendTo(paragraph);
}
}
function calculateForeignSum() {
// "use strict";
var left = originalForeignSum * -1;
var sum = 0;
var set = $('input[name$="][foreign_amount]"]');
for (var i = 0; i < set.length; i++) {
var current = $(set[i]);
sum += (current.val() === "" ? 0 : parseFloat(current.val()));
left += (current.val() === "" ? 0 : parseFloat(current.val()));
}
sum = Math.round(sum * 100) / 100;
left = Math.round(left * 100) / 100;
$('.amount-warning-foreign').remove();
if (sum !== originalForeignSum) {
var paragraph = $('#journal_foreign_amount_holder').find('p.form-control-static');
$('<span>').text(' (' + accounting.formatMoney(sum, foreignCurrencySymbol) + ')').addClass('text-danger amount-warning-foreign').appendTo(paragraph);
2017-08-12 06:55:46 +02:00
// also add what's left to divide (or vice versa)
2018-04-22 09:16:51 +02:00
$('<span>').text(' (' + accounting.formatMoney(left, foreignCurrencySymbol) + ')').addClass('text-danger amount-warning-foreign').appendTo(paragraph);
}
2017-08-12 06:55:46 +02:00
}