Commit Graph

39 Commits

Author SHA1 Message Date
OCA-git-bot
a7359f6566 Merge PR #1513 into 14.0
Signed-off-by alexis-via
2023-03-09 16:37:40 +00:00
Kitti U
e92683f6a9 [14.0][ADD] account_asset_compute_batch 2023-01-11 17:18:50 +07:00
Alexis de Lattre
ccc5d0b27e [IMP] account_asset_management: big code cleanup
Use fields.Monetary() instead of fields.Float()
Use odoo's compare and round methods for floats
Add check_company=True where relevant
Stop using "Account" decimal precision... it doesn't exist any more!
Replace compute() by _convert() for currency conversion
2022-11-29 23:50:23 +01:00
oca-git-bot
41a5411263 [IMP] update dotfiles 2022-03-30 21:38:04 +02:00
Jordi Ballester
af223fa53c [IMP] account_asset_management: add carry_forward_missed_depreciations 2022-02-11 18:27:09 +01:00
Víctor Martínez
bc97affc91 [IMP] account_asset_management: Add chatter + activities to assets.
TT34459
2022-02-10 16:06:34 +01:00
Víctor Martínez
913454fa00 [FIX] account_asset_management: Avoid the error when clicking on "Delete" button if there is a residual value and all the depreciation lines are posted.
TT32861
2021-12-15 15:08:59 +01:00
ps-tubtim
01e2ff0914 [ENH] account_asset_management: Add purchase value in asset report 2021-09-15 23:05:40 +07:00
ps-tubtim
8de035bcab [FIX] account_asset_management: fix _check_dates 2021-08-19 02:25:08 +07:00
Jordi Ballester
cde49822f3 [13.0][fix][account_asset_management] display only accounts associated
to the current company.
2021-08-16 13:49:03 +07:00
mreficent
a4bedab0df [FIX] account_asset_management: include 'number' method_time 2021-05-11 18:03:15 +02:00
João Marques
5e0215d678 [IMP] account_asset_management: Add analytic tags and propagate
TT28974
2021-05-11 17:19:05 +02:00
Víctor Martínez
3dc3c6f1d7 [FIX] account_asset_management: Prevent create lines with init=True when account_lock_date_update addon is installed and lock date defined 2021-05-11 15:03:06 +02:00
Víctor Martínez
30877b9a92 [FIX] account_asset_management: Fix error from group_ids in asset when set profile_id 2021-04-30 11:36:21 +02:00
Luc De Meyer
940713fa53 [IMP] account_asset_management: Add reporting 2021-04-16 11:07:30 +02:00
João Marques
a88ea6e7bf [MIG] account_asset_management: Migration to v14
TT26410
2021-01-14 07:53:25 +00:00
Pedro M. Baeza
9223c6d060 [IMP] account_asset_management: Refinements 2021-01-13 07:53:36 +00:00
Carlos Dauden
a845cd2acf [IMP] account_asset_management: Improve code and translation 2021-01-13 07:53:36 +00:00
Andrea
07c4a4edb1 Fix of pre-commit: E741 ambiguous variable name 'l' 2021-01-13 07:53:35 +00:00
Quentin Groulard
1c8874c8dd [IMP] account_asset_management: Depreciation board compute upon asset confirmation 2021-01-13 07:53:35 +00:00
Pedro M. Baeza
92f8a6b79c [IMP] account_asset_management: Simplify code for opening related entries
We don't need the search having the one2many field and no need also for list
comprehension having mapped operator.
2021-01-13 07:53:35 +00:00
Pedro M. Baeza
b9d13cdc51 [FIX] account_asset_management: Avoid error
Steps to reproduce the problem:

* Go to assets view
* Group by profile
* Unfold a group and click on an asset
* Click on "Journal Entries" smart-button
* Go back to the asset list
* Click again on the same asset (or another).
* Click on "Journal Entries" smart-button

Current behavior:

Error saying "KeyError: 'profile_id'"

Expected behavior:

No error

The cause for this is that Odoo stores in the context the key `group_by` with the
value `profile_id` in the specified chain of steps. That context entry is used for
grouping records in the list, and system tries to group the journal entries also
by that field, which doesn't exists in the other model, and thus the error.

We avoided it copying the context to be passes and leaving out that entry.
2021-01-13 07:53:35 +00:00
ernestotejeda
49e6643094 [MIG] account_asset_management: Migration to 13.0 2021-01-13 07:53:35 +00:00
ernestotejeda
22b491e1c0 [IMP] account_asset_management: black, isort 2021-01-13 07:53:35 +00:00
Luc De Meyer
55aa4cad58 [12.0][FIX]traceback when deviating FY 2021-01-13 07:53:35 +00:00
Iván Todorovich
ac08a99fa3 [12.0][FIX][account_asset_management] local variable 'asset' referenced before assignment
tools/account_asset_management/models/account_asset.py", line 970, in _compute_entries
    % (asset.name, asset.code) or asset.name
UnboundLocalError: local variable 'asset' referenced before assignment
2021-01-13 07:53:35 +00:00
Joan Sisquella
810ac3ff5c [ADD] allows setting a depreciation ending date 2021-01-13 07:53:35 +00:00
Saran
979279dd47 [ADD] options 'use_leap_years' 2021-01-13 07:53:35 +00:00
Saran
66f345e2f3 [12.0][IMP] account_asset_management 2021-01-13 07:53:35 +00:00
Pedro M. Baeza
2dffd4070d [MIG+FIX+IMP] account_asset_management: Rework migration scripts + make asset group m2m 2021-01-13 07:53:35 +00:00
Henrik Norlin
187846d3ee [IMP] removed type, parent_id, parent_path, child_ids from account.asset & account.asset.profile 2021-01-13 07:53:35 +00:00
Pedro M. Baeza
a483203c37 [FIX] account_asset_management: Don't depend on account.fiscal.year created records
* There's no need of forcing to create such records if your fiscal years are regular ones.
* FY date range computation duplicates code that is already on core.
* DummyFY is a good idea, but was not used at all. Now it is.
2021-01-13 07:53:35 +00:00
Pedro M. Baeza
ca270fe67e [FIX] account_asset_management: Provide hook _compute_depreciation_amount_per_fiscal_year
This way, other method_time mechanism like localization ones is able to overwrite it.

You also got an error of variable `number` not set due to previous code. Although no
alternate implementation for a new method_time, now you don't have any error,
fallbacking to standard proportional repartition.
2021-01-13 07:53:35 +00:00
Henrik
8e3f952a75 [12.0][FIX] account_asset_management: date_range -> account_fiscal_year, account_analytic_id without domain 2021-01-13 07:53:34 +00:00
Henrik Norlin
637b1fa013 [MIG] account_asset_management: Migration to 12.0 2021-01-13 07:53:34 +00:00
Akim Juillerat
b08d477d8f [MIG] account_asset_management: Migration to 11.0 2021-01-13 07:53:34 +00:00
Luc De Meyer
6a7789526e [FIX] account_asset_management: Test data + onchange 2021-01-13 07:53:34 +00:00
Akim Juillerat
c7380f6453 [FIX+IMP] account_asset_management: 2 things:
* Fix compute methods dependencies and small optimizations
* Rename demo file to test and move it into the right folder
2021-01-13 07:53:34 +00:00
Luc De Meyer
a1650a3028 [10.0][MIG]account_asset_management suite refactoring + 10.0 port 2021-01-13 07:53:34 +00:00