Skip to content

Commit

Permalink
[FIX] stock: same label on stock move line
Browse files Browse the repository at this point in the history
previous commit
(325c027)
set a the same label on stock_move_line.lot_id and
stock_move_line.lot_name.

This commit set two different labels
  • Loading branch information
Whenrow committed Jun 25, 2018
1 parent 99cdd48 commit 9d4a811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/stock/models/stock_move_line.py
Expand Up @@ -33,7 +33,7 @@ class StockMoveLine(models.Model):
package_id = fields.Many2one('stock.quant.package', 'Source Package', ondelete='restrict')
package_level_id = fields.Many2one('stock.package_level', 'Package Level')
lot_id = fields.Many2one('stock.production.lot', 'Lot/Serial Number')
lot_name = fields.Char('Lot/Serial Number')
lot_name = fields.Char('Lot/Serial Number Name')
result_package_id = fields.Many2one(
'stock.quant.package', 'Destination Package',
ondelete='restrict', required=False,
Expand Down

0 comments on commit 9d4a811

Please sign in to comment.