Skip to Content
Menu
This question has been flagged
5 Replies
2047 Views

The cheat sheet clearly lists an account and entry on the balance sheet for Common Stock:

www.odoo.com/documentation/18.0/applications/finance/accounting/get_started/cheat_sheet.html

I don't have an account to enter common stock, so I created one with code 310005.
When I generate my Balance Sheet report, the common stock is being reported as "Retained Earnings".


  1. What code range does the UK chart of accounts have setup for the common stock/equity?
  2. Why does the UK defaults not already have this account for common stock (or perhaps it does, but under an obscure name?)
Avatar
Discard

Having the same issue and freaking out since this was not the way it was handled in Odoo 16.

I hope we soon find a solution for this problem. 

Best Answer

I worked with the Odoo dev team for two days on this and have a fix. I believe they are working on a wider update but this will work for now. I'm not elevated enough on support to add pics so it'll just have to be step-by-step for now. See below:

1. To access this, you will need to enable Developer Mode. Then, navigate to your Balance Sheet, and click on the cogs at the end of the header bar. This will open the Accounting Report view of the Balance Sheet.
2. To implement a Preferred Equity account in Odoo 18.0, you first need to add a line to your balance sheet.
3. Name the line "Preferred Equity" and set the level to 5 so that it is indented enough to appear below other equity items, then drag it below Retained Earnings.
4. Next, create a new line and label it "Balance."
5. Set the computation engine to Odoo Domain, and use the formula [("account_id.name", "ilike", "Preferred Equity")] to grab any chart of account that contains "Preferred Equity" in its name. Set the subformula to -sum in order to have a subtotal of the accounts, and set Group By to account_id.
6. After that, update the formula for Current Year Retained Earnings so that Preferred Equity is not counted twice. The formula to use is ["&", ("account_id.account_type", "=", "equity"), ("account_id.name", "not ilike", "Preferred Equity")].
7. Finally click into retained earnings…
8. …update the formula to include the code of the Preferred Equity account. This will ensure that the total equity reflects both retained earnings and preferred equity.

If you need to make a few distinctions for accounts that don't get rolled into REs, each time you add another item to Preferred Equity, you will also need to add an inverse condition to the Retained Earnings formula to ensure it is not counted twice. For example:

["&", "&",
("account_id.account_type", "=", "equity"),
("account_id.name", "not ilike", "Preferred Equity"),
("account_id.name", "not ilike", "Insert Text")
]

You must add another "&" at the beginning for every additional condition you include in the domain.

Thank you.

Avatar
Discard
Best Answer

Can I ask how this was resolved? Because share capital can never become retained earnings. I don't know who at Odoo approved this change - complete beginner error??? 

Now we all need to manually change the system? Doesn't make sense either but I need to do it for our customers. Happy for any solution on this. 

Avatar
Discard

I'm working with Odoo developers as we speak. I will report back here by EOD. Thanks.

Best Answer

Hi,


In Odoo, the Balance Sheet is structured using account tags rather than just account codes. The UK chart of accounts that ships with Odoo follows UK GAAP conventions, so you won’t find a “Common Stock” account like in US accounting. Instead, equity is represented through accounts such as “Called Up Share Capital,” “Share Premium Account,” and “Other Reserves.”


When you created your own account with code 310005, Odoo placed it under Retained Earnings because it wasn’t linked to the proper equity tag. This happens since Odoo uses those tags to decide where accounts appear on the Balance Sheet report.


In the UK CoA, equity accounts usually fall in the 300000–399999 range. To align with UK standards, you should either use existing accounts like “Called Up Share Capital” or assign the correct tags to your custom account. This ensures it shows up under the right Equity section instead of Retained Earnings.



Hope it helps

Avatar
Discard
Author Best Answer
  1. The screenshot from Chris Tringham shows a structure of the calculation, where can I access that structure?  (I am presuming there is some way to edit it once I know where to look at that)
  2. What will be needed achieve the layout I expect showing common stock as its own line under Equity, as per the cheat sheet (and what I would expect on a set of accounts anywhere)?
  3. Whatever those steps are, will they something all users are expected to setup, or is this some error in the UK defaults as it feels like this should already be in place for me?
Avatar
Discard

Hi Leon - I updated my answer - it looks as if this has been changed in v18

Best Answer

The code range doesn't really matter, it's the formula (and labels) on the Balance Sheet that control this.

In v17, the "Retained Earnings" line is the sum of the balances of all the Equity accounts:

I assume your new account is of type Equity, so indeed it will be included in Retained Earnings.


You can change the structure of the Financial Reports in the Settings menu (this is v18):

Note that in v18 there are two lines for Retained Earnings, current year and previous years but it does not separate out the Common Stock.  In v17 there is one line.


Unfortunately, Odoo documentation is sometimes like that - the "Cheat Sheet" is helpful but doesn't quite match up with current system!

Avatar
Discard
Related Posts Replies Views Activity
1
Oct 25
129
0
Oct 25
124
0
Oct 25
19
0
Oct 25
16
0
Oct 25
2