Skip to content

Commit

Permalink
[IMP] fieldservice_vehicle_stock
Browse files Browse the repository at this point in the history
Minimize dependency on stock_request
  • Loading branch information
brian10048 committed Jan 5, 2021
1 parent 6fbad52 commit 1d50fe7
Show file tree
Hide file tree
Showing 8 changed files with 503 additions and 1 deletion.
1 change: 0 additions & 1 deletion fieldservice_vehicle_stock/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from . import (
fsm_vehicle,
fsm_order,
stock_request,
product_putaway,
stock_picking,
)
4 changes: 4 additions & 0 deletions fieldservice_vehicle_stock_request/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (C) 2018 - TODAY, Brian McMaster
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import models
29 changes: 29 additions & 0 deletions fieldservice_vehicle_stock_request/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright (C) 2018 Brian McMaster
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Field Service Vehicles - Stock Request',
'summary': 'Link Stock Requests with Field Service Vehicle Inventory',
'version': '12.0.1.0.0',
'category': 'Field Service',
'author': "Open Source Integrators, "
"Brian McMaster, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/field-service',
'depends': [
'fieldservice_vehicle_stock',
'fieldservice_stock_request',
'fieldservice_delivery',
],
'data': [
'views/fsm_order.xml',
],
'installable': True,
'auto_install': True,
'license': 'AGPL-3',
'development_status': 'Beta',
'maintainers': [
'wolfhall',
'max3903',
],
}
1 change: 1 addition & 0 deletions fieldservice_vehicle_stock_request/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import stock_request
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1d50fe7

Please sign in to comment.