__manifest__.py 894 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Drop Shipping',
  5. 'version': '1.0',
  6. 'category': 'Inventory/Inventory',
  7. 'summary': 'Drop Shipping',
  8. 'description': """
  9. Manage drop shipping orders
  10. ===========================
  11. This module adds a pre-configured Drop Shipping operation type
  12. as well as a procurement route that allow configuring Drop
  13. Shipping products and orders.
  14. When drop shipping is used the goods are directly transferred
  15. from vendors to customers (direct delivery) without
  16. going through the retailer's warehouse. In this case no
  17. internal transfer document is needed.
  18. """,
  19. 'depends': ['sale_purchase_stock'],
  20. 'data': [
  21. 'data/stock_data.xml',
  22. 'views/sale_order_views.xml',
  23. 'views/purchase_order_views.xml'
  24. ],
  25. 'installable': True,
  26. 'license': 'LGPL-3',
  27. }