mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
137 lines
3.7 KiB
TypeScript
137 lines
3.7 KiB
TypeScript
import { Service, Inject } from 'typedi';
|
|
import moment from 'moment';
|
|
import TenancyService from '@/services/Tenancy/TenancyService';
|
|
import Journal from '@/services/Accounting/JournalPoster';
|
|
import { ITrialBalanceSheetMeta, ITrialBalanceSheetQuery, ITrialBalanceStatement } from '@/interfaces';
|
|
import TrialBalanceSheet from './TrialBalanceSheet';
|
|
import FinancialSheet from '../FinancialSheet';
|
|
import InventoryService from '@/services/Inventory/Inventory';
|
|
import { parseBoolean } from 'utils';
|
|
import { Tenant } from '@/system/models';
|
|
|
|
@Service()
|
|
export default class TrialBalanceSheetService extends FinancialSheet {
|
|
@Inject()
|
|
tenancy: TenancyService;
|
|
|
|
@Inject()
|
|
inventoryService: InventoryService;
|
|
|
|
@Inject('logger')
|
|
logger: any;
|
|
|
|
/**
|
|
* Defaults trial balance sheet filter query.
|
|
* @return {IBalanceSheetQuery}
|
|
*/
|
|
get defaultQuery(): ITrialBalanceSheetQuery {
|
|
return {
|
|
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
|
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
|
numberFormat: {
|
|
divideOn1000: false,
|
|
negativeFormat: 'mines',
|
|
showZero: false,
|
|
formatMoney: 'total',
|
|
precision: 2,
|
|
},
|
|
basis: 'accrual',
|
|
noneZero: false,
|
|
noneTransactions: true,
|
|
onlyActive: false,
|
|
accountIds: [],
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Retrieve the trial balance sheet meta.
|
|
* @param {number} tenantId - Tenant id.
|
|
* @returns {ITrialBalanceSheetMeta}
|
|
*/
|
|
reportMetadata(tenantId: number): ITrialBalanceSheetMeta {
|
|
const settings = this.tenancy.settings(tenantId);
|
|
|
|
const isCostComputeRunning = this.inventoryService.isItemsCostComputeRunning(
|
|
tenantId
|
|
);
|
|
const organizationName = settings.get({
|
|
group: 'organization',
|
|
key: 'name',
|
|
});
|
|
const baseCurrency = settings.get({
|
|
group: 'organization',
|
|
key: 'base_currency',
|
|
});
|
|
|
|
return {
|
|
isCostComputeRunning: parseBoolean(isCostComputeRunning, false),
|
|
organizationName,
|
|
baseCurrency,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Retrieve trial balance sheet statement.
|
|
* -------------
|
|
* @param {number} tenantId
|
|
* @param {IBalanceSheetQuery} query
|
|
*
|
|
* @return {IBalanceSheetStatement}
|
|
*/
|
|
public async trialBalanceSheet(
|
|
tenantId: number,
|
|
query: ITrialBalanceSheetQuery
|
|
): Promise<ITrialBalanceStatement> {
|
|
const filter = {
|
|
...this.defaultQuery,
|
|
...query,
|
|
};
|
|
const {
|
|
accountRepository,
|
|
transactionsRepository,
|
|
} = this.tenancy.repositories(tenantId);
|
|
|
|
const tenant = await Tenant.query()
|
|
.findById(tenantId)
|
|
.withGraphFetched('metadata');
|
|
|
|
this.logger.info('[trial_balance_sheet] trying to calcualte the report.', {
|
|
tenantId,
|
|
filter,
|
|
});
|
|
// Retrieve all accounts on the storage.
|
|
const accounts = await accountRepository.all();
|
|
const accountsGraph = await accountRepository.getDependencyGraph();
|
|
|
|
// Retrieve all journal transactions based on the given query.
|
|
const transactions = await transactionsRepository.journal({
|
|
fromDate: query.fromDate,
|
|
toDate: query.toDate,
|
|
sumationCreditDebit: true,
|
|
branchesIds: query.branchesIds
|
|
});
|
|
// Transform transactions array to journal collection.
|
|
const transactionsJournal = Journal.fromTransactions(
|
|
transactions,
|
|
tenantId,
|
|
accountsGraph
|
|
);
|
|
// Trial balance report instance.
|
|
const trialBalanceInstance = new TrialBalanceSheet(
|
|
tenantId,
|
|
filter,
|
|
accounts,
|
|
transactionsJournal,
|
|
tenant.metadata.baseCurrency,
|
|
);
|
|
// Trial balance sheet data.
|
|
const trialBalanceSheetData = trialBalanceInstance.reportData();
|
|
|
|
return {
|
|
data: trialBalanceSheetData,
|
|
query: filter,
|
|
meta: this.reportMetadata(tenantId),
|
|
};
|
|
}
|
|
}
|