mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
fix(webapp): accrual typo
This commit is contained in:
@@ -30,7 +30,7 @@ export const getDefaultGeneralLedgerQuery = () => {
|
||||
return {
|
||||
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
||||
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
||||
basis: 'accural',
|
||||
basis: 'accrual',
|
||||
filterByOption: 'with-transactions',
|
||||
branchesIds: [],
|
||||
accountsIds: [],
|
||||
|
||||
@@ -13,7 +13,7 @@ export const getDefaultJournalQuery = () => {
|
||||
return {
|
||||
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
||||
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
||||
basis: 'accural',
|
||||
basis: 'accrual',
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export default function RadiosAccountingBasis(props) {
|
||||
{...rest}
|
||||
>
|
||||
<Radio label={intl.get('cash')} value="cash" />
|
||||
<Radio label={intl.get('accrual')} value="accural" />
|
||||
<Radio label={intl.get('accrual')} value="accrual" />
|
||||
</RadioGroup>
|
||||
)}
|
||||
</FastField>
|
||||
|
||||
@@ -13,7 +13,7 @@ export function getDefaultTrialBalanceQuery() {
|
||||
return {
|
||||
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
||||
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
||||
basis: 'accural',
|
||||
basis: 'accrual',
|
||||
filterByOption: 'with-transactions',
|
||||
branchesIds: [],
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ import '@/style/pages/Preferences/Accounting.scss';
|
||||
|
||||
const defaultFormValues = flatten({
|
||||
organization: {
|
||||
accountingBasis: '',
|
||||
accountingBasis: 'accrual',
|
||||
},
|
||||
accounts: {
|
||||
accountCodeRequired: false,
|
||||
|
||||
Reference in New Issue
Block a user