diff --git a/delivery_send_to_shipper_at_operation/models/stock_picking.py b/delivery_send_to_shipper_at_operation/models/stock_picking.py index d17540a429..b2ba2b8024 100644 --- a/delivery_send_to_shipper_at_operation/models/stock_picking.py +++ b/delivery_send_to_shipper_at_operation/models/stock_picking.py @@ -1,4 +1,5 @@ # Copyright 2021 Camptocamp SA +# Copyright 2023 Jacques-Etienne Baudoux (BCIM) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from lxml import etree @@ -16,7 +17,7 @@ class StockPicking(models.Model): _inherit = "stock.picking" - delivery_notification_sent = fields.Boolean(default=False) + delivery_notification_sent = fields.Boolean(default=False, copy=False) def _send_confirmation_email(self): for picking in self: diff --git a/delivery_send_to_shipper_at_operation/readme/CONTRIBUTORS.rst b/delivery_send_to_shipper_at_operation/readme/CONTRIBUTORS.rst index 71ffa53b94..8c1a61275b 100644 --- a/delivery_send_to_shipper_at_operation/readme/CONTRIBUTORS.rst +++ b/delivery_send_to_shipper_at_operation/readme/CONTRIBUTORS.rst @@ -1,3 +1,4 @@ * Sébastien Alix * `Trobz `_: * Nguyen Hoang Hiep +* Jacques-Etienne Baudoux (BCIM)