[FIX]: stock: Small typo

bzr revid: rpa@tinyerp.com-20110118044438-jod17rb928j6y0et
This commit is contained in:
rpa (Open ERP) 2011-01-18 10:14:38 +05:30
parent e183f98ad1
commit 417b970263
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ class stock_location(osv.osv):
'company_id': fields.many2one('res.company', 'Company', select=1, help='Let this field empty if this location is shared between all companies'),
'scrap_location': fields.boolean('Scrap Location', help='Check this box to allow using this location to put scrapped/damaged goods.'),
'valuation_in_account_id': fields.many2one('account.account', 'Stock Input Account',domain = [('type','=','other')], help='This account will be used to value stock moves that have this location as destination, instead of the stock output account from the product.'),
'valuation_out_account_id': fields.many2one('account.account', 'Stock Output Account',domain = [('type','=','other')], help='This account will be used ta value stock moves that have this location as source, instead of the stock input account from the product.'),
'valuation_out_account_id': fields.many2one('account.account', 'Stock Output Account',domain = [('type','=','other')], help='This account will be used to value stock moves that have this location as source, instead of the stock input account from the product.'),
}
_defaults = {
'active': True,