diff --git a/account_ecotax_sale/README.rst b/account_ecotax_sale/README.rst new file mode 100644 index 000000000..a93a83302 --- /dev/null +++ b/account_ecotax_sale/README.rst @@ -0,0 +1,76 @@ +====================== +sale Ecotax Management +====================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:731b0e3366890dbeca7db020b75324a2d458308b74991b4ce1d16937c9591178 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--fiscal--rule-lightgray.png?logo=github + :target: https://github.com/OCA/account-fiscal-rule/tree/16.0/account_ecotax_sale + :alt: OCA/account-fiscal-rule +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-fiscal-rule-16-0/account-fiscal-rule-16-0-account_ecotax_sale + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-fiscal-rule&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module is an extension of the module *l10n_fr_ecotax* for sale orders. Please refer to the README of the module *l10n_fr_ecotax* for more info about ecotax management. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Mourad EL HADJ MIMOUNE + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-fiscal-rule `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_ecotax_sale/__init__.py b/account_ecotax_sale/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/account_ecotax_sale/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_ecotax_sale/__manifest__.py b/account_ecotax_sale/__manifest__.py new file mode 100644 index 000000000..ddaaaf2e0 --- /dev/null +++ b/account_ecotax_sale/__manifest__.py @@ -0,0 +1,18 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "sale Ecotax Management", + "summary": "Sale Ecotaxe", + "version": "16.0.2.0.0", + "author": "Akretion,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-fiscal-rule", + "category": "Localization/Account Taxes", + "license": "AGPL-3", + "depends": ["account_ecotax", "sale"], + "data": [ + "views/sale_view.xml", + "security/ir.model.access.csv", + ], + "installable": True, +} diff --git a/account_ecotax_sale/i18n/account_ecotaxe_sale.pot b/account_ecotax_sale/i18n/account_ecotaxe_sale.pot new file mode 100644 index 000000000..097bb7fc3 --- /dev/null +++ b/account_ecotax_sale/i18n/account_ecotaxe_sale.pot @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe_sale +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order__amount_ecotaxe +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model,name:l10n_fr_ecotaxe_sale.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model,name:l10n_fr_ecotaxe_sale.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order_line__subtotal_ecotaxe +msgid "Subtotal Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order_line__unit_ecotaxe_amount +msgid "ecotaxe Unit." +msgstr "" diff --git a/account_ecotax_sale/i18n/fr.po b/account_ecotax_sale/i18n/fr.po new file mode 100644 index 000000000..c39f68b5e --- /dev/null +++ b/account_ecotax_sale/i18n/fr.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe_sale +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-03-01 13:01+0000\n" +"PO-Revision-Date: 2022-03-01 13:01+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order__amount_ecotaxe +msgid "Included Ecotaxe" +msgstr "Ecotaxe Incluse" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model,name:l10n_fr_ecotaxe_sale.model_sale_order +msgid "Sales Order" +msgstr "Bon de commande" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model,name:l10n_fr_ecotaxe_sale.model_sale_order_line +msgid "Sales Order Line" +msgstr "Ligne de bons de commande" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order_line__subtotal_ecotaxe +msgid "Subtotal Ecotaxe" +msgstr "Sous-total Ecotaxe" + +#. module: l10n_fr_ecotaxe_sale +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe_sale.field_sale_order_line__unit_ecotaxe_amount +msgid "ecotaxe Unit." +msgstr "Ecotaxe par Unité" diff --git a/account_ecotax_sale/models/__init__.py b/account_ecotax_sale/models/__init__.py new file mode 100644 index 000000000..e95c7e574 --- /dev/null +++ b/account_ecotax_sale/models/__init__.py @@ -0,0 +1,3 @@ +from . import sale_order_line_ecotax +from . import sale_order_line +from . import sale_order diff --git a/account_ecotax_sale/models/sale_order.py b/account_ecotax_sale/models/sale_order.py new file mode 100644 index 000000000..2b930c623 --- /dev/null +++ b/account_ecotax_sale/models/sale_order.py @@ -0,0 +1,25 @@ +# © 2015 -2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class SaleOrder(models.Model): + + _inherit = "sale.order" + + amount_ecotax = fields.Float( + digits="Ecotaxe", + string="Included Ecotaxe", + store=True, + compute="_compute_ecotax", + ) + + @api.depends("order_line.subtotal_ecotax") + def _compute_ecotax(self): + for order in self: + val_ecotax = 0.0 + for line in order.order_line: + val_ecotax += line.subtotal_ecotax + order.amount_ecotax = val_ecotax diff --git a/account_ecotax_sale/models/sale_order_line.py b/account_ecotax_sale/models/sale_order_line.py new file mode 100644 index 000000000..bfb1379ac --- /dev/null +++ b/account_ecotax_sale/models/sale_order_line.py @@ -0,0 +1,131 @@ +# © 2015 -2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class SaleOrderLine(models.Model): + + _inherit = "sale.order.line" + + ecotax_line_ids = fields.One2many( + "sale.order.line.ecotax", + "sale_order_line_id", + string="Ecotax lines", + copy=True, + ) + subtotal_ecotax = fields.Float( + string="Ecotax", digits="Ecotax", store=True, compute="_compute_ecotax" + ) + ecotax_amount_unit = fields.Float( + digits="Ecotax", + string="Ecotax Unit", + store=True, + compute="_compute_ecotax", + ) + + @api.depends( + "currency_id", + "tax_id", + "product_uom_qty", + "product_id", + ) + def _compute_ecotax(self): + for line in self: + ecotax_ids = line.tax_id.filtered(lambda tax: tax.is_ecotax) + if (line.display_type and line.display_type != "product") or not ecotax_ids: + continue + amount_currency = line.price_unit * (1 - line.discount / 100) + quantity = line.product_uom_qty + compute_all_currency = ecotax_ids.compute_all( + amount_currency, + currency=line.currency_id, + quantity=quantity, + product=line.product_id, + partner=line.order_id.partner_shipping_id, + ) + subtotal_ecotax = 0.0 + for tax in compute_all_currency["taxes"]: + subtotal_ecotax += tax["amount"] + + unit = quantity and subtotal_ecotax / quantity or subtotal_ecotax + line.ecotax_amount_unit = unit + line.subtotal_ecotax = subtotal_ecotax + + @api.depends("product_id", "company_id") + def _compute_tax_id(self): + super()._compute_tax_id() + for line in self: + line.tax_id |= line._get_computed_ecotaxes() + + def _get_computed_ecotaxes(self): + self.ensure_one() + sale_ecotaxes = self.product_id.all_ecotax_line_product_ids.mapped( + "classification_id" + ).mapped("sale_ecotax_ids") + ecotax_ids = sale_ecotaxes.filtered( + lambda tax: tax.company_id == self.order_id.company_id + ) + + if ecotax_ids and self.order_id.fiscal_position_id: + ecotax_ids = self.order_id.fiscal_position_id.map_tax(ecotax_ids) + return ecotax_ids + + @api.onchange("product_id") + def _onchange_product_ecotax_line(self): + """Unlink and recreate ecotax_lines when modifying the product_id.""" + if self.product_id: + self.ecotax_line_ids = [(5,)] # Remove all ecotax classification + ecotax_cls_vals = [] + for ecotaxline_prod in self.product_id.all_ecotax_line_product_ids: + classif_id = ecotaxline_prod.classification_id.id + forced_amount = ecotaxline_prod.force_amount + ecotax_cls_vals.append( + ( + 0, + 0, + { + "classification_id": classif_id, + "force_amount_unit": forced_amount, + }, + ) + ) + self.ecotax_line_ids = ecotax_cls_vals + else: + self.ecotax_line_ids = [(5,)] + + def edit_ecotax_lines(self): + view = { + "name": ("Ecotax classification"), + "view_type": "form", + "view_mode": "form", + "res_model": "sale.order.line", + "view_id": self.env.ref( + "account_ecotax_sale.view_sale_line_ecotax_form" + ).id, + "type": "ir.actions.act_window", + "target": "new", + "res_id": self.id, + } + return view + + def _prepare_invoice_line(self, **optional_values): + """Create equivalente ecotax_line_ids for account move line + from sale order line ecotax_line_ids . + """ + res = super()._prepare_invoice_line(**optional_values) + ecotax_cls_vals = [] + for ecotaxline in self.ecotax_line_ids: + ecotax_cls_vals.append( + ( + 0, + 0, + { + "classification_id": ecotaxline.classification_id.id, + "force_amount_unit": ecotaxline.force_amount_unit, + }, + ) + ) + res["ecotax_line_ids"] = ecotax_cls_vals + return res diff --git a/account_ecotax_sale/models/sale_order_line_ecotax.py b/account_ecotax_sale/models/sale_order_line_ecotax.py new file mode 100644 index 000000000..7e604197d --- /dev/null +++ b/account_ecotax_sale/models/sale_order_line_ecotax.py @@ -0,0 +1,28 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class SaleOrderLineEcotaxe(models.Model): + _name = "sale.order.line.ecotax" + _inherit = "ecotax.line.mixin" + _description = "Sale order line ecotax" + + sale_order_line_id = fields.Many2one( + comodel_name="sale.order.line", + string="Sale line", + required=True, + readonly=True, + index=True, + auto_join=True, + ondelete="cascade", + ) + product_id = fields.Many2one( + "product.product", related="sale_order_line_id.product_id", readonly=True + ) + quantity = fields.Float(related="sale_order_line_id.product_uom_qty", readonly=True) + currency_id = fields.Many2one( + related="sale_order_line_id.currency_id", readonly=True + ) diff --git a/account_ecotax_sale/readme/CONTRIBUTORS.rst b/account_ecotax_sale/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..f55657f6b --- /dev/null +++ b/account_ecotax_sale/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Mourad EL HADJ MIMOUNE diff --git a/account_ecotax_sale/readme/DESCRIPTION.rst b/account_ecotax_sale/readme/DESCRIPTION.rst new file mode 100644 index 000000000..ad5cc0194 --- /dev/null +++ b/account_ecotax_sale/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module is an extension of the module *l10n_fr_ecotax* for sale orders. Please refer to the README of the module *l10n_fr_ecotax* for more info about ecotax management. diff --git a/account_ecotax_sale/security/ir.model.access.csv b/account_ecotax_sale/security/ir.model.access.csv new file mode 100644 index 000000000..4bf00332b --- /dev/null +++ b/account_ecotax_sale/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_ecotax_line_product_sale_readonly,ecotax.line.product readonly,account_ecotax.model_ecotax_line_product,sales_team.group_sale_salesman,1,0,0,0 +access_account_move_line_ecotax_readonly_sale_user,account.move.line.ecotax readonly sale user,account_ecotax.model_account_move_line_ecotax,sales_team.group_sale_salesman,1,0,0,0 +ir_model_access_sale_order_line_ecotax_group_sale_salesman,Read Full acess to model_sale_order_line_ecotax to group sale_salesman,model_sale_order_line_ecotax,sales_team.group_sale_salesman,1,1,1,1 diff --git a/account_ecotax_sale/static/description/icon.png b/account_ecotax_sale/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/account_ecotax_sale/static/description/icon.png differ diff --git a/account_ecotax_sale/static/description/index.html b/account_ecotax_sale/static/description/index.html new file mode 100644 index 000000000..1f0e60246 --- /dev/null +++ b/account_ecotax_sale/static/description/index.html @@ -0,0 +1,423 @@ + + + + + +sale Ecotax Management + + + +
+

