changeset 2696175fb5ad in modules/account:default
details: https://hg.tryton.org/modules/account?cmd=changeset;node=2696175fb5ad
description:
Define help attribute on Many2One not MultiValue
diffstat:
configuration.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (23 lines):
diff -r 64c2dc298949 -r 2696175fb5ad configuration.py
--- a/configuration.py Sun Aug 18 19:06:19 2019 +0200
+++ b/configuration.py Sun Aug 18 19:14:44 2019 +0200
@@ -36,15 +36,15 @@
domain=[
('company', '=', Eval('context', {}).get('company', -1)),
('kind', 'in', ['sale', 'both']),
- ]),
- help="Default customer tax rule for new parties.")
+ ],
+ help="Default customer tax rule for new parties."))
default_supplier_tax_rule = fields.MultiValue(fields.Many2One(
'account.tax.rule', "Default Supplier Tax Rule",
domain=[
('company', '=', Eval('context', {}).get('company', -1)),
('kind', 'in', ['purchase', 'both']),
- ]),
- help="Default supplier tax rule for new parties.")
+ ],
+ help="Default supplier tax rule for new parties."))
tax_rounding = fields.MultiValue(fields.Selection(
tax_roundings, "Tax Rounding"))