-
-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
account_asset_management: half year depreciation #1801
Comments
It doesn't look too difficult to implement this but I suggest to add a usability group for this feature so that users outside Austria are not getting confused with an option that look rather exotic to me. Are there countries other than Austria requiring this ? A 'manual' bypass would be to set the asset start date to 2023.07.01 but that's not a very nice solution (accounting entries will be ok but asset report will show wrong start date). |
Hi @luc-demeyer I am not aware of other countries where it is the same. I tried already to enable prorata and set the date to 2023.07.01, but as 07.01. is not exact half of the year, this does not result in 3000€ / 3 / 2 = 500€. I also tried manually chaining the value of the first depreciation, but then the reduced amount of the first year will be added to the second one. Nice would be to be able to set it with a checkbox like prorata. It just came in my mind that there are also some other special cases. For example is there a quite new regulation that for buildings in the first year the triple amount can be depreciated, and in the second year the double. The following years again regular linear. e.g. 40 Years for a budling, which results in 2,5% per year and in the first year it can be 7,5%, in the second one 5% and afterwards the regular 2,5%. So maybe the best to cover all possibilities would be a better or different way to edit the computed depreciation board. Not sure if it is clear what I mean, and if this is possible with some modifications. So for example 3Y 3000€: Year | depreciated.value | amount | remaining_value default: editing 2023 (lowering the amount to 1/2): editing 2023 (higher amount) and editing afterwards 2024 (lower amount): So chaining depreciation amount of one year, will not chainage the amount on the following years, instead on the end of the period. Br, |
@crispyduck00 |
Hi, my programming skills are very limited. I just checked your pr [IMP]asset management: compensate deviation via last entry #1785, Then I also played a bit chainging the prorata function just to test how easy it can be implemented. This works and uses when prorata is enabled a factor of 0,5 and also shows then 184 days (01.07. to 31.12.) for the first year. Now I need to find out how to add this as a extra checkbox. And unfortunately I have no Idea how to add this correctly as a pull request to git. |
In some countries there exists a half year asset calculation. (e.g. Austria)
So if the asset starts to be used in the second half of the year (<= 01 July) then for the first year the deprecation amount is just the half.
Example:
Number of years 3, start of using is the 30.09.2023, amount 3000€
depreciation: 2023.12.31: 3000€ / 3 / 2 = 500€
depreciation: 2024.12.31: 1000€
depreciation: 2025.12.31: 1000€
depreciation: 2026.12.31: 500€
Describe the solution you'd like
Like Prorata Temporis, a additional checkbox to enable this feature and automatic calculate according it.
Describe alternatives you've considered
Possibility to manual adapt the depreciations
The text was updated successfully, but these errors were encountered: