Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

chart-of-accounts.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  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. 'inverse_cash_flow' => false,
  11. 'accounts' => [
  12. 'Cash on Hand' => [
  13. 'description' => 'The amount of money held by the company in the form of cash.',
  14. ],
  15. ],
  16. ],
  17. 'Receivables' => [
  18. 'description' => 'Amounts owed to the company for goods sold or services rendered, including accounts receivable, notes receivable, and other receivables.',
  19. 'multi_currency' => false,
  20. 'base_code' => '1100',
  21. 'inverse_cash_flow' => true,
  22. 'accounts' => [
  23. 'Accounts Receivable' => [
  24. 'description' => 'The amount of money owed to the company by customers who have not yet paid for goods or services received.',
  25. ],
  26. ],
  27. ],
  28. 'Inventory' => [
  29. '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.',
  30. 'multi_currency' => true,
  31. 'base_code' => '1200',
  32. 'inverse_cash_flow' => true,
  33. ],
  34. 'Prepaid and Deferred Charges' => [
  35. 'description' => 'Payments made in advance for future goods or services, such as insurance premiums, rent, and prepaid taxes.',
  36. 'multi_currency' => true,
  37. 'base_code' => '1300',
  38. 'inverse_cash_flow' => true,
  39. ],
  40. 'Other Current Assets' => [
  41. 'description' => 'Other assets that are expected to be converted to cash, sold, or consumed within one year or the business\'s operating cycle.',
  42. 'multi_currency' => true,
  43. 'base_code' => '1400',
  44. 'inverse_cash_flow' => true,
  45. ],
  46. ],
  47. 'non_current_asset' => [
  48. 'Long-Term Investments' => [
  49. '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.',
  50. 'multi_currency' => true,
  51. 'base_code' => '1500',
  52. 'inverse_cash_flow' => true,
  53. ],
  54. 'Fixed Assets' => [
  55. '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.',
  56. 'multi_currency' => true,
  57. 'base_code' => '1600',
  58. 'inverse_cash_flow' => true,
  59. ],
  60. 'Intangible Assets' => [
  61. 'description' => 'Assets lacking physical substance but offering value to the business, like patents, copyrights, trademarks, software, and goodwill.',
  62. 'multi_currency' => true,
  63. 'base_code' => '1700',
  64. 'inverse_cash_flow' => true,
  65. ],
  66. 'Other Non-Current Assets' => [
  67. '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.',
  68. 'multi_currency' => true,
  69. 'base_code' => '1800',
  70. 'inverse_cash_flow' => true,
  71. ],
  72. ],
  73. 'contra_asset' => [
  74. 'Depreciation and Amortization' => [
  75. 'description' => 'Accounts that accumulate depreciation of tangible assets and amortization of intangible assets, reflecting the reduction in value over time.',
  76. 'multi_currency' => false,
  77. 'base_code' => '1900',
  78. 'inverse_cash_flow' => false,
  79. 'accounts' => [
  80. 'Accumulated Depreciation' => [
  81. 'description' => 'Used to account for the depreciation of fixed assets over time, offsetting assets like equipment or property.',
  82. ],
  83. ],
  84. ],
  85. 'Allowances for Receivables' => [
  86. 'description' => 'Accounts representing estimated uncollected receivables, used to adjust the value of gross receivables to a realistic collectible amount.',
  87. 'multi_currency' => false,
  88. 'base_code' => '1940',
  89. 'inverse_cash_flow' => false,
  90. 'accounts' => [
  91. 'Allowance for Doubtful Accounts' => [
  92. 'description' => 'Used to account for potential bad debts that may not be collectable, offsetting receivables.',
  93. ],
  94. ],
  95. ],
  96. 'Valuation Adjustments' => [
  97. 'description' => 'Accounts used to record adjustments in asset values due to impairments, market changes, or other factors affecting their recoverable amount.',
  98. 'multi_currency' => false,
  99. 'base_code' => '1950',
  100. 'inverse_cash_flow' => false,
  101. ],
  102. ],
  103. 'current_liability' => [
  104. 'Supplier Obligations' => [
  105. 'description' => 'Liabilities arising from purchases of goods or services from suppliers, not yet paid for. This can include individual accounts payable and trade credits.',
  106. 'multi_currency' => true,
  107. 'base_code' => '2000',
  108. 'inverse_cash_flow' => false,
  109. 'accounts' => [
  110. 'Accounts Payable' => [
  111. 'description' => 'The amount of money owed by the company to suppliers for goods or services received.',
  112. ],
  113. ],
  114. ],
  115. 'Accrued Expenses and Liabilities' => [
  116. 'description' => 'Expenses that have been incurred but not yet paid, including wages, utilities, interest, and taxes. This category can house various accrued expense accounts.',
  117. 'multi_currency' => false,
  118. 'base_code' => '2100',
  119. 'inverse_cash_flow' => false,
  120. 'accounts' => [
  121. 'Sales Tax Payable' => [
  122. 'description' => 'The amount of money owed to the government for sales tax collected from customers.',
  123. ],
  124. ],
  125. ],
  126. 'Short-Term Borrowings' => [
  127. '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.',
  128. 'multi_currency' => true,
  129. 'base_code' => '2200',
  130. 'inverse_cash_flow' => false,
  131. ],
  132. 'Customer Deposits and Advances' => [
  133. 'description' => 'Funds received in advance for goods or services to be provided in the future, including customer deposits and prepayments.',
  134. 'multi_currency' => true,
  135. 'base_code' => '2300',
  136. 'inverse_cash_flow' => false,
  137. ],
  138. 'Other Current Liabilities' => [
  139. '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.',
  140. 'multi_currency' => true,
  141. 'base_code' => '2400',
  142. 'inverse_cash_flow' => false,
  143. ],
  144. ],
  145. 'non_current_liability' => [
  146. 'Long-Term Borrowings' => [
  147. 'description' => 'Obligations such as bonds, mortgages, and loans with a maturity of more than one year, covering various types of long-term debt instruments.',
  148. 'multi_currency' => true,
  149. 'base_code' => '2500',
  150. 'inverse_cash_flow' => false,
  151. ],
  152. 'Deferred Tax Liabilities' => [
  153. '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.',
  154. 'multi_currency' => false,
  155. 'base_code' => '2600',
  156. 'inverse_cash_flow' => false,
  157. ],
  158. 'Other Long-Term Liabilities' => [
  159. '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.',
  160. 'multi_currency' => true,
  161. 'base_code' => '2700',
  162. 'inverse_cash_flow' => false,
  163. ],
  164. ],
  165. 'contra_liability' => [
  166. 'Accumulated Amortization of Debt Discount' => [
  167. '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.',
  168. 'multi_currency' => false,
  169. 'base_code' => '2900',
  170. 'inverse_cash_flow' => false,
  171. ],
  172. 'Valuation Adjustments for Liabilities' => [
  173. 'description' => 'Adjustments made to the recorded value of liabilities, such as changes in fair value of derivative liabilities or adjustments for hedging activities.',
  174. 'multi_currency' => false,
  175. 'base_code' => '2950',
  176. 'inverse_cash_flow' => false,
  177. ],
  178. ],
  179. 'equity' => [
  180. 'Contributed Capital' => [
  181. '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.',
  182. 'multi_currency' => true,
  183. 'base_code' => '3000',
  184. 'inverse_cash_flow' => false,
  185. 'accounts' => [
  186. 'Owner\'s Investment' => [
  187. 'description' => 'The amount of money invested by the owner(s) or shareholders to start or expand the business.',
  188. ],
  189. ],
  190. ],
  191. ],
  192. 'contra_equity' => [
  193. 'Contra Equity' => [
  194. '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.',
  195. 'multi_currency' => false,
  196. 'base_code' => '3900',
  197. 'inverse_cash_flow' => true,
  198. 'accounts' => [
  199. 'Owner\'s Drawings' => [
  200. 'description' => 'The amount of money withdrawn by the owner(s) or shareholders from the business for personal use, reducing equity.',
  201. ],
  202. ],
  203. ],
  204. ],
  205. 'operating_revenue' => [
  206. 'Product Sales' => [
  207. 'description' => 'Income from selling physical or digital products. Includes revenue from all product lines or categories.',
  208. 'multi_currency' => false,
  209. 'base_code' => '4000',
  210. 'inverse_cash_flow' => false,
  211. 'accounts' => [
  212. 'Product Sales' => [
  213. 'description' => 'The amount of money earned from selling physical or digital products.',
  214. ],
  215. ],
  216. ],
  217. 'Service Revenue' => [
  218. 'description' => 'Income earned from providing services, encompassing activities like consulting, maintenance, and repair services.',
  219. 'multi_currency' => false,
  220. 'base_code' => '4100',
  221. 'inverse_cash_flow' => false,
  222. ],
  223. 'Other Operating Revenue' => [
  224. 'description' => 'Income from other business operations not classified as product sales or services, such as rental income, royalties, or income from licensing agreements.',
  225. 'multi_currency' => false,
  226. 'base_code' => '4200',
  227. 'inverse_cash_flow' => false,
  228. ],
  229. ],
  230. 'non_operating_revenue' => [
  231. 'Investment Income' => [
  232. 'description' => 'Earnings from investments, including dividends, interest from securities, and profits from real estate investments.',
  233. 'multi_currency' => false,
  234. 'base_code' => '4500',
  235. 'inverse_cash_flow' => false,
  236. 'accounts' => [
  237. 'Dividends' => [
  238. 'description' => 'The amount of money received from investments in shares of other companies.',
  239. ],
  240. 'Interest Earned' => [
  241. 'description' => 'The amount of money earned from interest-bearing investments like bonds, certificates of deposit, or savings accounts.',
  242. ],
  243. ],
  244. ],
  245. 'Gains from Asset Disposition' => [
  246. 'description' => 'Profits from selling assets like property, equipment, or investments, excluding regular sales of inventory.',
  247. 'multi_currency' => false,
  248. 'base_code' => '4600',
  249. 'inverse_cash_flow' => false,
  250. ],
  251. 'Other Non-Operating Revenue' => [
  252. 'description' => 'Income from sources not related to the main business activities, such as legal settlements, insurance recoveries, or gains from foreign exchange transactions.',
  253. 'multi_currency' => false,
  254. 'base_code' => '4700',
  255. 'inverse_cash_flow' => false,
  256. 'accounts' => [
  257. 'Gain on Foreign Exchange' => [
  258. 'description' => 'The amount of money earned from foreign exchange transactions due to favorable exchange rate changes.',
  259. ],
  260. ],
  261. ],
  262. ],
  263. 'contra_revenue' => [
  264. 'Contra Revenue' => [
  265. 'description' => 'Revenue that is deducted from gross revenue to arrive at net revenue. This includes sales discounts, returns, and allowances.',
  266. 'multi_currency' => false,
  267. 'base_code' => '4900',
  268. 'inverse_cash_flow' => true,
  269. 'accounts' => [
  270. 'Sales Returns and Allowances' => [
  271. 'description' => 'The amount of money returned to customers or deducted from sales due to returned goods or allowances granted.',
  272. ],
  273. 'Sales Discounts' => [
  274. 'description' => 'The amount of money deducted from sales due to discounts offered to customers for early payment or other reasons.',
  275. ],
  276. ],
  277. ],
  278. ],
  279. 'uncategorized_revenue' => [
  280. 'Uncategorized Revenue' => [
  281. 'description' => 'Revenue that has not been categorized into other revenue categories.',
  282. 'multi_currency' => false,
  283. 'base_code' => '4950',
  284. 'inverse_cash_flow' => false,
  285. 'accounts' => [
  286. 'Uncategorized Income' => [
  287. '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.',
  288. ],
  289. ],
  290. ],
  291. ],
  292. 'operating_expense' => [
  293. 'Cost of Goods Sold' => [
  294. 'description' => 'Direct costs attributable to the production of goods sold by a company. This includes material costs and direct labor.',
  295. 'multi_currency' => false,
  296. 'base_code' => '5000',
  297. 'inverse_cash_flow' => true,
  298. ],
  299. 'Payroll and Employee Benefits' => [
  300. 'description' => 'Expenses related to employee compensation, including salaries, wages, bonuses, commissions, and payroll taxes.',
  301. 'multi_currency' => false,
  302. 'base_code' => '5050',
  303. 'inverse_cash_flow' => true,
  304. 'accounts' => [
  305. 'Salaries and Wages' => [
  306. 'description' => 'The amount of money paid to employees for their work, including regular salaries and hourly wages.',
  307. ],
  308. 'Payroll Employer Taxes and Contributions' => [
  309. 'description' => 'The amount of money paid by the employer for payroll taxes and contributions, such as social security, unemployment, and workers\' compensation.',
  310. ],
  311. 'Employee Benefits' => [
  312. 'description' => 'The amount of money spent on employee benefits, such as health insurance, retirement plans, and other benefits.',
  313. ],
  314. 'Payroll Processing Fees' => [
  315. 'description' => 'The amount of money paid to third-party payroll processors for payroll services.',
  316. ],
  317. ],
  318. ],
  319. 'Facility Expenses' => [
  320. 'description' => 'Costs incurred for business premises, including rent or lease payments, property taxes, utilities, and building maintenance.',
  321. 'multi_currency' => false,
  322. 'base_code' => '5100',
  323. 'inverse_cash_flow' => true,
  324. 'accounts' => [
  325. 'Rent or Lease Payments' => [
  326. 'description' => 'The amount of money paid for renting or leasing business premises.',
  327. ],
  328. 'Property Taxes' => [
  329. 'description' => 'The amount of money paid for taxes on business property.',
  330. ],
  331. 'Building Maintenance' => [
  332. 'description' => 'The amount of money spent on maintaining business premises, including repairs and cleaning.',
  333. ],
  334. 'Utilities' => [
  335. 'description' => 'The amount of money paid for business utilities, such as electricity, water, and gas.',
  336. ],
  337. 'Property Insurance' => [
  338. 'description' => 'The amount of money paid for insurance on business property.',
  339. ],
  340. ],
  341. ],
  342. 'General and Administrative' => [
  343. 'description' => 'Expenses related to general business operations, such as office supplies, insurance, and professional fees.',
  344. 'multi_currency' => false,
  345. 'base_code' => '5150',
  346. 'inverse_cash_flow' => true,
  347. 'accounts' => [
  348. 'Food and Drink' => [
  349. 'description' => 'The amount of money spent on food and drink for business purposes, such as office snacks, meals, and catering.',
  350. ],
  351. 'Transportation' => [
  352. 'description' => 'The amount of money spent on business transportation, such as fuel, vehicle maintenance, and public transportation.',
  353. ],
  354. 'Travel' => [
  355. 'description' => 'The amount of money spent on business travel, such as airfare, hotels, and rental cars.',
  356. ],
  357. 'Entertainment' => [
  358. 'description' => 'The amount of money spent on business entertainment, such as client dinners, events, and tickets.',
  359. ],
  360. 'Office Supplies' => [
  361. 'description' => 'The amount of money spent on office supplies, such as paper, ink, and stationery.',
  362. ],
  363. 'Office Equipment and Furniture' => [
  364. 'description' => 'The amount of money spent on office equipment and furniture, such as computers, printers, and desks.',
  365. ],
  366. 'Legal and Professional Fees' => [
  367. 'description' => 'The amount of money paid for legal and professional services, such as legal advice, accounting, and consulting.',
  368. ],
  369. 'Software and Subscriptions' => [
  370. 'description' => 'The amount of money spent on software and subscriptions, such as SaaS products, cloud services, and digital tools.',
  371. ],
  372. ],
  373. ],
  374. 'Marketing and Advertising' => [
  375. 'description' => 'Expenses related to marketing and advertising activities, such as advertising campaigns, promotional events, and marketing materials.',
  376. 'multi_currency' => false,
  377. 'base_code' => '5200',
  378. 'inverse_cash_flow' => true,
  379. 'accounts' => [
  380. 'Advertising' => [
  381. 'description' => 'The amount of money spent on advertising campaigns, including print, digital, and outdoor advertising.',
  382. ],
  383. 'Marketing' => [
  384. 'description' => 'The amount of money spent on marketing activities, such as content creation, social media, and email marketing.',
  385. ],
  386. ],
  387. ],
  388. 'Research and Development' => [
  389. 'description' => 'Expenses incurred in the process of researching and developing new products or services.',
  390. 'multi_currency' => false,
  391. 'base_code' => '5250',
  392. 'inverse_cash_flow' => true,
  393. ],
  394. 'Other Operating Expenses' => [
  395. 'description' => 'Miscellaneous expenses not categorized elsewhere, such as research and development costs, legal fees, and other irregular expenses.',
  396. 'multi_currency' => false,
  397. 'base_code' => '5300',
  398. 'inverse_cash_flow' => true,
  399. ],
  400. ],
  401. 'non_operating_expense' => [
  402. 'Interest and Financing Costs' => [
  403. 'description' => 'Expenses related to borrowing and financing, such as interest payments on loans, bonds, and credit lines.',
  404. 'multi_currency' => false,
  405. 'base_code' => '5500',
  406. 'inverse_cash_flow' => true,
  407. ],
  408. 'Tax Expenses' => [
  409. 'description' => 'Various taxes incurred by the business, including income tax, sales tax, property tax, and payroll tax.',
  410. 'multi_currency' => false,
  411. 'base_code' => '5600',
  412. 'inverse_cash_flow' => true,
  413. ],
  414. 'Other Non-Operating Expense' => [
  415. 'description' => 'Expenses not related to primary business activities, like losses from asset disposals, legal settlements, restructuring costs, or foreign exchange losses.',
  416. 'multi_currency' => false,
  417. 'base_code' => '5700',
  418. 'inverse_cash_flow' => true,
  419. 'accounts' => [
  420. 'Loss on Foreign Exchange' => [
  421. 'description' => 'The amount of money lost from foreign exchange transactions due to unfavorable exchange rate changes.',
  422. ],
  423. ],
  424. ],
  425. ],
  426. 'contra_expense' => [
  427. 'Contra Expenses' => [
  428. 'description' => 'Expenses that are deducted from gross expenses to arrive at net expenses. This includes purchase discounts, returns, and allowances.',
  429. 'multi_currency' => false,
  430. 'base_code' => '5900',
  431. 'inverse_cash_flow' => false,
  432. 'accounts' => [
  433. 'Purchase Returns and Allowances' => [
  434. 'description' => 'The amount of money returned to suppliers or deducted from purchases due to returned goods or allowances granted.',
  435. ],
  436. 'Purchase Discounts' => [
  437. 'description' => 'The amount of money deducted from purchases due to discounts offered by suppliers for early payment or other reasons.',
  438. ],
  439. ],
  440. ],
  441. ],
  442. 'uncategorized_expense' => [
  443. 'Uncategorized Expense' => [
  444. 'description' => 'Expenses that have not been categorized into other expense categories.',
  445. 'multi_currency' => false,
  446. 'base_code' => '5950',
  447. 'inverse_cash_flow' => true,
  448. 'accounts' => [
  449. 'Uncategorized Expense' => [
  450. 'description' => 'Expenses not classified into regular expense categories. This account is used as the default for all new transactions.',
  451. ],
  452. ],
  453. ],
  454. ],
  455. ],
  456. 'cash_flow' => [
  457. 'operating_activities' => [
  458. 'directly_listed' => [
  459. 'operating_revenue',
  460. 'uncategorized_revenue',
  461. 'operating_expense',
  462. 'non_operating_expense', // e.g., interest expense
  463. 'uncategorized_expense',
  464. 'current_asset', // All current assets except for 'Cash and Cash Equivalents'
  465. ],
  466. 'adjustments' => [
  467. 'types' => [
  468. 'contra_asset', // Adjustments like accumulated depreciation
  469. 'current_liability', // Changes in accounts like Accounts Payable, Accrued Expenses
  470. ],
  471. ],
  472. ],
  473. 'investing_activities' => [
  474. 'directly_listed' => [
  475. 'non_current_asset', // Purchases or sales of long-term assets
  476. ],
  477. 'adjustments' => [
  478. 'types' => [
  479. 'non_operating_revenue', // Gains or losses on asset sales
  480. ],
  481. ],
  482. ],
  483. 'financing_activities' => [
  484. 'directly_listed' => [
  485. 'equity', // Cash flows from issuing stock, dividends paid
  486. 'non_current_liability', // Cash flows related to long-term debt
  487. 'short_term_borrowings', // Proceeds or repayments of short-term loans
  488. ],
  489. ],
  490. 'missing_activities' => [
  491. 'types' => [
  492. 'contra_liability', // Adjustments, not direct cash flows
  493. 'contra_equity', // E.g., treasury stock adjustments
  494. 'contra_revenue', // Sales returns or allowances
  495. 'contra_expense', // Purchase discounts
  496. 'Cash and Cash Equivalents', // Only appears in beginning/ending balances
  497. ],
  498. ],
  499. ],
  500. ];