From e54a37aae3e13a39832a0a5b09881258b603fa35 Mon Sep 17 00:00:00 2001 From: Andreas Osim Date: Mon, 22 May 2023 11:11:42 +0200 Subject: [PATCH] Do not store shopping_cart_ref in stock.picking --- ext/custom-addons/dp_custom/models/stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/custom-addons/dp_custom/models/stock.py b/ext/custom-addons/dp_custom/models/stock.py index 45d56255..4465f2b5 100644 --- a/ext/custom-addons/dp_custom/models/stock.py +++ b/ext/custom-addons/dp_custom/models/stock.py @@ -55,7 +55,7 @@ class StockPicking(models.Model): dlv_partner_ref = fields.Text(compute='_get_partner_ref', store=False, string='Interne Referenz') picking_signature = fields.Binary(string='Customer Signature', default=None) - shopping_cart_ref = fields.Text(compute='_get_shopping_cart_ref', store=True, string='Warenkorb') + shopping_cart_ref = fields.Text(compute='_get_shopping_cart_ref', store=False, string='Warenkorb') free_over = fields.Boolean(help="If the order total amount (shipping excluded) is above or equal to this value, the customer benefits from a free shipping \nIf this value = 0, no freight item is added to the order") show_to_sign = fields.Text( compute='_compute_show_to_sign',