diff --git a/stock_vertical_lift_kardex/models/stock_location.py b/stock_vertical_lift_kardex/models/stock_location.py index 8b3cd73c2..85af2c55d 100644 --- a/stock_vertical_lift_kardex/models/stock_location.py +++ b/stock_vertical_lift_kardex/models/stock_location.py @@ -32,7 +32,9 @@ class StockLocation(models.Model): subst = { "code": code, "hostId": self.env["ir.sequence"].next_by_code("vertical.lift.command"), - "addr": shuttle.name, + # hard code the gate for now. + # TODO proper handling of multiple gates for 1 lift. + "addr": shuttle.name + '-1', "carrier": self.level, "carrierNext": "0", "x": x, diff --git a/stock_vertical_lift_kardex/readme/ROADMAP.rst b/stock_vertical_lift_kardex/readme/ROADMAP.rst index 3d8aefd2e..a96fc55be 100644 --- a/stock_vertical_lift_kardex/readme/ROADMAP.rst +++ b/stock_vertical_lift_kardex/readme/ROADMAP.rst @@ -1 +1,2 @@ * Add support of the hardware +* handle multiple gates for one lift