[REM] stock_landed_costs : Removed the unnecessary code.

bzr revid: mdi@tinyerp.com-20140416054045-3kyrasl4ixtwcpzi
This commit is contained in:
DJ Patel 2014-04-16 11:10:45 +05:30
parent d9b6bcce29
commit 7d5b66c526
1 changed files with 0 additions and 8 deletions

View File

@ -296,12 +296,4 @@ class stock_valuation_adjustment_lines(osv.osv):
'flag': 'original',
}
def copy(self, cr, uid, id, default=None, context=None):
if default is None:
default = {}
default.update({
'account_move_id':False,
})
return super(stock_valuation_adjustment_lines, self).copy(cr, uid, id, default, context=context)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: