2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/reports/GeneralLedger/GeneralLedger.js

86 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-03-26 12:14:27 +00:00
const frappe = require('frappejs');
2018-03-27 13:52:59 +00:00
class GeneralLedger {
2018-07-14 14:28:41 +00:00
async run(params) {
const filters = {};
if (params.account) filters.account = params.account;
if (params.party) filters.party = params.party;
if (params.referenceType) filters.referenceType = params.referenceType;
if (params.referenceName) filters.referenceName = params.referenceName;
if (params.toDate || params.fromDate) {
filters.date = [];
if (params.toDate) filters.date.push('<=', params.toDate);
if (params.fromDate) filters.date.push('>=', params.fromDate);
}
2018-07-14 14:28:41 +00:00
let data = await frappe.db.getAll({
doctype: 'AccountingLedgerEntry',
2019-07-18 06:49:12 +00:00
fields: [
'date',
'account',
'party',
'referenceType',
'referenceName',
'debit',
'credit'
],
2018-07-14 14:28:41 +00:00
filters: filters
});
2018-03-26 12:14:27 +00:00
2019-07-18 06:49:12 +00:00
return this.appendOpeningEntry(data);
}
appendOpeningEntry(data) {
let glEntries = [];
let balance = 0,
debitTotal = 0,
creditTotal = 0;
glEntries.push({
date: '',
account: { template: '<b>Opening</b>' },
2019-07-18 06:49:12 +00:00
party: '',
debit: 0,
credit: 0,
balance: 0,
referenceType: '',
referenceName: ''
});
for (let entry of data) {
balance += entry.debit > 0 ? entry.debit : -entry.credit;
debitTotal += entry.debit;
creditTotal += entry.credit;
entry.balance = balance;
if (entry.debit === 0) {
entry.debit = '';
}
if (entry.credit === 0) {
entry.credit = '';
}
2019-07-18 06:49:12 +00:00
glEntries.push(entry);
}
glEntries.push({
date: '',
account: { template: '<b>Total</b>' },
2019-07-18 06:49:12 +00:00
party: '',
debit: debitTotal,
credit: creditTotal,
balance: balance,
referenceType: '',
referenceName: ''
});
glEntries.push({
date: '',
account: { template: '<b>Closing</b>' },
2019-07-18 06:49:12 +00:00
party: '',
debit: debitTotal,
credit: creditTotal,
balance: balance,
referenceType: '',
referenceName: ''
});
return glEntries;
2018-07-14 14:28:41 +00:00
}
2018-04-18 09:02:05 +00:00
}
module.exports = GeneralLedger;