2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Sales Management',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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-01-16 06:58:15 +01:00
|
|
|
'depends': ['sale', 'account_invoicing'],
|
|
|
|
'data': [
|
|
|
|
'views/sale_management_views.xml',
|
|
|
|
'views/sale_management_templates.xml',
|
|
|
|
],
|
|
|
|
'application': True,
|
|
|
|
}
|