details: https://code.tryton.org/tryton/commit/91280bf93224
branch: default
user: Cédric Krier <[email protected]>
date: Tue Apr 14 15:19:59 2026 +0200
description:
Improve help text for the tax rule fields on party
Closes #12674
diffstat:
modules/account/party.py | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diffs (27 lines):
diff -r 26b2c5a94b90 -r 91280bf93224 modules/account/party.py
--- a/modules/account/party.py Thu May 07 18:36:18 2026 +0200
+++ b/modules/account/party.py Tue Apr 14 15:19:59 2026 +0200
@@ -60,7 +60,10 @@
],
states={
'invisible': ~Eval('context', {}).get('company'),
- }, help='Apply this rule on taxes when party is customer.'))
+ },
+ help="Apply this rule to the default taxes "
+ "when the party is a customer.\n"
+ "Leave it empty to keep the default taxes."))
supplier_tax_rule = fields.MultiValue(fields.Many2One(
'account.tax.rule', "Supplier Tax Rule",
domain=[
@@ -69,7 +72,10 @@
],
states={
'invisible': ~Eval('context', {}).get('company'),
- }, help='Apply this rule on taxes when party is supplier.'))
+ },
+ help="Apply this rule to the default taxes "
+ "when the party is a supplier.\n"
+ "Leave it empty to keep the default taxes."))
currency = fields.Function(fields.Many2One(
'currency.currency', "Currency"), 'get_currency')
receivable = fields.Function(Monetary(