details:   https://code.tryton.org/tryton/commit/ff89f16c993d
branch:    default
user:      Sergi Almacellas Abellana <[email protected]>
date:      Tue Dec 09 13:33:34 2025 +0100
description:
        Fix max_volume and max_weight field strings
diffstat:

 modules/stock_shipping_point/stock.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 8f94ef8b63af -r ff89f16c993d modules/stock_shipping_point/stock.py
--- a/modules/stock_shipping_point/stock.py     Mon Dec 01 09:59:15 2025 +0100
+++ b/modules/stock_shipping_point/stock.py     Tue Dec 09 13:33:34 2025 +0100
@@ -153,7 +153,7 @@
                 []),
             ])
     max_weight = fields.Float(
-        "Minimal Weight", digits='weight_uom',
+        "Maximum Weight", digits='weight_uom',
         domain=[
             If(Eval('min_weight'),
                 ['OR',
@@ -180,7 +180,7 @@
                 []),
             ])
     max_volume = fields.Float(
-        "Minimal Volume", digits='volume_uom',
+        "Maximal Volume", digits='volume_uom',
         domain=[
             If(Eval('min_volume'),
                 ['OR',

Reply via email to