Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP][IMP] sale_order_line_cancel: support kits #4

Draft
wants to merge 1 commit into
base: 16.0-sale_cancel_remaining-sbj
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sale_order_line_cancel/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# © 2016 Sylvain Van Hoof
# Copyright 2018 Sylvain Van Hoof (Okia SPRL)
# Copyright 2018 Jacques-Etienne Baudoux (BCIM) <[email protected]>
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

Expand Down
18 changes: 11 additions & 7 deletions sale_order_line_cancel/models/sale_order.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Copyright 2023 ACSONE SA/NV
# Copyright 2024 Jacques-Etienne Baudoux (BCIM) <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import models


class SaleOrder(models.Model):

_inherit = "sale.order"

def action_draft(self):
Expand All @@ -16,14 +16,18 @@ def action_draft(self):

def _action_cancel(self):
orders = self.filtered(lambda s: s.state != "cancel")
orders_with_picking = orders.filtered("picking_ids")
orders_with_stock_move = orders.filtered(
lambda o: any(
line.qty_delivered_method == "stock_move" for line in o.order_line
)
)
res = None
if orders_with_picking:
orders_with_picking = orders_with_picking.with_context(
orders_cancel_by_running_procurements=orders_with_picking.ids
if orders_with_stock_move:
orders_with_stock_move = orders_with_stock_move.with_context(
orders_cancel_by_running_procurements=orders_with_stock_move.ids
)
res = super(SaleOrder, orders_with_picking)._action_cancel()
remaining_orders = orders - orders_with_picking
res = super(SaleOrder, orders_with_stock_move)._action_cancel()
remaining_orders = orders - orders_with_stock_move
if remaining_orders:
res = super(SaleOrder, remaining_orders)._action_cancel()

Expand Down
15 changes: 7 additions & 8 deletions sale_order_line_cancel/models/sale_order_line.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright 2018 Okia SPRL
# Copyright 2018 Jacques-Etienne Baudoux (BCIM) <[email protected]>
# Copyright 2020 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Expand Down Expand Up @@ -34,7 +35,7 @@ def _compute_can_cancel_remaining_qty(self):
)
== 1
and rec.state in ("sale", "done")
and rec.move_ids
and rec.qty_delivered_method == "stock_move"
)

@api.depends(
Expand All @@ -44,10 +45,8 @@ def _compute_can_cancel_remaining_qty(self):
)
def _compute_product_qty_remains_to_deliver(self):
for line in self:
remaining_to_deliver = (
line.product_uom_qty - line.qty_delivered - line.product_qty_canceled
)
line.product_qty_remains_to_deliver = remaining_to_deliver
qty_remaining = line.qty_to_deliver - line.product_qty_canceled
line.product_qty_remains_to_deliver = qty_remaining

def _get_moves_to_cancel(self):
return self.move_ids.filtered(lambda m: m.state not in ("done", "cancel"))
Expand Down Expand Up @@ -101,11 +100,11 @@ def _cancel_by_running_procurement(self):
simulate_procured_qty = self.product_uom_qty + qty_to_cancel
self.ensure_one()
line = self.with_context(simulate_procured_qty=simulate_procured_qty)
previous_sate = line.state
previous_state = line.state
line.state = "sale"
line._action_launch_stock_rule(simulate_procured_qty)
line.state = previous_sate
line.product_qty_canceled += qty_to_cancel
line.state = previous_state
line.product_qty_canceled = line.qty_to_deliver

def _get_qty_procurement(self, previous_product_uom_qty=False):
return self.env.context.get(
Expand Down
10 changes: 6 additions & 4 deletions sale_order_line_cancel/models/stock_move.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# Copyright 2023 ACSONE SA/NV
# Copyright 2024 Jacques-Etienne Baudoux (BCIM) <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import models


class StockMove(models.Model):

_inherit = "stock.move"

def _action_cancel(self):
sale_moves = self.filtered(
lambda m: m.sale_line_id and m.state not in ("done", "cancel")
)
res = super()._action_cancel()
for rec in sale_moves:
if rec.state != "cancel":
sale_lines = sale_moves.filtered(lambda m: m.state == "cancel").sale_line_id
for line in sale_lines:
# Update SO line qty canceled only when all remaining moves are canceled
if line._get_moves_to_cancel():
continue
rec.sale_line_id.product_qty_canceled = rec.product_uom_qty
line.product_qty_canceled = line.qty_to_deliver
return res
1 change: 0 additions & 1 deletion sale_order_line_cancel/models/stock_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class StockPicking(models.Model):

_inherit = "stock.picking"

def action_cancel(self):
Expand Down
Loading