mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
import frappe from 'frappejs';
|
|
import { getPeriodList } from '../FinancialStatements/FinancialStatements';
|
|
import { DateTime } from 'luxon';
|
|
|
|
class Cashflow {
|
|
async run({ fromDate, toDate, periodicity }) {
|
|
let cashAndBankAccounts = frappe.db
|
|
.knex('Account')
|
|
.select('name')
|
|
.where('accountType', 'in', ['Cash', 'Bank'])
|
|
.andWhere('isGroup', 0);
|
|
let dateAsMonthYear = frappe.db.knex.raw('strftime("%m-%Y", ??)', 'date');
|
|
let res = await frappe.db
|
|
.knex('AccountingLedgerEntry')
|
|
.where('reverted', 0)
|
|
.sum({
|
|
inflow: 'debit',
|
|
outflow: 'credit'
|
|
})
|
|
.select({
|
|
'month-year': dateAsMonthYear
|
|
})
|
|
.where('account', 'in', cashAndBankAccounts)
|
|
.whereBetween('date', [fromDate, toDate])
|
|
.groupBy(dateAsMonthYear);
|
|
|
|
let periodList = getPeriodList(fromDate, toDate, periodicity);
|
|
|
|
let data = periodList.map(periodKey => {
|
|
let monthYear = this.getMonthYear(periodKey, 'MMM yyyy');
|
|
let cashflowForPeriod = res.find(d => d['month-year'] === monthYear);
|
|
if (cashflowForPeriod) {
|
|
cashflowForPeriod.periodKey = periodKey;
|
|
return cashflowForPeriod;
|
|
}
|
|
return {
|
|
inflow: 0,
|
|
outflow: 0,
|
|
periodKey,
|
|
'month-year': monthYear
|
|
};
|
|
});
|
|
|
|
return {
|
|
data,
|
|
periodList
|
|
};
|
|
}
|
|
|
|
getMonthYear(periodKey, format) {
|
|
return DateTime.fromFormat(periodKey, format).toFormat('MM-yyyy');
|
|
}
|
|
}
|
|
|
|
export default Cashflow;
|