[FIX] account_anglo_saxon: Fixed 438717

lp bug: https://launchpad.net/bugs/438717 fixed

bzr revid: pso@tinyerp.com-20101221105926-v8yolvocwulslyc6
This commit is contained in:
hda(Open ERP) 2010-12-21 16:29:26 +05:30 committed by pso
parent f32adf267a
commit 2afb6b4fb9
1 changed files with 38 additions and 2 deletions

View File

@ -30,7 +30,25 @@ class product_category(osv.osv):
string="Price Difference Account",
method=True,
view_load=True,
help="This account will be used to value price difference between purchase price and cost price."),
help="This account will be used to value price difference between purchase price and cost price."),
#Redefine fields to change help text for anglo saxon methodology.
'property_account_income_categ': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Income Account",
method=True,
view_load=True,
help="This account will be used to value outgoing stock for the current product category using sale price"),
'property_account_expense_categ': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Expense Account",
method=True,
view_load=True,
help="This account will be used to value outgoing stock for the current product category using cost price"),
}
product_category()
@ -45,7 +63,25 @@ class product_template(osv.osv):
string="Price Difference Account",
method=True,
view_load=True,
help="This account will be used to value price difference between purchase price and cost price."),
help="This account will be used to value price difference between purchase price and cost price."),
#Redefine fields to change help text for anglo saxon methodology.
'property_account_income': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Income Account",
method=True,
view_load=True,
help="This account will be used to value outgoing stock for the current product category using sale price"),
'property_account_expense': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Expense Account",
method=True,
view_load=True,
help="This account will be used to value outgoing stock for the current product category using cost price"),
}
product_template()