mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
import moment from 'moment';
|
|
|
|
export const getDefaultCustomersBalanceQuery = () => {
|
|
return {
|
|
asDate: moment().endOf('day').format('YYYY-MM-DD'),
|
|
filterByOption: 'with-transactions',
|
|
};
|
|
};
|