From 725a60dc1b273041d2a7a7e14e05e620c89a56cb Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 27 Feb 2013 18:01:43 +0100 Subject: [PATCH] [FIX] point_of_sale, usability: added help tooltip on confusing field explaining the behavior bzr revid: qdp-launchpad@openerp.com-20130227170143-hguda59nagni1j7q --- addons/point_of_sale/account_bank_statement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/point_of_sale/account_bank_statement.py b/addons/point_of_sale/account_bank_statement.py index 4f88f8e3650..31415bb847c 100644 --- a/addons/point_of_sale/account_bank_statement.py +++ b/addons/point_of_sale/account_bank_statement.py @@ -27,7 +27,7 @@ class account_journal(osv.osv): _columns = { 'journal_user': fields.boolean('PoS Payment Method', help="Check this box if this journal define a payment method that can be used in point of sales."), - 'amount_authorized_diff' : fields.float('Amount Authorized Difference'), + 'amount_authorized_diff' : fields.float('Amount Authorized Difference', help="This field depicts the maximum difference allowed between the ending balance and the theorical cash when closing a session, for non-POS managers. If this maximum is reached, the user will have an error message at the closing of his session saying that he needs to contact his manager."), 'self_checkout_payment_method' : fields.boolean('Self Checkout Payment Method'), } _defaults = {