details:   https://code.tryton.org/tryton/commit/2c1a865682ab
branch:    default
user:      Cédric Krier <[email protected]>
date:      Thu Aug 06 10:52:54 2026 +0200
description:
        Set Shopify warehouse on sale line only if it has changed

        Closes #14995
diffstat:

 modules/web_shop_shopify/sale.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r e9f2b42e96eb -r 2c1a865682ab modules/web_shop_shopify/sale.py
--- a/modules/web_shop_shopify/sale.py  Mon Aug 10 14:51:04 2026 +0200
+++ b/modules/web_shop_shopify/sale.py  Thu Aug 06 10:52:54 2026 +0200
@@ -920,7 +920,7 @@
             line.sale = sale
             line.shopify_identifier = gid2id(line_item['id'])
             line.product = None
-        line.shopify_warehouse = warehouse
+        setattr_changed(line, 'shopify_warehouse', warehouse)
         assert line.shopify_identifier == gid2id(line_item['id'])
         if line_item['variant'] and line_item['variant']['id']:
             if product := Product.search_shopify_identifier(

Reply via email to