mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
Add stock_vertical_lift module
This commit is contained in:
committed by
Dũng (Trần Đình)
parent
ca18db54c3
commit
cbd73acaee
1
stock_vertical_lift_kardex/__init__.py
Normal file
1
stock_vertical_lift_kardex/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import models
|
||||
17
stock_vertical_lift_kardex/__manifest__.py
Normal file
17
stock_vertical_lift_kardex/__manifest__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Copyright 2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
{
|
||||
'name': 'Vertical Lift - Kardex',
|
||||
'summary': 'Integrate with Kardex Remstar Vertical Lifts',
|
||||
'version': '12.0.1.0.0',
|
||||
'category': 'Stock',
|
||||
'author': 'Camptocamp, Odoo Community Association (OCA)',
|
||||
'license': 'AGPL-3',
|
||||
'depends': [
|
||||
'stock_vertical_lift',
|
||||
],
|
||||
'website': 'https://www.camptocamp.com',
|
||||
'data': [],
|
||||
'installable': True,
|
||||
'development_status': 'Alpha',
|
||||
}
|
||||
1
stock_vertical_lift_kardex/models/__init__.py
Normal file
1
stock_vertical_lift_kardex/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import vertical_lift_shuttle
|
||||
14
stock_vertical_lift_kardex/models/vertical_lift_shuttle.py
Normal file
14
stock_vertical_lift_kardex/models/vertical_lift_shuttle.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# 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
|
||||
1
stock_vertical_lift_kardex/readme/CONTRIBUTORS.rst
Normal file
1
stock_vertical_lift_kardex/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1 @@
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
2
stock_vertical_lift_kardex/readme/DESCRIPTION.rst
Normal file
2
stock_vertical_lift_kardex/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
Add support for Kardex Remstar vertical lifts to the Vertical Lift
|
||||
module.
|
||||
1
stock_vertical_lift_kardex/readme/ROADMAP.rst
Normal file
1
stock_vertical_lift_kardex/readme/ROADMAP.rst
Normal file
@@ -0,0 +1 @@
|
||||
* Add support of the hardware
|
||||
Reference in New Issue
Block a user