From f376280475bcd64771929e4bb79187ff83f99dd6 Mon Sep 17 00:00:00 2001 From: Samir GUESMI Date: Tue, 4 Feb 2025 16:38:46 +0100 Subject: [PATCH] [MIG] partner_shipping_policy: Migration to 18.0 --- partner_shipping_policy/__manifest__.py | 2 +- partner_shipping_policy/models/res_partner.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/partner_shipping_policy/__manifest__.py b/partner_shipping_policy/__manifest__.py index 274f8515b66..2d54cad91b4 100644 --- a/partner_shipping_policy/__manifest__.py +++ b/partner_shipping_policy/__manifest__.py @@ -7,7 +7,7 @@ "author": "ForgeFlow,Odoo Community Association (OCA)", "website": "https://github.com/OCA/partner-contact", "category": "Sales", - "version": "16.0.1.0.0", + "version": "18.0.1.0.0", "license": "AGPL-3", "depends": ["sale_stock"], "data": ["views/res_partner_views.xml"], diff --git a/partner_shipping_policy/models/res_partner.py b/partner_shipping_policy/models/res_partner.py index 49681661ab2..c39962ef381 100644 --- a/partner_shipping_policy/models/res_partner.py +++ b/partner_shipping_policy/models/res_partner.py @@ -10,9 +10,9 @@ class Partner(models.Model): picking_policy = fields.Selection( selection="_get_picking_policy_selection", string="Shipping Policy", - help="Shipping policy to use in this partner's sales orders. If you deliver all " - "products at once, the delivery order will be scheduled based on the greatest " - "product lead time. Otherwise, it will be based on the shortest.", + help="Shipping policy to use in this partner's sales orders. If you deliver " + "all products at once, the delivery order will be scheduled based on the " + "greatest product lead time. Otherwise, it will be based on the shortest.", ) @api.model