-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] sale_line_service_qty_delivered: Set qty_delivered of service l…
…ines As soon as a sale.order.line is delivered the qty_delivered of the siblings service lines is set to its max qty
- Loading branch information
1 parent
c8b6516
commit 9b3ae8c
Showing
13 changed files
with
720 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
=============================== | ||
sale_line_service_qty_delivered | ||
=============================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:bee64ac4ac708a5803d483afd5b08f1e5277fd6bf1c7e438b7822fd726828038 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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/14.0/sale_line_service_qty_delivered | ||
: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-14-0/sale-workflow-14-0-sale_line_service_qty_delivered | ||
: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=14.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
Changes the Delivered Quantity (qty_delivered) of a service sale.order.line | ||
if one other sale.order.line is delivered the qty_delivered of the service line | ||
is changed to its Quantity (product_uom_qty) | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/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 <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_line_service_qty_delivered%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* Michael Tietz (MT Software) <[email protected]> | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Michael Tietz (MT Software) <[email protected]> | ||
|
||
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. | ||
|
||
.. |maintainer-mt-software-de| image:: https://github.com/mt-software-de.png?size=40px | ||
:target: https://github.com/mt-software-de | ||
:alt: mt-software-de | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-mt-software-de| | ||
|
||
This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/14.0/sale_line_service_qty_delivered>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright 2023 Michael Tietz (MT Software) <[email protected]> | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "sale_line_service_qty_delivered", | ||
"summary": "Changes the Delivered Quantity (qty_delivered) of a service sale.order.line" | ||
"if one other sale.order.line is delivered the qty_delivered of the service line" | ||
"is changed to its Quantity (product_uom_qty)", | ||
"version": "14.0.1.0.0", | ||
"license": "AGPL-3", | ||
"author": "Michael Tietz (MT Software) <[email protected]>," | ||
"Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/sale-workflow", | ||
"depends": [ | ||
"sale_stock", | ||
], | ||
"maintainers": ["mt-software-de"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import sale_order_line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 2023 Michael Tietz (MT Software) <[email protected]> | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from odoo import fields, models | ||
from odoo.tools import float_is_zero, groupby | ||
|
||
|
||
class SaleOrderLine(models.Model): | ||
_inherit = "sale.order.line" | ||
|
||
qty_delivered_method = fields.Selection(selection_add=[("delivery", "Delivery")]) | ||
|
||
def _is_delivered_method_delivery(self): | ||
self.ensure_one() | ||
return ( | ||
self.product_id.type == "service" | ||
and self.product_id.invoice_policy == "delivery" | ||
) | ||
|
||
def _compute_qty_delivered_method(self): | ||
super(SaleOrderLine, self)._compute_qty_delivered_method() | ||
for line in self: | ||
if line._is_delivered_method_delivery(): | ||
line.qty_delivered_method = "delivery" | ||
|
||
def _get_delivery_qty_delivered(self, delivered): | ||
self.ensure_one() | ||
if delivered: | ||
return self.product_uom_qty | ||
return 0.0 | ||
|
||
def _compute_qty_delivered_delivery_method(self): | ||
precision = self.env["decimal.precision"].precision_get( | ||
"Product Unit of Measure" | ||
) | ||
lines_grouped = groupby(self, lambda l: l.order_id) | ||
for order, lines in lines_grouped: | ||
lines = dict(groupby(order.order_line, lambda l: l.qty_delivered_method)) | ||
if "delivery" not in lines: | ||
continue | ||
if "stock_move" not in lines: | ||
delivered = True | ||
else: | ||
delivered = any( | ||
not float_is_zero(line.qty_delivered, precision) | ||
for line in lines["stock_move"] | ||
) | ||
for line in lines["delivery"]: | ||
line.qty_delivered = line._get_delivery_qty_delivered(delivered) | ||
|
||
def _compute_qty_delivered(self): | ||
super(SaleOrderLine, self)._compute_qty_delivered() | ||
self._compute_qty_delivered_delivery_method() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Michael Tietz (MT Software) <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Changes the Delivered Quantity (qty_delivered) of a service sale.order.line | ||
if one other sale.order.line is delivered the qty_delivered of the service line | ||
is changed to its Quantity (product_uom_qty) |
Oops, something went wrong.