mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
import moment from 'moment';
|
|
|
|
|
|
export function getDefaultTrialBalanceQuery() {
|
|
return {
|
|
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
|
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
|
basis: 'accural',
|
|
filterByOption: 'with-transactions',
|
|
};
|
|
} |