[IMP] add tooltips on wizards

bzr revid: mra@mra-laptop-20100728105212-i8tg71zz193cj2z4
This commit is contained in:
Mustufa Rangwala 2010-07-28 16:22:12 +05:30
parent b8aa067869
commit a22cc2cd8a
4 changed files with 10 additions and 7 deletions

View File

@ -26,7 +26,7 @@ class account_common_journal_report(osv.osv_memory):
_description = 'Account Common Journal Report'
_inherit = "account.common.report"
_columns = {
'amount_currency': fields.boolean("With Currency", help='Print report with currency column'),
'amount_currency': fields.boolean("With Currency", help="It adds the currency column if the currency is different then the company currency"),
}
def _build_context(self, cr, uid, ids, data, context=None):

View File

@ -28,8 +28,9 @@ class account_report_general_ledger(osv.osv_memory):
_columns = {
'landscape': fields.boolean("Landscape Mode"),
'initial_balance': fields.boolean("Include initial balances"),
'amount_currency': fields.boolean("With Currency"),
'initial_balance': fields.boolean("Include initial balances",
help='It adds initial balance row on report which display previous sum amount of debit/credit/balance'),
'amount_currency': fields.boolean("With Currency", help="It adds the currency column if the currency is different then the company currency"),
'sortby': fields.selection([('sort_date', 'Date'), ('sort_journal_partner', 'Journal & Partner')], 'Sort By', required=True),
}
_defaults = {

View File

@ -29,7 +29,8 @@ class account_partner_balance(osv.osv_memory):
_name = 'account.partner.balance'
_description = 'Print Account Partner Balance'
_columns = {
'soldeinit': fields.boolean('Include Initial Balances'),
'soldeinit': fields.boolean('Include Initial Balances'
,help='It adds initial balance row on report which display previous sum amount of debit/credit/balance'),
}
_defaults = {
'soldeinit': True,

View File

@ -29,10 +29,11 @@ class account_partner_ledger(osv.osv_memory):
_inherit = 'account.common.partner.report'
_description = 'Account Partner Ledger'
_columns = {
'soldeinit': fields.boolean('Include initial balances'),
'soldeinit': fields.boolean('Include initial balances',
help='It adds initial balance row on report which display previous sum amount of debit/credit/balance'),
'reconcil': fields.boolean('Include Reconciled Entries'),
'page_split': fields.boolean('One Partner Per Page'),
'amount_currency': fields.boolean("With Currency", help='Print report with currency column'),
'page_split': fields.boolean('One Partner Per Page', help='Display Ledger Report with One partner per page'),
'amount_currency': fields.boolean("With Currency", help="It adds the currency column if the currency is different then the company currency"),
}
_defaults = {
'reconcile' : True,