Files
firefly-iii/public/js/ff/reports/default/all.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-04-01 16:06:55 +02:00
/*
* all.js
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
2016-04-01 16:06:55 +02:00
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
2017-10-21 08:40:00 +02:00
* 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/>.
2016-04-01 16:06:55 +02:00
*/
/** global: accountReportUri, incomeReportUri, expenseReportUri, incExpReportUri, startDate, endDate, accountIds */
2016-04-01 16:06:55 +02:00
$(function () {
"use strict";
2016-10-08 16:24:07 +02:00
// load the account report, which this report shows:
loadAjaxPartial('accountReport', accountReportUri);
2016-10-08 16:24:07 +02:00
// load income and expense reports:
loadAjaxPartial('incomeReport', incomeReportUri);
loadAjaxPartial('expenseReport', expenseReportUri);
loadAjaxPartial('incomeVsExpenseReport', incExpReportUri);
2016-10-25 18:53:54 +02:00
2016-04-01 16:06:55 +02:00
});