Do not store shopping_cart_ref in stock.picking

develop
Andreas Osim 2023-05-22 11:11:42 +02:00
parent b0e74f75c1
commit e54a37aae3
1 changed files with 1 additions and 1 deletions

View File

@ -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',