__manifest__.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Delivery Costs',
  5. 'version': '1.0',
  6. 'category': 'Inventory/Delivery',
  7. 'description': """
  8. Allows you to add delivery methods in sale orders and picking.
  9. ==============================================================
  10. You can define your own carrier for prices. When creating
  11. invoices from picking, the system is able to add and compute the shipping line.
  12. """,
  13. 'depends': ['sale_stock', 'sale_management'],
  14. 'data': [
  15. 'security/ir.model.access.csv',
  16. 'security/delivery_carrier_security.xml',
  17. 'views/product_template_view.xml',
  18. 'views/delivery_view.xml',
  19. 'views/partner_view.xml',
  20. 'views/delivery_portal_template.xml',
  21. 'data/delivery_data.xml',
  22. 'views/report_shipping.xml',
  23. 'views/report_deliveryslip.xml',
  24. 'views/report_package_barcode.xml',
  25. 'views/res_config_settings_views.xml',
  26. 'wizard/choose_delivery_package_views.xml',
  27. 'wizard/choose_delivery_carrier_views.xml',
  28. 'views/stock_package_type_views.xml',
  29. 'views/stock_picking_type_views.xml',
  30. 'views/stock_rule_views.xml',
  31. 'views/stock_move_line_views.xml',
  32. 'report/ir_actions_report_templates.xml',
  33. ],
  34. 'demo': ['data/delivery_demo.xml'],
  35. 'installable': True,
  36. 'license': 'LGPL-3',
  37. }