diff --git a/public/js/reports/default/month.js b/public/js/reports/default/month.js index 22bb92dbc9..be66324dff 100644 --- a/public/js/reports/default/month.js +++ b/public/js/reports/default/month.js @@ -17,7 +17,7 @@ function drawChart() { // month view: // draw account chart - lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } diff --git a/public/js/reports/default/reports.js b/public/js/reports/default/reports.js index 306b876257..23adac5fcd 100644 --- a/public/js/reports/default/reports.js +++ b/public/js/reports/default/reports.js @@ -116,7 +116,7 @@ function drawChart() { } if (typeof lineChart !== 'undefined' && typeof accountIds !== 'undefined') { - lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } }