mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
15 lines
368 B
Python
15 lines
368 B
Python
# Copyright 2019 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class VerticalLiftShuttle(models.Model):
|
|
_inherit = 'vertical.lift.shuttle'
|
|
|
|
@api.model
|
|
def _selection_hardware(self):
|
|
values = super()._selection_hardware()
|
|
values += [('kardex', 'Kardex')]
|
|
return values
|