flectra/addons/sale_management/__manifest__.py

56 lines
1.9 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Sales Management',
2018-01-16 12:08:17 +01:00
'author': 'Odoo S.A.',
'version': '1.0',
'category': 'Sales',
'sequence': 15,
'summary': 'Quotations, Sales Orders, Invoicing',
'description': """
Manage sales quotations and orders
==================================
This application allows you to manage your sales goals in an effective and efficient manner by keeping track of all sales orders and history.
It handles the full sales workflow:
* **Quotation** -> **Sales order** -> **Invoice**
Preferences (only with Warehouse Management installed)
------------------------------------------------------
If you also installed the Warehouse Management, you can deal with the following preferences:
* Shipping: Choice of delivery at once or partial delivery
* Invoicing: choose how invoices will be paid
* Incoterms: International Commercial terms
You can choose flexible invoicing methods:
* *On Demand*: Invoices are created manually from Sales Orders when needed
* *On Delivery Order*: Invoices are generated from picking (delivery)
* *Before Delivery*: A Draft invoice is created and must be paid before delivery
With this module you can personnalize the sales order and invoice report with
categories, subtotals or page-breaks.
The Dashboard for the Sales Manager will include
------------------------------------------------
* My Quotations
* Monthly Turnover (Graph)
""",
2018-01-16 11:34:37 +01:00
'website': 'https://flectrahq.com/page/sales',
2018-08-20 11:29:49 +02:00
'depends': ['sale', 'account_invoicing', 'digest'],
'data': [
2018-08-20 11:29:49 +02:00
'data/digest_data.xml',
'views/sale_management_views.xml',
'views/sale_management_templates.xml',
2018-08-20 11:29:49 +02:00
'views/digest_views.xml',
],
'application': True,
'uninstall_hook': 'uninstall_hook',
'post_init_hook': 'post_init_hook',
}