__manifest__.py 595 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Delivery Stock Picking Batch',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'summary': 'Batch Transfer, Carrier',
  8. 'description': """
  9. This module makes the link between the batch pickings and carrier applications.
  10. Allows to prepare batches depending on their carrier
  11. """,
  12. 'depends': ['delivery', 'stock_picking_batch'],
  13. 'data': [
  14. 'views/stock_picking_type_views.xml',
  15. ],
  16. 'installable': True,
  17. 'auto_install': True,
  18. 'license': 'LGPL-3',
  19. }