changeset ca48d81a46b8 in modules/commission_waiting:default
details: 
https://hg.tryton.org/modules/commission_waiting?cmd=changeset;node=ca48d81a46b8
description:
        Add help text

        issue7234
        review44781002
diffstat:

 commission.py |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r cf3b88fd0da5 -r ca48d81a46b8 commission.py
--- a/commission.py     Thu Mar 19 19:03:44 2020 +0100
+++ b/commission.py     Mon Apr 13 17:37:23 2020 +0200
@@ -15,12 +15,15 @@
             ('closed', '!=', True),
             ('company', '=', Eval('company')),
             ],
-        depends=['company'])
+        depends=['company'],
+        help="The account the agent's waiting commission amounts are posted "
+        "to.")
 
 
 class Commission(metaclass=PoolMeta):
     __name__ = 'commission'
-    waiting_move = fields.Many2One('account.move', 'Move', readonly=True)
+    waiting_move = fields.Many2One(
+        'account.move', "Waiting Move", readonly=True)
 
     @classmethod
     def __setup__(cls):

Reply via email to