Skip to content
Snippets Groups Projects
Commit ea9632e6 authored by Gaetan Vanden Bergh (gavb)'s avatar Gaetan Vanden Bergh (gavb)
Browse files

[FIX] stock: manage mrp_operation picking type with fallback


mrp_operation picking type is not handle by default in stock module get_description function.

Add default return to stock get_description function

opw-3232811

closes odoo/odoo#115310

Signed-off-by: default avatarTiffany Chang <tic@odoo.com>
parent eef0deb5
No related branches found
No related tags found
No related merge requests found
......@@ -208,6 +208,7 @@ class Product(models.Model):
return self.description_pickingout or self.name
if picking_code == 'internal':
return self.description_picking or description
return description
def _get_domain_locations(self):
'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment