mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
import moment from 'moment';
|
|
|
|
|
|
export const getDefaultPurchasesByItemsQuery = () => {
|
|
return {
|
|
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
|
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
|
filterByOption: 'with-transactions',
|
|
}
|
|
} |