Files
odoo-usability/sale_usability/__manifest__.py
Stéphane Bidoul (ACSONE) 1748663a42 setup.py and addons versions (#35)
* [IMP] set 10.0 version prefix in all installable addons

* [FIX] 10.0 instead of 9.0 version prefix for sale_order_add_bom on 10.0 branch

* [ADD] setup.py for all installable addons
2019-02-01 10:38:58 +01:00

33 lines
844 B
Python

# -*- coding: utf-8 -*-
# © 2014-2016 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Sale Usability',
'version': '10.0.0.1.0',
'category': 'Sale Management',
'license': 'AGPL-3',
'summary': 'Show invoices on sale orders',
'description': """
Sale Usability Extension
========================
Several small usability improvements:
* Display amount untaxed in tree view
* TODO: update this list
This module has been written by Alexis de Lattre from Akretion
<alexis.delattre@akretion.com>.
""",
'author': 'Akretion',
'website': 'http://www.akretion.com',
'depends': ['sale'],
'data': [
'sale_view.xml',
'product_view.xml',
],
'installable': True,
}