Skip to content

Commit

Permalink
modules dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jem-odoo committed Feb 27, 2018
1 parent d5d43e5 commit 694761e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion addons/purchase/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'summary': 'Purchase Orders, Receipts, Vendor Bills',
'description': "",
'website': 'https://www.odoo.com/page/purchase',
'depends': ['stock_account'],
'depends': ['account'],
'data': [
'security/purchase_security.xml',
'security/ir.model.access.csv',
Expand Down
2 changes: 1 addition & 1 deletion addons/purchase_requisition/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
competing offers from different vendors and select the best ones. Blanket orders
are agreements you have with vendors to benefit from a predetermined pricing.
""",
'depends' : ['purchase'],
'depends' : ['purchase_stock'],
'demo': ['data/purchase_requisition_demo.xml'],
'data': [
'security/purchase_tender.xml',
Expand Down
2 changes: 1 addition & 1 deletion addons/stock_dropshipping/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
""",
'website': 'https://www.odoo.com/page/warehouse',
'depends': ['purchase', 'sale_stock'],
'depends': ['purchase_stock', 'sale_stock'],
'data': ['data/stock_data.xml'],
'installable': True,
'auto_install': False,
Expand Down
2 changes: 1 addition & 1 deletion addons/stock_landed_costs/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
This module allows you to easily add extra costs on pickings and decide the split of these costs among their stock moves in order to take them into account in your stock valuation.
""",
'website': 'https://www.odoo.com/page/warehouse',
'depends': ['stock_account', 'purchase'],
'depends': ['stock_account', 'purchase_stock'],
'category': 'Warehouse',
'sequence': 16,
'demo': [
Expand Down
4 changes: 2 additions & 2 deletions odoo/addons/test_main_flows/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
This module will test the main workflow of Odoo.
It will install some main apps and will try to execute the most important actions.
""",
'depends': ['web_tour', 'crm', 'sale_timesheet', 'purchase', 'mrp', 'account'],
'depends': ['web_tour', 'crm', 'sale_timesheet', 'purchase_stock', 'mrp', 'account'],
'data': [
'views/templates.xml',
],
],
'installable': True,
}

0 comments on commit 694761e

Please sign in to comment.