diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/sale_management/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/sale_management/__manifest__.py')
| -rw-r--r-- | addons/sale_management/__manifest__.py | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/addons/sale_management/__manifest__.py b/addons/sale_management/__manifest__.py new file mode 100644 index 00000000..ac85b188 --- /dev/null +++ b/addons/sale_management/__manifest__.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Sales', + 'version': '1.0', + 'category': 'Sales/Sales', + 'sequence': 5, + 'summary': 'From quotations to invoices', + '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 + + +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) + """, + 'website': 'https://www.odoo.com/page/sales', + 'depends': ['sale', 'digest'], + 'data': [ + 'security/sale_management_security.xml', + 'data/digest_data.xml', + 'views/sale_portal_templates.xml', + 'views/sale_order_template_views.xml', + 'security/ir.model.access.csv', + 'views/res_config_settings_views.xml', + 'data/digest_data.xml', + 'views/sale_management_views.xml', + 'views/digest_views.xml', + 'views/sale_order_views.xml', + 'report/sale_report_templates.xml', + ], + 'demo': [ + 'data/sale_order_template_demo.xml', + ], + 'application': True, + 'uninstall_hook': 'uninstall_hook', + 'post_init_hook': 'post_init_hook', + 'license': 'LGPL-3', +} |
