From 0537a5760ad2bdefc4c2e471b488d8194f3957ac Mon Sep 17 00:00:00 2001 From: PaoloYam Date: Thu, 8 Jan 2026 11:12:35 +0100 Subject: [PATCH 1/2] [FIX] stock: stock_warehouse_orderpoint unlink method domain --- addons/stock/models/stock_orderpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/stock/models/stock_orderpoint.py b/addons/stock/models/stock_orderpoint.py index b989d1f522c88..3dcf9722e3c45 100644 --- a/addons/stock/models/stock_orderpoint.py +++ b/addons/stock/models/stock_orderpoint.py @@ -475,7 +475,7 @@ def _unlink_processed_orderpoints(self): ('qty_to_order', '<=', 0) ] if self.ids: - expression.AND([domain, [('ids', 'in', self.ids)]]) + domain = expression.AND([domain, [('id', 'in', self.ids)]]) orderpoints_to_remove = self.env['stock.warehouse.orderpoint'].with_context(active_test=False).search(domain) # Remove previous automatically created orderpoint that has been refilled. orderpoints_to_remove.unlink() From 6f20def1cc21a929f777f9777ffbb09e6e65b776 Mon Sep 17 00:00:00 2001 From: PaoloYam Date: Thu, 8 Jan 2026 11:17:39 +0100 Subject: [PATCH 2/2] [CLA] add Paolo Yammouni to Camptocamp CLA --- doc/cla/corporate/camptocamp.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/cla/corporate/camptocamp.md b/doc/cla/corporate/camptocamp.md index 390bb60a87b05..5e69efd81821f 100644 --- a/doc/cla/corporate/camptocamp.md +++ b/doc/cla/corporate/camptocamp.md @@ -54,3 +54,4 @@ Victor Vermot-Petit-Outhenin victor.vermot@camptocamp.com https://github.com/vic Sarah Jallon sarah.jallon@camptocamp.com https://github.com/sarsurgithub Ricardo Almeida Soares ricardo.almeidasoares@camptocamp.com https://github.com/ricardoalso Italo Lopes italo.lopes@camptocamp.com https://github.com/imlopes +Paolo Yammouni paolo.yammouni@camptocamp.com https://github.com/paoloyam \ No newline at end of file