Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
- OpenERP SA
- Luc De Meyer (Noviat)
- Frédéric Clementi (camptocamp)
- Florian Dacosta (Akretion)
- Stéphane Bidoul (Acsone)
- Adrien Peiffer (Acsone)
- Akim Juillerat \<<akim.juillerat@camptocamp.com>\>
- Henrik Norlin (Apps2GROW)
- Maxence Groine \<<mgroine@fiefmanage.ch>\>
- Kitti Upariphutthiphong \<<kittiu@ecosoft.co.th>\>
- Saran Lim. \<<saranl@ecosoft.co.th>\>
- [Tecnativa](https://www.tecnativa.com):
- Ernesto Tejeda
- Pedro M. Baeza
- João Marques
- Víctor Martínez
- Carlos Lopez
- [ForgeFlow](https://www.forgeflow.com):
- Jordi Ballester \<<jordi.ballester@forgeflow.com>\>
- Miquel Raïch \<<miquel.raich@forgeflow.com>\>
- [Sygel](https://www.sygel.es):
- Manuel Regidor \<<manuel.regidor@sygel.es>\>

View File

@@ -0,0 +1,20 @@
This Module manages the assets owned by a company. It will keep track of
depreciation's occurred on those assets. And it allows to create
accounting entries from the depreciation lines.
The full asset life-cycle is managed (from asset creation to asset
removal).
Assets can be created manually as well as automatically (via the
creation of an accounting entry on the asset account).
Depreciation Journal Entries can be created manually in the "Deprecation
Board" tab, or automatically by two ways:
- Using the "Invoicing/Assets/Compute Assets" wizard.
- Activating the "Asset Management: Generate assets" cron.
These options are compatibles each other.
The module contains a large number of functional enhancements compared
to the standard account_asset module from Odoo.

View File

@@ -0,0 +1,41 @@
## 14.0.1.0.0 (2021-01-08)
> - \[BREAKING\] Removed all functionality associated with
> account.fiscal.year
## 13.0.3.0.0 (2021-07-06)
- Allow to reverse the posting of a depreciation line instead of
deleting the journal entry.
## 13.0.2.0.0 (2021-02-19)
- Add support for multi-company
## 13.0.1.0.0 (2019-10-21)
- Python code and views were adapted to be compatible with v13.
- When assets are created through accounting journal items, they are
created when the journal items is posted.
- When a Bill Invoice is created or modified, at the time it is saved,
for each line that has an Asset profile and Quantity 'N' greater than
1, it will be replaced by 'N' lines identical to it but with
quantity 1. This was done to maintain the same behavior as in the
previous version, in which for each asset created there is a Journal
Item. In addition, this solution does not change the data model which
does not cause migration scripts.
- The configuration option was removed so the only function of that is
to allow the module to be uninstalled by unchecking that configuration
option.
- Tests were adapted.
## 12.0.2.1.0 (2019-10-21)
- \[IMP\] Add option to calculate depreciation table by days
## 12.0.1.0.0 (2019-01-13)
- \[BREAKING\] account.asset: parent_path has replaced parent_left &
parent_right (TODO: migration script)
- \[BREAKING\] account.asset.recompute.trigger: depends on date_range.py
(TODO: re-implement in account_fiscal_year.py)

View File

@@ -0,0 +1 @@
The module in NOT compatible with the standard account_asset module.