details: https://code.tryton.org/tryton/commit/0a42f3089c4f
branch: default
user: Cédric Krier <[email protected]>
date: Mon Dec 08 10:31:43 2025 +0100
description:
Improve help for gross price as it included many taxes
diffstat:
modules/sale_point/product.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (19 lines):
diff -r c9903ae43bec -r 0a42f3089c4f modules/sale_point/product.py
--- a/modules/sale_point/product.py Mon Dec 08 10:30:10 2025 +0100
+++ b/modules/sale_point/product.py Mon Dec 08 10:31:43 2025 +0100
@@ -54,13 +54,13 @@
states={
'invisible': ~Eval('salable', False),
},
- help="The price with default tax included.\n"
+ help="The price with default taxes included.\n"
"Leave empty to use the gross price of the product."))
gross_prices = fields.One2Many(
'product.gross_price', 'product', "Gross Prices")
gross_price_used = fields.Function(fields.Numeric(
"Gross Price", digits=price_digits,
- help="The price with default tax included."),
+ help="The price with default taxes included."),
'get_gross_price_used')
@classmethod