-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathautomationInsert.js
2624 lines (2604 loc) · 69.9 KB
/
automationInsert.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Require the mysql
var mysql = require('mysql');
// Create a connection with mysql.
var connection = mysql.createConnection({
host: "localhost",
user: "root",
password: ""
});
// Stablish the connection.
connection.connect(function(err) {
if (err) {
console.warn('connection failed!', err);
} else {
//console.log('connection established! 1');
}
});
// Run the squl query to Create test data base if not exists for automation data.
connection.query("CREATE DATABASE IF NOT EXISTS aspire", function(err) {
if (err) {
console.warn('connection failed!', err);
} else {
//console.log('connection established! 2');
}
});
// If database exists then use it.
connection.query("USE aspire", function(err) {
if (err) {
console.warn('connection failed!', err);
} else {
//console.log('connection established! 3');
}
});
/**
* Run the given sql query.
* @param {String} runQuery Sql query to be run.
*/
var runSqlQuery = function(runQuery){
console.log(runQuery)
connection.query(runQuery, function(err) {
if (err) {
console.warn('connection failed!', err);
} else {
//console.log('connection established! 3');
}
});
}
// Sample input json which define the table ,column and related infomation to create a table in the database.
var inputFields=[
{
dbtable:"account",
dbcolumn:"account_name",
type:"text",
maxlength:30
},
{
dbtable:"account",
dbcolumn:"account_description",
type:"text",
maxlength:1000
},
{
dbtable:"account",
dbcolumn:"account_balance",
type:"text",
maxlength:1000
},
{
dbtable:"account",
dbcolumn:"organisation_pk",
type:"text",
maxlength:10
},
{
dbtable:"account_account",
dbcolumn:"account_parent",
type:"number",
maxlength:10
},
{
dbtable:"account_account",
dbcolumn:"account_children",
type:"number",
maxlength:10
},
{
dbtable:"account_category",
dbcolumn:"account_pk",
type:"number",
maxlength:10
},
{
dbtable:"account_category",
dbcolumn:"category_pk",
type:"number",
maxlength:10
},
{
dbtable:"category",
dbcolumn:"category_name",
type:"text",
maxlength:100
},
{
dbtable:"category",
dbcolumn:"organisation_pk",
type:"text",
maxlength:10
},
{
dbtable:"reportingmethod",
dbcolumn:"method_name",
type:"text",
maxlength:10
},
{
dbtable:"reportingmethod",
dbcolumn:"organisation_pk",
type:"text",
maxlength:10
},
{
dbtable:"fillingfrequency",
dbcolumn:"frequency_name",
type:"text",
maxlength:10
},
{
dbtable:"fillingfrequency",
dbcolumn:"organisation_pk",
type:"text",
maxlength:10
}
]
// Input/sample data to insert in the table.ie automation data to be inserted in the database.
var store = [
{
"table": "category",
"category_name": "Account Receivable (Debtors)",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Current Assets",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Bank",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Fixed Assets",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Non-Current Assets",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Account Payable (Creditors)",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Credit Cards",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Current Liabilities",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Non- Current Liabilities",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Equity",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Income",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Other Income",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Costs of Goods Sold",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Expenses",
"organisation_pk": "*"
},
{
"table": "category",
"category_name": "Other Expenses",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Account Receivable (Debtors)",
"account_description": "Accounts receivable (Debtors) tracks money that customers owe you for products or services, and payments customers make. Aspire automatically creates one Accounts receivable (Debtors) account for you. Most businesses need only one.Each customer has a register, which functions like a Accounts receivable (Debtors) account for each customer.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Assets available for sale",
"account_description": "Use Assets available for sale to track assets that are available for sale that are not expected to be held for a long period of time.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Development costs",
"account_description": "Use Development costs to track amounts you deposit or set aside to arrange for financing, such as an SBA loan, or for deposits in anticipation of the purchase of property or other assets.When the deposit is refunded, or the purchase takes place, remove the amount from this account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Employee Cash Advances",
"account_description": "Use Employee cash advances to track employee wages and salary you issue to an employee early, or other non-salary money given to employees.If you make a loan to an employee, use the Current asset account type called Loans to others, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Inventory",
"account_description": "Use Inventory to track the cost of goods your business purchases for resale.When the goods are sold, assign the sale to aCost of goods sold account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Investments– Other",
"account_description": "Use Investments - Other to track the value of investments not covered by other investment account types. Examples include publicly-traded shares, coins, or gold.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loans to Officers",
"account_description": "If you operate your business as a Corporation, use Loans to officers to track money loaned to officers of your business.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loans to Others",
"account_description": "Use Loans to others to track money your business loans to other people or businesses.This type of account is also referred to as Notes Receivable.For early salary payments to employees, use Employee cash advances, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loans to Shareholders",
"account_description": "If you operate your business as a Corporation, use Loans to Shareholders to track money your business loans to its shareholders.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other current Assets",
"account_description": "Use other current assets for current assets not covered by the other types. Current assets are likely to be converted to cash or used up in a year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Prepaid Expenses",
"account_description": "Use Prepaid expenses to track payments for expenses that you won’t recognize until your next accounting period. When you recognize the expense, make a journal entry to transfer money from this account to the expense account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Retainage",
"account_description": "Use Retainage if your customers regularly hold back a portion of a contract amount until you have completed a project.This type of account is often used in the construction industry, and only if you record income on an accrual basis.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Undeposited Funds",
"account_description": "Use Undeposited funds for cash or cheques from sales that haven’t been deposited yet.For petty cash, use Cash on hand, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Cash and Cash Equivalents",
"account_description": "Use Cash and Cash Equivalents to track cash or assets that can be converted into cash immediately. For example, marketable securities and Treasury bills",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Cash on hands",
"account_description": "Use a Cash on hand account to track cash your company keeps for occasional expenses, also called petty cash.To track cash from sales that have not been deposited yet, use a pre-created account called Undeposited funds, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Client Trust Account",
"account_description": "Use Client trust accounts for money held by you for the benefit of someone else.For example, client trust accounts are often used by lawyers to keep track of expense money their customers have given them.Often, to keep the amount in a client trust account from looking like it’s yours, the amount is offset in a contra liability account (a Current Liability).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Current",
"account_description": "Use Current accounts to track all your chequing activity, including debit card transactions.Each current account your company has at a bank or other financial institution should have its own Current type account in Aspire.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Money market",
"account_description": "Use Money market to track amounts in money market accounts.For investments, see Current Assets, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Rents held in trust",
"account_description": "Use Rents held in trust to track deposits and rent held on behalf of the property owners.Typically only property managers use this type of account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Savings",
"account_description": "Use Savings accounts to track your savings and CD activity.Each savings account your company has at a bank or other financial institution should have its own Savings type account.For investments, see Current Assets, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accumulated Depreciation",
"account_description": "Use Accumulated depreciation to track how much you depreciate a fixed asset (a physical asset you do not expect to convert to cash during one year of normal operations).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accumulated Depletion",
"account_description": "Use Accumulated depletion to track how much you deplete a natural resource.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Buildings",
"account_description": "Use Buildings to track the cost of structures you own and use for your business. If you have a business in your home, consult your accountant.Use a Land account for the land portion of any real property you own, splitting the cost of the property between land and building in a logical method. A common method is to mimic the land-to-building ratio on the property tax statement.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Depletable Assets",
"account_description": "Use Depletable assets to track natural resources, such as timberlands, oil wells, and mineral deposits.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Furniture and fixtures",
"account_description": "Use Furniture and fixtures to track any furniture and fixtures your business owns and uses, like a dental chair or sales booth.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Land",
"account_description": "Use Land to track assets that are not easily convertible to cash or not expected to become cash within the next year. For example, leasehold improvements.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Leasehold improvements",
"account_description": "Use Leasehold improvements to track improvements to a leased asset that increases the asset’s value. For example, if you carpet a leased office space and are not reimbursed, that’s a leasehold improvement.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Machinery And Equipment",
"account_description": "Use Machinery and equipment to track computer hardware, as well as any other non-furniture fixtures or devices owned and used for your business.This includes equipment that you ride, like tractors and lawn mowers. Cars and trucks, however, should be tracked with Vehicle accounts, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Fixed Assets",
"account_description": "Use Other fixed asset for fixed assets that are not covered by other asset types.Fixed assets are physical property that you use in your business and that you do not expect to convert to cash or be used up during one year of normal operations.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Vehicles",
"account_description": "Use Vehicles to track the value of vehicles your business owns and uses for business. This includes off-road vehicles, air planes, helicopters, and boats.If you use a vehicle for both business and personal use, consult your accountant to see how you should track its value.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accumulated Amortisation of non - current assets",
"account_description": "Use Accumulated amortisation of non-current assets to track how much you’ve amortised an asset whose type is Non-Current Asset.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Assets held for sale",
"account_description": "Use Assets held for sale to track assets of a company that are available for sale that are not expected to be held for a long period of time.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Deferred Tax",
"account_description": "Use Deferred tax for tax liabilities or assets that are to be used in future accounting periods.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Goodwill",
"account_description": "Use Goodwill only if you have acquired another company. It represents the intangible assets of the acquired company which gave it an advantage, such as favorable government relations, business name, outstanding credit ratings, location, superior management, customer lists, product quality, or good labor relations.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Intangible Assets",
"account_description": "Use Intangible assets to track intangible assets that you plan to amortise. Examples include franchises, customer lists, copyrights, and patents",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Lease Buyout",
"account_description": "Use Lease buyout to track lease payments to be applied toward the purchase of a leased asset.You don’t track the leased asset itself until you purchase it.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Licenses",
"account_description": "Use Licenses to track non-professional licenses for permission to engage in an activity, like selling alcohol or radio broadcasting.For fees associated with professional licenses granted to individuals, use a Legal and professional fees expense account, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Long Term Investment",
"account_description": "Use Long-term investments to track investments that have a maturity date of longer than one year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Organizational Costs",
"account_description": "Use Organizational costs to track costs incurred when forming a partnership or corporation.The costs include the legal and accounting costs necessary to organize the company, facilitate the filings of the legal documents, and other paperwork.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Long Time Assets",
"account_description": "Use Other long-term assets to track assets not covered by other types.Long-term assets are expected to provide value for more than one year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Security Deposits",
"account_description": "Use Security deposits to track funds you’ve paid to cover any potential costs incurred by damage, loss, or theft.The funds should be returned to you at the end of the contract.If you collect deposits, use an other current liabilities account (a Current liability account).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Account Payable (Creditors)",
"account_description": "Accounts payable (Creditors) tracks amounts you owe to your suppliers.Aspire automatically creates one Accounts Payable (Creditors) account for you. Most businesses need only one.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Credit Cards",
"account_description": "Credit card accounts track the balance due on your business credit cards.Create one Credit card account for each credit card account your business uses.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accured Liabilities",
"account_description": "Use Accrued Liabilities to track expenses that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Client Trust Accounts– Liabilities",
"account_description": "Use Client Trust accounts - liabilities to offset Client Trust accounts in assets.Amounts in these accounts are held by your business on behalf of others. They do not belong to your business, so should not appear to be yours on your balance sheet. This contra account takes care of that, as long as the two balances match.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Current Liabilities",
"account_description": "Use Current liabilities to track liabilities due within the next twelve months that do not fit the Current liability account types.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Current Portion of Obligations under finance leases",
"account_description": "Use Current portion of obligations under finance leases to track the value of lease payments due within the next 12 months.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Dividends Payable",
"account_description": "Use Dividends payable to track dividends that are owed to shareholders but have not yet been paid.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Income Tax Payable",
"account_description": "Use Income tax payable to track monies that are due to pay the company’s income tax liabilities.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Insurance Payable",
"account_description": "Use Insurance payable to keep track of insurance amounts due.This account is most useful for businesses with monthly recurring insurance expenses.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Line Of Credit",
"account_description": "Use Line of credit to track the balance due on any lines of credit your business has. Each line of credit your business has should have its own Line of credit account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loan Payable",
"account_description": "Use Loan payable to track loans your business owes which are payable within the next twelve months.For longer-term loans, use the Long-term liability called Notes payable, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Current Liabilities",
"account_description": "Use Other current liabilities to track monies owed by the company and due within one year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Payroll Liabilities",
"account_description": "Use Payroll liabilities to keep track of tax amounts that you owe to government agencies as a result of paying wages. This includes taxes withheld, health care premiums, employment insurance, government pensions, etc. When you forward the money to the government agency, deduct the amount from the balance of this account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Prepaid Expenses Payable",
"account_description": "Use Prepaid expenses payable to track items such as property taxes that are due, but not yet deductible as an expense because the period they cover has not yet passed.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Rents in – Liability",
"account_description": "Use Rents in trust - liability to offset theRents in trust amount in assets.Amounts in these accounts are held by your business on behalf of others. They do not belong to your business, so should not appear to be yours on your balance sheet. This contra account takes care of that, as long as the two balances match.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Short Term Provisions",
"account_description": "Use Short-term provisions to track current liabilities that have not yet been realized.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accured Holiday Payable",
"account_description": "Use Accrued holiday payable to track holiday earned but that has not been paid out to employees.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "AccuredNon-Current Liabilities",
"account_description": "Use Accrued Non-current liabilities to track expenses that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Liabilities related to assets held for sale",
"account_description": "Use Liabilities related to assets held for sale to track any liabilities that are directly related to assets being sold or written off.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Long Term Debt",
"account_description": "Use Long-term debt to track loans and obligations with a maturity of longer than one year. For example, mortgages.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Notes Payable",
"account_description": "Use Notes payable to track the amounts your business owes in long-term (over twelve months) loans.For shorter loans, use the Current liability account type called Loan payable, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Non-Current Liabilities",
"account_description": "Use Other non-current liabilities to track liabilities due in more than twelve months that don’t fit the other Non-Current liability account types.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Shareholder Notes Payable",
"account_description": "Use Shareholder notes payable to track long-term loan balances your business owes its shareholders.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Accumulated Adjustment",
"account_description": "Some corporations use this account to track adjustments to owner’s equity that are not attributable to net income.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Dividend Disbursed",
"account_description": "Use Dividend disbursed to track a payment given to its shareholders out of the company’s retained earnings.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Equity In Earnings Subsidiaries",
"account_description": "Use Equity in earnings of subsidiaries to track the original investment in shares of subsidiaries plus the share of earnings or losses from the operations of the subsidiary.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Opening Balance Equity",
"account_description": "As you enter opening balances, Aspire records the amounts in Opening balance equity. This ensures that you have a correct balance sheet for your company, even before you’ve finished entering all your company’s assets and liabilities.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Ordinary Shares",
"account_description": "Corporations use Ordinary shares to track its ordinary shares in the hands of shareholders. The amount in this account should be the stated (or par) value of the stock.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Comprehensive Income",
"account_description": "Use Other comprehensive income to track the increases or decreases in income from various businesses that is not yet absorbed by the company.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Owner's Equity",
"account_description": "Corporations use Owner’s equity to show the cumulative net income or loss of their business as of the beginning of the financial year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Paid in Capital or surplus",
"account_description": "Corporations use Paid-in capital to track amounts received from shareholders in exchange for shares that are over and above the shares’ stated (or par) value.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Partner Contributions",
"account_description": "Partnerships use Partner contributions to track amounts partners contribute to the partnership during the year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Partner's Equity",
"account_description": "Partnerships use Partner’s equity to show the income remaining in the partnership for each partner as of the end of the prior year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Preferred Shares",
"account_description": "Corporations use this account to track its preferred shares in the hands of shareholders. The amount in this account should be the stated (or par) value of the shares.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Retained Earnings",
"account_description": "Aspire adds this account when you create your company.Retained earnings tracks net income from previous financial years.Aspire automatically transfers your profit (or loss) to Retained earnings at the end of each financial year.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Share Capital",
"account_description": "Use Share capital to track the funds raised by issuing shares.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Treasury Shares",
"account_description": "Corporations use Treasury shares to track amounts paid by the corporation to buy its own shares back from shareholders.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Discounts/Refunds Given",
"account_description": "Use Discounts/refunds given to track discounts you give to customers.This account typically has a negative balance so it offsets other income.For discounts from suppliers, use an expense account, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Non Profit income",
"account_description": "Use Non-profit income to track money coming in if you are a non-profit organization.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Primary Income",
"account_description": "Use Other primary income to track income from normal business operations that doesn’t fall into another Income type.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Revenue General",
"account_description": "Use Revenue - General to track income from normal business operations that do not fit under any other category.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Sales – Retail",
"account_description": "Use Sales - retail to track sales of goods/services that have a mark-up cost to consumers.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Sales –Wholesale",
"account_description": "Use Sales - wholesale to track the sale of goods in quantity for resale purposes. ",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Sales of product Income",
"account_description": "Use Sales of product income to track income from selling products.This can include all kinds of products, like crops and livestock, rental fees, performances, and food served.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Service/Fee Income",
"account_description": "Use Service/fee income to track income from services you perform or ordinary usage fees you charge.For fees customers pay you for late payments or other uncommon situations, use an Other Income account type called Other miscellaneous income, instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Unapplied Cash Payment Income",
"account_description": "Unapplied Cash Payment Income reports the Cash Basis income from customers payments you’ve received but not applied to invoices or charges. In general, you would never use this directly on a purchase or sale transaction.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Dividend Income",
"account_description": "Use Dividend income to track taxable dividends from investments.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Interest Earned",
"account_description": "Use Interest earned to track interest from bank or savings accounts, investments, or interest payments to you on loans your business made.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loss on Disposal of assets",
"account_description": "Use Loss on disposal of assets to track losses realized on the disposal of assets.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Investment income",
"account_description": "Use Other investment income to track other types of investment income that isn’t from dividends or interest.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Miscellaneous income",
"account_description": "Use Other miscellaneous income to track income that isn’t from normal business operations, and doesn’t fall into another Other Income type.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other operating income",
"account_description": "Use Other operating income to track income from activities other than normal business operations. For example, Investment interest, foreign exchange gains, and rent income.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Tax exempt interest",
"account_description": "Use Tax-exempt interest to record interest that isn’t taxable, such as interest on money in tax-exempt retirement accounts, or interest from tax-exempt bonds.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Unrealized Loss on securities",
"account_description": "Use Unrealised loss on securities, net of tax to track losses on securities that have occurred but are yet been realized through a transaction. For example, shares whose value has fallen but that are still being held.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Equipment Rental – COS",
"account_description": "Use Equipment rental - COS to track the cost of renting equipment to produce products or services.If you purchase equipment, use a Fixed Asset account type called Machinery and equipment.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Freight and Delivery –COS",
"account_description": "Use Freight and delivery - COS to track the cost of shipping/delivery of obtaining raw materials and producing finished goods for resale.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Costs of sales – COS",
"account_description": "Use Other costs of sales - COS to track costs related to services or sales that you provide that don’t fall into another Cost of Sales type.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Salaries and wages",
"account_description": "Use Salaries and Wages to track the cost of paying employees to produce products or supply services.It includes all employment costs, including food and transportation, if applicable.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Supplies and materials",
"account_description": "Use Supplies and materials - COS to track the cost of raw goods and parts used or consumed when producing a product or providing a service.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Advertising/Promotions",
"account_description": "Use Advertising/promotional to track money spent promoting your company.You may want different accounts of this type to track different promotional efforts (Yellow Pages, newspaper, radio, flyers, events, and so on).If the promotion effort is a meal, use Promotional meals instead.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Amortisation Expense",
"account_description": "Use Amortisation expense to track writing off of assets (such as intangible assets or investments) over the projected life of the assets.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Auto",
"account_description": "Use Auto to track costs associated with vehicles.You may want different accounts of this type to track fuel, repairs, and maintenance.If your business owns a car or truck, you may want to track its value as a Fixed Asset, in addition to tracking its expenses.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Bad Debts",
"account_description": "Use Bad debt to track debt you have written off. ",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Bank Charges",
"account_description": "Use Bank charges for any fees you pay to financial institutions.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Charitable Contributions",
"account_description": "Use Charitable contributions to track gifts to charity.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Commissions and Fees",
"account_description": "Use Commissions and fees to track amounts paid to agents (such as brokers) in order for them to execute a trade.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Cost of Labor",
"account_description": "Use Cost of labor to track the cost of paying employees to produce products or supply services.It includes all employment costs, including food and transportation, if applicable.This account is also available as a Cost of Sales (COS) account.Liabilities related to assets held for sale",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Dues and subscriptions",
"account_description": "Use Dues and subscriptions to track dues and subscriptions related to running your business.You may want different accounts of this type for professional dues, fees for licenses that can’t be transferred, magazines, newspapers, industry publications, or service subscriptions.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Equipment Rental",
"account_description": "Use Equipment rental to track the cost of renting equipment to produce products or services.This account is also available as a Cost of Sales account.If you purchase equipment, use a Fixed asset account type called Machinery and equipment.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Finance Costs",
"account_description": "Use Finance costs to track the costs of obtaining loans or credit.Examples of finance costs would be credit card fees, interest and mortgage costs.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Income Tax Expense",
"account_description": "Use Income tax expense to track income taxes that the company has paid to meet their tax obligations.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Insurance",
"account_description": "Use Insurance to track insurance payments.You may want different accounts of this type for different types of insurance (auto, general liability, and so on).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Interest Paid",
"account_description": "Use Interest paid for all types of interest you pay, including mortgage interest, finance charges on credit cards, or interest on loans.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Legal and Professional Fees",
"account_description": "Use Legal and professional fees to track money to pay to professionals to help you run your business.You may want different accounts of this type for payments to your accountant, attorney, or other consultants.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Loss on Discontinued operations",
"account_description": "Use Loss on discontinued operations, net of tax to track the loss realized when a part of the business ceases to operate or when a product line is discontinued.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Management Compensation",
"account_description": "Use Management compensation to track remuneration paid to Management, Executives and non-Executives. For example, salary, fees, and benefits.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Meals and Entertainment",
"account_description": "Use Meals and entertainment to track how much you spend on dining with your employees to promote morale.If you dine with a customer to promote your business, use a Promotional meals account, instead.Be sure to include who you ate with and the purpose of the meal when you enter the transaction.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Office Expenses",
"account_description": "Use Office expenses to track all types of general or office-related expenses.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Miscellaneous Service Costs",
"account_description": "Use Other miscellaneous service cost to track costs related to providing services that don’t fall into another Expense type.This account is also available as a Cost of Sales (COS) account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Other Selling Expenses",
"account_description": "Use Other selling expenses to track selling expenses incurred that do not fall under any other category.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Rent or Lease of Buildings",
"account_description": "Use Rent or lease of buildings to track rent payments you make.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Repair and maintenance",
"account_description": "Use Repair and maintenance to track any repairs and periodic maintenance fees.You may want different accounts of this type to track different types repair & maintenance expenses (auto, equipment, landscape, and so on).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Shipping and delivery Expense",
"account_description": "Use Shipping and delivery expense to track the cost of shipping and delivery of goods to customers.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Supplies and materials",
"account_description": "Use Supplies & materials to track the cost of raw goods and parts used or consumed when producing a product or providing a service.This account is also available as a Cost of Sales account.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Taxes Paid",
"account_description": "Use Taxes paid to track taxes you pay.You may want different accounts of this type for payments to different tax agencies.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Travel Expenses",
"account_description": "Use Travel expenses - general and admin expenses to track travelling costs incurred that are not directly related to the revenue-generating operation of the company. For example, flight tickets and hotel costs when performing job interviews.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Unapplied Cash Bill Payment",
"account_description": "Unapplied Cash Bill Payment Expensereports the Cash Basis expense from supplier payment cheques you’ve sent but not yet applied to supplier bills. In general, you would never use this directly on a purchase or sale transaction.",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Utilities",
"account_description": "Use Utilities to track utility payments.You may want different accounts of this type to track different types of utility payments (gas and electric, telephone, water, and so on).",
"organisation_pk": "*"
},
{
"table": "account",
"account_name": "Amortisation",
"account_description": "Use Amortisation to track amortisation of intangible assets.Amortisation is spreading the cost of an intangible asset over its useful life, like depreciation of fixed assets.You may want an amortisation account for each intangible asset you have.",
"organisation_pk": "*"
},
{
"table": "account",