# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. { 'name': 'Delivery Costs', 'version': '1.0', 'category': 'Stock', 'description': """ Allows you to add delivery methods in sale orders and picking. ============================================================== You can define your own carrier for prices. When creating invoices from picking, the system is able to add and compute the shipping line. """, 'depends': ['sale_stock'], 'data': [ 'security/ir.model.access.csv', 'security/delivery_security.xml', 'views/delivery_view.xml', 'views/partner_view.xml', 'views/product_template_view.xml', 'views/product_packaging_view.xml', 'data/delivery_data.xml', 'views/report_shipping.xml', 'views/report_deliveryslip.xml' ], 'demo': ['data/delivery_demo.xml'], 'test': [ '../account/test/account_minimal_test.xml', ], 'installable': True, }