Merge PR #1035 into 13.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2020-12-28 17:22:08 +00:00

View File

@@ -145,6 +145,11 @@ class VerticalLiftShuttle(models.Model):
record = self.env[model].search([("shuttle_id", "=", self.id)])
if not record:
record = self.env[model].create({"shuttle_id": self.id})
# Since https://github.com/odoo/odoo/commit/3a6ac95
# _compute_vertical_lift_shuttle_id() don't work fine
# These change fix it temporally
if "location_id" in record:
record.location_id._compute_vertical_lift_shuttle_id()
return record
def action_open_screen(self):