diff --git a/sale_order_finish_service/README.rst b/sale_order_finish_service/README.rst new file mode 100644 index 00000000000..056cd87946d --- /dev/null +++ b/sale_order_finish_service/README.rst @@ -0,0 +1,99 @@ +========================= +Sale Order Finish Service +========================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:9188c9c7416cf060610a5fc581912cb9e22e71bce69bc48c8cbf200b5b880cae + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fsale--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/sale-workflow/tree/18.0/sale_order_finish_service + :alt: OCA/sale-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/sale-workflow-18-0/sale-workflow-18-0-sale_order_finish_service + :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/sale-workflow&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Adds a new flag on sale order to mark that the service sale order has +been finished or delivered. + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +Odoo way of handling sale orders has only 4 states (draft, sent, sale, +cancel). + +Also, on all services sale orders (linked to timesheets), it only checks +if the sale order is in state sale. In projects, it works fine, but it +can lead to errors on users, because they are not allowed to "close" an +existing sale order. + +The concept of this module is to add a new flag that will detected +"finished sale orders" and will not allow to select them anymore. + +Usage +===== + +Access a sale order. When it is in state sale order, a Finish/Unfinish +button will appear in top. + +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 +------- + +* Dixmit + +Contributors +------------ + +- `Dixmit `__ + + - Enric Tobella + +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/sale-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sale_order_finish_service/__init__.py b/sale_order_finish_service/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/sale_order_finish_service/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/sale_order_finish_service/__manifest__.py b/sale_order_finish_service/__manifest__.py new file mode 100644 index 00000000000..2f341f153ad --- /dev/null +++ b/sale_order_finish_service/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2026 Dixmit +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Sale Order Finish Service", + "summary": """Adds a finish service flag on sale orders""", + "version": "18.0.1.0.0", + "license": "AGPL-3", + "author": "Dixmit,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/sale-workflow", + "depends": ["sale_service"], + "data": [ + "views/sale_order.xml", + ], +} diff --git a/sale_order_finish_service/models/__init__.py b/sale_order_finish_service/models/__init__.py new file mode 100644 index 00000000000..2d7ee6c3dc7 --- /dev/null +++ b/sale_order_finish_service/models/__init__.py @@ -0,0 +1,2 @@ +from . import sale_order +from . import sale_order_line diff --git a/sale_order_finish_service/models/sale_order.py b/sale_order_finish_service/models/sale_order.py new file mode 100644 index 00000000000..d97af77794c --- /dev/null +++ b/sale_order_finish_service/models/sale_order.py @@ -0,0 +1,22 @@ +# Copyright 2026 Dixmit +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class SaleOrder(models.Model): + _inherit = "sale.order" + + finished_sale_order = fields.Boolean(copy=False) + + def action_finish_sale_order(self): + for order in self.filtered( + lambda o: o.state == "sale" and not o.finished_sale_order + ): + order.finished_sale_order = True + + def action_unfinish_sale_order(self): + for order in self.filtered( + lambda o: o.state == "sale" and o.finished_sale_order + ): + order.finished_sale_order = False diff --git a/sale_order_finish_service/models/sale_order_line.py b/sale_order_finish_service/models/sale_order_line.py new file mode 100644 index 00000000000..618e1e3b8d8 --- /dev/null +++ b/sale_order_finish_service/models/sale_order_line.py @@ -0,0 +1,27 @@ +# Copyright 2026 Dixmit +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models +from odoo.tools.sql import column_exists, create_column + + +class SaleOrderLine(models.Model): + _inherit = "sale.order.line" + + finished_sale_order = fields.Boolean( + related="order_id.finished_sale_order", store=True, copy=False + ) + + def _domain_sale_line_service(self, **kwargs): + domain = super()._domain_sale_line_service(**kwargs) + if kwargs.get("check_finished_sale_order", True): + domain.append(("finished_sale_order", "=", False)) + return domain + + def _auto_init(self): + """ + Create column to avoid computation by the ORM + """ + if not column_exists(self.env.cr, "sale_order_line", "finished_sale_order"): + create_column(self.env.cr, "sale_order_line", "finished_sale_order", "bool") + return super()._auto_init() diff --git a/sale_order_finish_service/pyproject.toml b/sale_order_finish_service/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/sale_order_finish_service/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/sale_order_finish_service/readme/CONTEXT.md b/sale_order_finish_service/readme/CONTEXT.md new file mode 100644 index 00000000000..c1957e93a2e --- /dev/null +++ b/sale_order_finish_service/readme/CONTEXT.md @@ -0,0 +1,6 @@ +Odoo way of handling sale orders has only 4 states (draft, sent, sale, cancel). + +Also, on all services sale orders (linked to timesheets), it only checks if the sale order is in state sale. +In projects, it works fine, but it can lead to errors on users, because they are not allowed to "close" an existing sale order. + +The concept of this module is to add a new flag that will detected "finished sale orders" and will not allow to select them anymore. diff --git a/sale_order_finish_service/readme/CONTRIBUTORS.md b/sale_order_finish_service/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..2c066ba7f42 --- /dev/null +++ b/sale_order_finish_service/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +- [Dixmit](https://www.dixmit.com) + - Enric Tobella diff --git a/sale_order_finish_service/readme/DESCRIPTION.md b/sale_order_finish_service/readme/DESCRIPTION.md new file mode 100644 index 00000000000..5042af91037 --- /dev/null +++ b/sale_order_finish_service/readme/DESCRIPTION.md @@ -0,0 +1 @@ +Adds a new flag on sale order to mark that the service sale order has been finished or delivered. \ No newline at end of file diff --git a/sale_order_finish_service/readme/USAGE.md b/sale_order_finish_service/readme/USAGE.md new file mode 100644 index 00000000000..5fffdcd8e0c --- /dev/null +++ b/sale_order_finish_service/readme/USAGE.md @@ -0,0 +1,2 @@ +Access a sale order. +When it is in state sale order, a Finish/Unfinish button will appear in top. \ No newline at end of file diff --git a/sale_order_finish_service/static/description/icon.png b/sale_order_finish_service/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/sale_order_finish_service/static/description/icon.png differ diff --git a/sale_order_finish_service/static/description/index.html b/sale_order_finish_service/static/description/index.html new file mode 100644 index 00000000000..e9067fb8452 --- /dev/null +++ b/sale_order_finish_service/static/description/index.html @@ -0,0 +1,445 @@ + + + + + +Sale Order Finish Service + + + +
+

Sale Order Finish Service

+ + +

Beta License: AGPL-3 OCA/sale-workflow Translate me on Weblate Try me on Runboat

+

Adds a new flag on sale order to mark that the service sale order has +been finished or delivered.

+

Table of contents

+ +
+

Use Cases / Context

+

Odoo way of handling sale orders has only 4 states (draft, sent, sale, +cancel).

+

Also, on all services sale orders (linked to timesheets), it only checks +if the sale order is in state sale. In projects, it works fine, but it +can lead to errors on users, because they are not allowed to “close” an +existing sale order.

+

The concept of this module is to add a new flag that will detected +“finished sale orders” and will not allow to select them anymore.

+
+
+

Usage

+

Access a sale order. When it is in state sale order, a Finish/Unfinish +button will appear in top.

+
+
+

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

+
    +
  • Dixmit
  • +
+
+
+

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/sale-workflow project on GitHub.

+

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

+
+
+
+ + diff --git a/sale_order_finish_service/views/sale_order.xml b/sale_order_finish_service/views/sale_order.xml new file mode 100644 index 00000000000..42d379395a0 --- /dev/null +++ b/sale_order_finish_service/views/sale_order.xml @@ -0,0 +1,48 @@ + + + + + sale.order + + + + +