[IMP]Improve tooltip.

bzr revid: vba@tinyerp.com-20121023132800-hhfb3two12o4pxvd
This commit is contained in:
Vijaykumar Baladaniya 2012-10-23 18:58:00 +05:30
parent 7850a91339
commit 1c9b4d9568
1 changed files with 2 additions and 2 deletions

View File

@ -30,14 +30,14 @@ class product_category(osv.osv):
relation='account.account',
string="Income Account",
view_load=True,
help="This account will be used for invoices to value sales for the current product category."),
help="This account will be used for invoices to value sales."),
'property_account_expense_categ': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Expense Account",
view_load=True,
help="This account will be used for invoices to value expenses for the current product category."),
help="This account will be used for invoices to value expenses."),
}
product_category()