mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-27 02:42:00 +02:00
Initial commit: OCA Financial packages (186 packages)
This commit is contained in:
commit
3e0e8473fb
8757 changed files with 947473 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
* Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
|
||||
* Florian da Costa <florian.dacosta@akretion.com>
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
This module adds ecotax amount on invoice line.
|
||||
furthermore, a total ecotax is added at the footer of each document.
|
||||
|
||||
To make easy ecotaxe management and to factor the data, ecotaxes are set on products via ECOTAXE classifications.
|
||||
ECOTAXE classification can either be a fixed or weight based ecotax.
|
||||
|
||||
A product can have one or serveral ecotax classifications. For example, wooden window blinds equipped with electric motor can
|
||||
have ecotax for wood and ecotax for electric motor.
|
||||
|
||||
This module has some limits :
|
||||
- The ecotax amount is always included in the price of the product.
|
||||
- The ecotax amount is not isolated in an specific accounting account but is included in the product income account.
|
||||
|
||||
If one of these limits is an issue, you could install the submodule account_ecotax_tax.
|
||||
This second module lets you manage the ecotax as a tax, so you can configure if you want it to be included or excluded of product price and also configuring an accounting account to isolate it.
|
||||
The main consequence of this approach is that the ecotax won't be considered in the turnover, since it is considered as a tax.
|
||||
|
||||
This module version add the possibility to manage several ecotax classifications by product.
|
||||
A migration script is necessary to update from previous versions.
|
||||
|
||||
There is the main change to manage in migration script:
|
||||
|
||||
renamed field
|
||||
model old field new field
|
||||
account.move.line unit_ecotaxe_amount ecotaxe_amount_unit
|
||||
product.template manual_fixed_ecotaxe force_ecotaxe_amount
|
||||
|
||||
changed fields
|
||||
model old field new field
|
||||
product.template ecotaxe_classification_id ecotaxe_classification_ids
|
||||
|
||||
added fields
|
||||
model new field
|
||||
account.move.line ecotaxe_line_ids
|
||||
product.template ecotaxe_line_product_ids
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
1. Add an ecotax classification via the menu **Accounting > Configuration > Taxes > Ecotax Classification**.
|
||||
|
||||
- The ecotax classification can be either a fixed ecotax or a weight-based ecotax.
|
||||
- Ecotax classification information can be used for legal declarations.
|
||||
- For the fixed ecotax, the ecotax amount is used as a default value, which can be overridden on the product.
|
||||
- For the weight-based ecotax, define one ecotax by a coefficient applied to the weight (depending on the product's materials).
|
||||
|
||||
2. Assign one or more ecotax classifications to a product.
|
||||
|
||||
- The ecotax amount can also be manually overridden on the product.
|
||||
|
||||
3. Create an invoice with this product
|
||||
Loading…
Add table
Add a link
Reference in a new issue