You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chart-of-accounts.php 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. <?php
  2. return [
  3. 'default' => [
  4. 'current_asset' => [
  5. 'Cash and Cash Equivalents' => [
  6. 'description' => 'The most liquid assets a company holds. This includes physical currency, bank balances, and short-term investments a company can quickly convert to cash.',
  7. 'multi_currency' => true,
  8. 'base_code' => '1000',
  9. 'bank_account_type' => 'depository',
  10. 'accounts' => [
  11. 'Cash on Hand' => [
  12. 'description' => 'The amount of money held by the company in the form of cash.',
  13. ],
  14. ],
  15. ],
  16. 'Receivables' => [
  17. 'description' => 'Amounts owed to the company for goods sold or services rendered, including accounts receivable, notes receivable, and other receivables.',
  18. 'multi_currency' => false,
  19. 'base_code' => '1100',
  20. 'accounts' => [
  21. 'Accounts Receivable' => [
  22. 'description' => 'The amount of money owed to the company by customers who have not yet paid for goods or services received.',
  23. ],
  24. ],
  25. ],
  26. 'Inventory' => [
  27. 'description' => 'The raw materials, work-in-progress goods and completely finished goods that are considered to be the portion of a business\'s assets that are ready or will be ready for sale.',
  28. 'multi_currency' => true,
  29. 'base_code' => '1200',
  30. ],
  31. 'Prepaid and Deferred Charges' => [
  32. 'description' => 'Payments made in advance for future goods or services, such as insurance premiums, rent, and prepaid taxes.',
  33. 'multi_currency' => false,
  34. 'base_code' => '1300',
  35. ],
  36. 'Other Current Assets' => [
  37. 'description' => 'Other assets that are expected to be converted to cash, sold, or consumed within one year or the business\'s operating cycle.',
  38. 'multi_currency' => true,
  39. 'base_code' => '1400',
  40. ],
  41. ],
  42. 'non_current_asset' => [
  43. 'Long-Term Investments' => [
  44. 'description' => 'Investments in securities like bonds and stocks, investments in other companies, or real estate held for more than one year, aiming for long-term benefits.',
  45. 'multi_currency' => true,
  46. 'base_code' => '1500',
  47. ],
  48. 'Fixed Assets' => [
  49. 'description' => 'Physical, tangible assets used in the business\'s operations with a useful life exceeding one year, such as buildings, machinery, and vehicles. These assets are subject to depreciation.',
  50. 'multi_currency' => false,
  51. 'base_code' => '1600',
  52. ],
  53. 'Intangible Assets' => [
  54. 'description' => 'Assets lacking physical substance but offering value to the business, like patents, copyrights, trademarks, software, and goodwill.',
  55. 'multi_currency' => false,
  56. 'base_code' => '1700',
  57. ],
  58. 'Other Non-Current Assets' => [
  59. 'description' => 'Includes long-term assets not classified in the above categories, such as long-term prepaid expenses, deferred tax assets, and loans made to other entities that are not expected to be settled within the next year.',
  60. 'multi_currency' => true,
  61. 'base_code' => '1800',
  62. ],
  63. ],
  64. 'contra_asset' => [
  65. 'Depreciation and Amortization' => [
  66. 'description' => 'Accounts that accumulate depreciation of tangible assets and amortization of intangible assets, reflecting the reduction in value over time.',
  67. 'multi_currency' => false,
  68. 'base_code' => '1900',
  69. ],
  70. 'Allowances for Receivables' => [
  71. 'description' => 'Accounts representing estimated uncollectible receivables, used to adjust the value of gross receivables to a realistic collectible amount.',
  72. 'multi_currency' => false,
  73. 'base_code' => '1940',
  74. ],
  75. 'Valuation Adjustments' => [
  76. 'description' => 'Accounts used to record adjustments in asset values due to impairments, market changes, or other factors affecting their recoverable amount.',
  77. 'multi_currency' => false,
  78. 'base_code' => '1950',
  79. ],
  80. ],
  81. 'current_liability' => [
  82. 'Supplier Obligations' => [
  83. 'description' => 'Liabilities arising from purchases of goods or services from suppliers, not yet paid for. This can include individual accounts payable and trade credits.',
  84. 'multi_currency' => true,
  85. 'base_code' => '2000',
  86. 'accounts' => [
  87. 'Accounts Payable' => [
  88. 'description' => 'The amount of money owed by the company to suppliers for goods or services received.',
  89. ],
  90. ],
  91. ],
  92. 'Accrued Expenses and Liabilities' => [
  93. 'description' => 'Expenses that have been incurred but not yet paid, including wages, utilities, interest, and taxes. This category can house various accrued expense accounts.',
  94. 'multi_currency' => false,
  95. 'base_code' => '2100',
  96. 'accounts' => [
  97. 'Sales Tax Payable' => [
  98. 'description' => 'The amount of money owed to the government for sales tax collected from customers.',
  99. ],
  100. ],
  101. ],
  102. 'Short-Term Borrowings' => [
  103. 'description' => 'Debt obligations due within the next year, such as bank loans, lines of credit, and short-term notes. This category can cover multiple short-term debt accounts.',
  104. 'multi_currency' => true,
  105. 'base_code' => '2200',
  106. ],
  107. 'Customer Deposits and Advances' => [
  108. 'description' => 'Funds received in advance for goods or services to be provided in the future, including customer deposits and prepayments.',
  109. 'multi_currency' => true,
  110. 'base_code' => '2300',
  111. ],
  112. 'Other Current Liabilities' => [
  113. 'description' => 'A grouping for miscellaneous short-term liabilities not covered in other categories, like the current portion of long-term debts, short-term provisions, and other similar obligations.',
  114. 'multi_currency' => true,
  115. 'base_code' => '2400',
  116. ],
  117. ],
  118. 'non_current_liability' => [
  119. 'Long-Term Borrowings' => [
  120. 'description' => 'Obligations such as bonds, mortgages, and loans with a maturity of more than one year, covering various types of long-term debt instruments.',
  121. 'multi_currency' => true,
  122. 'base_code' => '2500',
  123. ],
  124. 'Deferred Tax Liabilities' => [
  125. 'description' => 'Taxes incurred in the current period but payable in a future period, typically due to differences in accounting methods between tax reporting and financial reporting.',
  126. 'multi_currency' => false,
  127. 'base_code' => '2600',
  128. ],
  129. 'Other Long-Term Liabilities' => [
  130. 'description' => 'Liabilities not due within the next year and not classified as long-term debt or deferred taxes, including pension liabilities, lease obligations, and long-term provisions.',
  131. 'multi_currency' => true,
  132. 'base_code' => '2700',
  133. ],
  134. ],
  135. 'contra_liability' => [
  136. 'Accumulated Amortization of Debt Discount' => [
  137. 'description' => 'Accumulated amount representing the reduction of bond or loan liabilities, reflecting the difference between the face value and the discounted issuance price over time.',
  138. 'multi_currency' => false,
  139. 'base_code' => '2900',
  140. ],
  141. 'Valuation Adjustments for Liabilities' => [
  142. 'description' => 'Adjustments made to the recorded value of liabilities, such as changes in fair value of derivative liabilities or adjustments for hedging activities.',
  143. 'multi_currency' => false,
  144. 'base_code' => '2950',
  145. ],
  146. ],
  147. 'equity' => [
  148. 'Contributed Capital' => [
  149. 'description' => 'Funds provided by owners or shareholders for starting the business and subsequent capital injections. Reflects the financial commitment of the owner(s) or shareholders to the business.',
  150. 'multi_currency' => true,
  151. 'base_code' => '3000',
  152. 'accounts' => [
  153. 'Owner\'s Investment' => [
  154. 'description' => 'The amount of money invested by the owner(s) or shareholders to start or expand the business.',
  155. ],
  156. 'Owner\'s Drawings' => [
  157. 'description' => 'The amount of money withdrawn by the owner(s) or shareholders from the business for personal use.',
  158. ],
  159. ],
  160. ],
  161. 'Retained Earnings: Profit' => [
  162. 'description' => 'Cumulative profits retained in the business and not distributed as dividends. Indicates the company\'s financial health and profit-generating ability.',
  163. 'multi_currency' => false,
  164. 'base_code' => '3100',
  165. 'accounts' => [
  166. 'Owner\'s Equity' => [
  167. 'description' => 'Owner\'s equity is what remains after you subtract business liabilities from business assets. In other words, it\'s what\'s left over for you if you sell all your assets and pay all your debts.',
  168. ],
  169. ],
  170. ],
  171. ],
  172. 'contra_equity' => [
  173. 'Contra Equity' => [
  174. 'description' => 'Equity that is deducted from gross equity to arrive at net equity. This includes treasury stock, which is stock that has been repurchased by the company.',
  175. 'multi_currency' => false,
  176. 'base_code' => '3900',
  177. ],
  178. ],
  179. 'operating_revenue' => [
  180. 'Product Sales' => [
  181. 'description' => 'Income from selling physical or digital products. Includes revenue from all product lines or categories.',
  182. 'multi_currency' => false,
  183. 'base_code' => '4000',
  184. 'accounts' => [
  185. 'Product Sales' => [
  186. 'description' => 'The amount of money earned from selling physical or digital products.',
  187. ],
  188. ],
  189. ],
  190. 'Service Revenue' => [
  191. 'description' => 'Income earned from providing services, encompassing activities like consulting, maintenance, and repair services.',
  192. 'multi_currency' => false,
  193. 'base_code' => '4100',
  194. ],
  195. 'Other Operating Revenue' => [
  196. 'description' => 'Income from other business operations not classified as product sales or services, such as rental income, royalties, or income from licensing agreements.',
  197. 'multi_currency' => false,
  198. 'base_code' => '4200',
  199. ],
  200. ],
  201. 'non_operating_revenue' => [
  202. 'Investment Income' => [
  203. 'description' => 'Earnings from investments, including dividends, interest from securities, and profits from real estate investments.',
  204. 'multi_currency' => false,
  205. 'base_code' => '4500',
  206. 'accounts' => [
  207. 'Dividends' => [
  208. 'description' => 'The amount of money received from investments in shares of other companies.',
  209. ],
  210. 'Interest Earned' => [
  211. 'description' => 'The amount of money earned from interest-bearing investments like bonds, certificates of deposit, or savings accounts.',
  212. ],
  213. ],
  214. ],
  215. 'Gains from Asset Disposition' => [
  216. 'description' => 'Profits from selling assets like property, equipment, or investments, excluding regular sales of inventory.',
  217. 'multi_currency' => false,
  218. 'base_code' => '4600',
  219. ],
  220. 'Other Non-Operating Revenue' => [
  221. 'description' => 'Income from sources not related to the main business activities, such as legal settlements, insurance recoveries, or gains from foreign exchange transactions.',
  222. 'multi_currency' => false,
  223. 'base_code' => '4700',
  224. 'accounts' => [
  225. 'Gain on Foreign Exchange' => [
  226. 'description' => 'The amount of money earned from foreign exchange transactions due to favorable exchange rate changes.',
  227. ],
  228. ],
  229. ],
  230. ],
  231. 'contra_revenue' => [
  232. 'Contra Revenue' => [
  233. 'description' => 'Revenue that is deducted from gross revenue to arrive at net revenue. This includes sales discounts, returns, and allowances.',
  234. 'multi_currency' => false,
  235. 'base_code' => '4900',
  236. 'accounts' => [
  237. 'Sales Returns and Allowances' => [
  238. 'description' => 'The amount of money returned to customers or deducted from sales due to returned goods or allowances granted.',
  239. ],
  240. 'Sales Discounts' => [
  241. 'description' => 'The amount of money deducted from sales due to discounts offered to customers for early payment or other reasons.',
  242. ],
  243. ],
  244. ],
  245. ],
  246. 'uncategorized_revenue' => [
  247. 'Uncategorized Revenue' => [
  248. 'description' => 'Revenue that has not been categorized into other revenue categories.',
  249. 'multi_currency' => false,
  250. 'base_code' => '4950',
  251. 'accounts' => [
  252. 'Uncategorized Income' => [
  253. 'description' => 'Revenue from other business operations that don\'t fall under regular sales or services. This account is used as the default for all new transactions.',
  254. ],
  255. ],
  256. ],
  257. ],
  258. 'operating_expense' => [
  259. 'Cost of Goods Sold' => [
  260. 'description' => 'Direct costs attributable to the production of goods sold by a company. This includes material costs and direct labor.',
  261. 'multi_currency' => false,
  262. 'base_code' => '5000',
  263. ],
  264. 'Payroll and Employee Benefits' => [
  265. 'description' => 'Expenses related to employee compensation, including salaries, wages, bonuses, commissions, and payroll taxes.',
  266. 'multi_currency' => false,
  267. 'base_code' => '5050',
  268. 'accounts' => [
  269. 'Salaries and Wages' => [
  270. 'description' => 'The amount of money paid to employees for their work, including regular salaries and hourly wages.',
  271. ],
  272. 'Payroll Employer Taxes and Contributions' => [
  273. 'description' => 'The amount of money paid by the employer for payroll taxes and contributions, such as social security, unemployment, and workers\' compensation.',
  274. ],
  275. 'Employee Benefits' => [
  276. 'description' => 'The amount of money spent on employee benefits, such as health insurance, retirement plans, and other benefits.',
  277. ],
  278. 'Payroll Processing Fees' => [
  279. 'description' => 'The amount of money paid to third-party payroll processors for payroll services.',
  280. ],
  281. ],
  282. ],
  283. 'Facility Expenses' => [
  284. 'description' => 'Costs incurred for business premises, including rent or lease payments, property taxes, utilities, and building maintenance.',
  285. 'multi_currency' => false,
  286. 'base_code' => '5100',
  287. 'accounts' => [
  288. 'Rent or Lease Payments' => [
  289. 'description' => 'The amount of money paid for renting or leasing business premises.',
  290. ],
  291. 'Property Taxes' => [
  292. 'description' => 'The amount of money paid for taxes on business property.',
  293. ],
  294. 'Building Maintenance' => [
  295. 'description' => 'The amount of money spent on maintaining business premises, including repairs and cleaning.',
  296. ],
  297. 'Utilities' => [
  298. 'description' => 'The amount of money paid for business utilities, such as electricity, water, and gas.',
  299. ],
  300. 'Property Insurance' => [
  301. 'description' => 'The amount of money paid for insurance on business property.',
  302. ],
  303. ],
  304. ],
  305. 'General and Administrative' => [
  306. 'description' => 'Expenses related to general business operations, such as office supplies, insurance, and professional fees.',
  307. 'multi_currency' => false,
  308. 'base_code' => '5150',
  309. 'accounts' => [
  310. 'Food and Drink' => [
  311. 'description' => 'The amount of money spent on food and drink for business purposes, such as office snacks, meals, and catering.',
  312. ],
  313. 'Transportation' => [
  314. 'description' => 'The amount of money spent on business transportation, such as fuel, vehicle maintenance, and public transportation.',
  315. ],
  316. 'Travel' => [
  317. 'description' => 'The amount of money spent on business travel, such as airfare, hotels, and rental cars.',
  318. ],
  319. 'Entertainment' => [
  320. 'description' => 'The amount of money spent on business entertainment, such as client dinners, events, and tickets.',
  321. ],
  322. 'Office Supplies' => [
  323. 'description' => 'The amount of money spent on office supplies, such as paper, ink, and stationery.',
  324. ],
  325. 'Office Equipment and Furniture' => [
  326. 'description' => 'The amount of money spent on office equipment and furniture, such as computers, printers, and desks.',
  327. ],
  328. 'Legal and Professional Fees' => [
  329. 'description' => 'The amount of money paid for legal and professional services, such as legal advice, accounting, and consulting.',
  330. ],
  331. 'Software and Subscriptions' => [
  332. 'description' => 'The amount of money spent on software and subscriptions, such as SaaS products, cloud services, and digital tools.',
  333. ],
  334. ],
  335. ],
  336. 'Marketing and Advertising' => [
  337. 'description' => 'Expenses related to marketing and advertising activities, such as advertising campaigns, promotional events, and marketing materials.',
  338. 'multi_currency' => false,
  339. 'base_code' => '5200',
  340. 'accounts' => [
  341. 'Advertising' => [
  342. 'description' => 'The amount of money spent on advertising campaigns, including print, digital, and outdoor advertising.',
  343. ],
  344. 'Marketing' => [
  345. 'description' => 'The amount of money spent on marketing activities, such as content creation, social media, and email marketing.',
  346. ],
  347. ],
  348. ],
  349. 'Research and Development' => [
  350. 'description' => 'Expenses incurred in the process of researching and developing new products or services.',
  351. 'multi_currency' => false,
  352. 'base_code' => '5250',
  353. ],
  354. 'Other Operating Expenses' => [
  355. 'description' => 'Miscellaneous expenses not categorized elsewhere, such as research and development costs, legal fees, and other irregular expenses.',
  356. 'multi_currency' => false,
  357. 'base_code' => '5300',
  358. ],
  359. ],
  360. 'non_operating_expense' => [
  361. 'Interest and Financing Costs' => [
  362. 'description' => 'Expenses related to borrowing and financing, such as interest payments on loans, bonds, and credit lines.',
  363. 'multi_currency' => false,
  364. 'base_code' => '5500',
  365. ],
  366. 'Tax Expenses' => [
  367. 'description' => 'Various taxes incurred by the business, including income tax, sales tax, property tax, and payroll tax.',
  368. 'multi_currency' => false,
  369. 'base_code' => '5600',
  370. ],
  371. 'Other Non-Operating Expense' => [
  372. 'description' => 'Expenses not related to primary business activities, like losses from asset disposals, legal settlements, restructuring costs, or foreign exchange losses.',
  373. 'multi_currency' => false,
  374. 'base_code' => '5700',
  375. 'accounts' => [
  376. 'Loss on Foreign Exchange' => [
  377. 'description' => 'The amount of money lost from foreign exchange transactions due to unfavorable exchange rate changes.',
  378. ],
  379. ],
  380. ],
  381. ],
  382. 'contra_expense' => [
  383. 'Contra Expenses' => [
  384. 'description' => 'Expenses that are deducted from gross expenses to arrive at net expenses. This includes purchase discounts, returns, and allowances.',
  385. 'multi_currency' => false,
  386. 'base_code' => '5900',
  387. 'accounts' => [
  388. 'Purchase Returns and Allowances' => [
  389. 'description' => 'The amount of money returned to suppliers or deducted from purchases due to returned goods or allowances granted.',
  390. ],
  391. 'Purchase Discounts' => [
  392. 'description' => 'The amount of money deducted from purchases due to discounts offered by suppliers for early payment or other reasons.',
  393. ],
  394. ],
  395. ],
  396. ],
  397. 'uncategorized_expense' => [
  398. 'Uncategorized Expense' => [
  399. 'description' => 'Expenses that have not been categorized into other expense categories.',
  400. 'multi_currency' => false,
  401. 'base_code' => '5950',
  402. 'accounts' => [
  403. 'Uncategorized Expense' => [
  404. 'description' => 'Expenses not classified into regular expense categories. This account is used as the default for all new transactions.',
  405. ],
  406. ],
  407. ],
  408. ],
  409. ],
  410. ];