-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #389 from bigcapitalhq/accounts-bank-transactions-…
…demo-sheet feat: add sample sheet to accounts and bank transactions
- Loading branch information
Showing
6 changed files
with
94 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
packages/server/src/services/Accounts/AccountsImportable.SampleData.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
export const AccountsSampleData = [ | ||
{ | ||
'Account Name': 'Utilities Expense', | ||
'Account Code': 9000, | ||
Type: 'Expense', | ||
Description: 'Omnis voluptatum consequatur.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
{ | ||
'Account Name': 'Unearned Revenue', | ||
'Account Code': 9010, | ||
Type: 'Long Term Liability', | ||
Description: 'Autem odit voluptas nihil unde.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
{ | ||
'Account Name': 'Long-Term Debt', | ||
'Account Code': 9020, | ||
Type: 'Long Term Liability', | ||
Description: 'In voluptas cumque exercitationem.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
{ | ||
'Account Name': 'Salaries and Wages Expense', | ||
'Account Code': 9030, | ||
Type: 'Expense', | ||
Description: 'Assumenda aspernatur soluta aliquid perspiciatis quasi.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
{ | ||
'Account Name': 'Rental Income', | ||
'Account Code': 9040, | ||
Type: 'Income', | ||
Description: 'Omnis possimus amet occaecati inventore.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
{ | ||
'Account Name': 'Paypal', | ||
'Account Code': 9050, | ||
Type: 'Bank', | ||
Description: 'In voluptas cumque exercitationem.', | ||
Active: 'T', | ||
'Currency Code': '', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters