[FIX] stock: fixed wrongly removed line from previous commit

bzr revid: qdp-launchpad@openerp.com-20140428100949-se3xpeix06udq1k2
This commit is contained in:
Quentin (OpenERP) 2014-04-28 12:09:49 +02:00
parent 9790132189
commit 606050aae3
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ class stock_quant(osv.osv):
# Used for negative quants to reconcile after compensated by a new positive one
'propagated_from_id': fields.many2one('stock.quant', 'Linked Quant', help='The negative quant this is coming from'),
'negative_move_id': fields.many2one('stock.move', 'Move Negative Quant', help='If this is a negative quant, this will be the move that caused this negative quant.'),
'negative_dest_location_id': fields.related('negative_move_id', 'location_dest_id', type='many2one', relation='stock.location', string="Negative Destination Location",
'negative_dest_location_id': fields.related('negative_move_id', 'location_dest_id', type='many2one', relation='stock.location', string="Negative Destination Location", help="Technical field used to record the destination location of a move that created a negative quant"),
}
_defaults = {