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