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

[14.0][FIX] delivery_send_to_shipper_at_operation #720

Merged
Merged
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright 2021 Camptocamp SA
# Copyright 2023 Jacques-Etienne Baudoux (BCIM) <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)

from lxml import etree
Expand All @@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Sébastien Alix <[email protected]>
* `Trobz <https://trobz.com>`_:
* Nguyen Hoang Hiep <[email protected]>
* Jacques-Etienne Baudoux (BCIM) <[email protected]>
Loading