sale Ecotax Management

+ + +

Beta License: AGPL-3 OCA/account-fiscal-rule Translate me on Weblate Try me on Runboat

+

This module is an extension of the module l10n_fr_ecotax for sale orders. Please refer to the README of the module l10n_fr_ecotax for more info about ecotax management.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/account-fiscal-rule project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_ecotax_sale/tests/__init__.py b/account_ecotax_sale/tests/__init__.py new file mode 100644 index 000000000..809acf6a1 --- /dev/null +++ b/account_ecotax_sale/tests/__init__.py @@ -0,0 +1 @@ +from . import test_sale_ecotax diff --git a/account_ecotax_sale/tests/test_sale_ecotax.py b/account_ecotax_sale/tests/test_sale_ecotax.py new file mode 100644 index 000000000..a23acaf09 --- /dev/null +++ b/account_ecotax_sale/tests/test_sale_ecotax.py @@ -0,0 +1,315 @@ +# © 2021-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.tests.common import tagged +from odoo import Command + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +@tagged("-at_install", "post_install") +class TestsaleEcotax(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref="l10n_fr.l10n_fr_pcg_chart_template"): + super(TestsaleEcotax, cls).setUpClass(chart_template_ref) + # ACCOUNTING STUFF + # 1- Tax account + cls.invoice_tax_account = cls.env["account.account"].create( + { + "code": "47590", + "name": "Invoice Tax Account", + "account_type": "liability_current", + "company_id": cls.env.user.company_id.id, + } + ) + cls.invoice_ecotax_account = cls.env["account.account"].create( + { + "code": "707120", + "name": "Ecotax Account", + "account_type": "income", + "company_id": cls.env.user.company_id.id, + } + ) + # 2- Invoice tax with included price to avoid unwanted amounts in tests + cls.invoice_tax = cls.env["account.tax"].create( + { + "name": "Tax 10%", + "price_include": False, + "type_tax_use": "sale", + "company_id": cls.env.user.company_id.id, + "amount": 10, + "tax_exigibility": "on_invoice", + "invoice_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_tax_account.id, + }, + ), + ], + "refund_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_tax_account.id, + }, + ), + ], + } + ) + # 3 Ecotaxes tax + cls.invoice_fixed_ecotax = cls.env["account.tax"].create( + { + "name": "Fixed Ecotax", + "type_tax_use": "sale", + "company_id": cls.env.user.company_id.id, + "price_include": False, + "amount_type": "code", + "include_base_amount": True, + "sequence": 0, + "is_ecotax": True, + "python_compute": "result = (quantity and" + " product.fixed_ecotax * quantity or 0.0)", + "tax_exigibility": "on_invoice", + "invoice_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_ecotax_account.id, + }, + ), + ], + "refund_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_ecotax_account.id, + }, + ), + ], + } + ) + cls.invoice_weight_based_ecotax = cls.env["account.tax"].create( + { + "name": "Weight Based Ecotax", + "type_tax_use": "sale", + "company_id": cls.env.user.company_id.id, + "amount_type": "code", + "include_base_amount": True, + "price_include": False, + "sequence": 0, + "is_ecotax": True, + "python_compute": "result = (quantity and" + " product.weight_based_ecotax * quantity or 0.0)", + "tax_exigibility": "on_invoice", + "invoice_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_ecotax_account.id, + }, + ), + ], + "refund_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_ecotax_account.id, + }, + ), + ], + } + ) + cls.ecotax_classification = cls.env["account.ecotax.classification"] + cls.ecotax_classification1 = cls.ecotax_classification.create( + { + "name": "Fixed Ecotax", + "ecotax_type": "fixed", + "default_fixed_ecotax": 2.4, + "product_status": "M", + "supplier_status": "MAN", + "sale_ecotax_ids": [(4, cls.invoice_fixed_ecotax.id)], + } + ) + cls.ecotax_classification2 = cls.ecotax_classification.create( + { + "name": "Weight based", + "ecotax_type": "weight_based", + "ecotax_coef": 0.04, + "product_status": "P", + "supplier_status": "MAN", + "sale_ecotax_ids": [(4, cls.invoice_weight_based_ecotax.id)], + } + ) + cls.product_a.weight = 100 + cls.product_a.taxes_id = [Command.set(cls.invoice_tax.ids)] + cls.product_a.ecotax_line_product_ids = [ + ( + 0, + 0, + { + "classification_id": cls.ecotax_classification1.id, + }, + ) + ] + cls.product_b.weight = 400 + cls.product_b.taxes_id = [Command.set(cls.invoice_tax.ids)] + cls.product_b.ecotax_line_product_ids = [ + ( + 0, + 0, + { + "classification_id": cls.ecotax_classification2.id, + }, + ) + ] + + def create_sale_partner(self, partner_id, product_id, sale_amount=0.00): + order = self.env["sale.order"].create( + { + "partner_id": partner_id.id, + "order_line": [ + ( + 0, + 0, + { + "product_id": product_id.id, + "product_uom_qty": 1, + "price_unit": sale_amount, + }, + ) + ], + } + ) + order.order_line._compute_tax_id() + order.order_line._compute_ecotax() + return order + + def test_02_classification_weight_based_ecotax(self): + """Tests multiple lines with weight based ecotaxs""" + # in order to test the correct assignment of fixed ecotax + # I create a customer sale. + partner12 = self.env.ref("base.res_partner_12") + self.sale = self.create_sale_partner( + sale_amount=200.00, partner_id=partner12, product_id=self.product_b + ) + # I assign a product with fixed ecotaxte to sale line + self.sale_line1 = self.sale.order_line[0] + # make sure to have 1 tax and fix tax rate + self.sale_line1.tax_id = self.sale_line1.tax_id[0] + self.sale_line1.tax_id.amount = 20 + self.sale_line1._onchange_product_ecotax_line() + self.sale_line1._compute_ecotax() + self.sale_line1._compute_amount() + self.sale._compute_amounts() + self.assertEqual(self.product_b.ecotax_amount, 16) + self.sale_line1.product_uom_qty = 3 + self.sale_line1._compute_tax_id() + self.sale_line1._compute_ecotax() + self.assertEqual(self.sale_line1.ecotax_amount_unit, 16) + self.assertEqual(self.sale_line1.subtotal_ecotax, 48) + self.assertEqual(self.sale.amount_total, 777.6) + self.assertEqual(self.sale.amount_ecotax, 48) + + def test_03_classification_ecotax(self): + """Tests multiple lines with mixed ecotaxs""" + # in order to test the correct assignment of fixed ecotax + # I create a customer sale. + partner12 = self.env.ref("base.res_partner_12") + self.sale = self.create_sale_partner( + sale_amount=100.00, partner_id=partner12, product_id=self.product_a + ) + # add line to SO + self.env["sale.order.line"].create( + { + "product_id": self.product_b.id, + "product_uom_qty": 2, + "price_unit": 100, + "order_id": self.sale.id, + }, + ) + # I assign a product with fixed ecotaxte to sale line + self.sale_line1 = self.sale.order_line[0] + # make sure to have 1 tax and fix tax rate + self.sale_line2 = self.sale.order_line[1] + # make sure to have 1 tax and fix tax rate + self.sale_line1._onchange_product_ecotax_line() + self.sale_line1._compute_ecotax() + self.assertEqual(self.product_a.ecotax_amount, 2.4) + self.sale_line1.product_uom_qty = 3 + self.sale_line1._onchange_product_ecotax_line() + self.assertEqual(self.sale_line1.ecotax_amount_unit, 2.4) + self.assertAlmostEqual(self.sale_line1.subtotal_ecotax, 7.2) + self.sale_line2._onchange_product_ecotax_line() + self.sale_line1._compute_ecotax() + self.assertEqual(self.sale_line2.ecotax_amount_unit, 16) + self.assertEqual(self.sale_line2.subtotal_ecotax, 32) + self.assertEqual(self.sale.amount_untaxed, 3200.0) + self.assertEqual(self.sale.amount_ecotax, 39.2) diff --git a/account_ecotax_sale/views/sale_view.xml b/account_ecotax_sale/views/sale_view.xml new file mode 100644 index 000000000..dfa4bd439 --- /dev/null +++ b/account_ecotax_sale/views/sale_view.xml @@ -0,0 +1,154 @@ + + + + + sale.order + + + + + + + + + + + + + + + + + + + + + +