# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Sales Management', 'version': '1.0', 'category': 'Sales Management', 'complexity': "easy", 'description': """ The base module to manage quotations and sales orders. ====================================================== Workflow with validation steps: ------------------------------- * Quotation -> Sales order -> Invoice Invoicing methods: ------------------ * Invoice on order (before or after shipping) * Invoice on delivery * Invoice on timesheets * Advance invoice Partners preferences: --------------------- * shipping * invoicing * incoterm Products stocks and prices -------------------------- Delivery methods: ----------------- * all at once * multi-parcel * delivery costs Dashboard for Sales Manager that includes: ------------------------------------------ * Quotations * Sales by Month * Graph of Sales by Salesman in last 90 days * Graph of Sales per Customer in last 90 days * Graph of Sales by Product's Category in last 90 days """, 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'images': ['images/deliveries_to_invoice.jpeg','images/sale_dashboard.jpeg','images/Sale_order_line_to_invoice.jpeg','images/sale_order.jpeg','images/sales_analysis.jpeg'], 'depends': ['stock', 'procurement', 'board'], 'init_xml': [], 'update_xml': [ 'wizard/sale_make_invoice_advance.xml', 'wizard/sale_line_invoice.xml', 'wizard/sale_make_invoice.xml', 'security/sale_security.xml', 'security/ir.model.access.csv', 'company_view.xml', 'sale_workflow.xml', 'sale_sequence.xml', 'sale_data.xml', 'sale_view.xml', 'sale_installer.xml', 'report/sale_report_view.xml', 'sale_report.xml', 'stock_view.xml', 'board_sale_view.xml', 'process/sale_process.xml', ], 'demo_xml': ['sale_demo.xml'], 'test': [ 'test/data_test.yml', 'test/manual_order_policy.yml', 'test/prepaid_order_policy.yml', 'test/picking_order_policy.yml', 'test/postpaid_order_policy.yml', 'test/advance_invoice.yml', 'test/so_make_line_invoice.yml', 'test/sale_procurement.yml', 'test/invoice_on_ordered_qty.yml', 'test/invoice_on_shipped_qty.yml', 'test/sale_report.yml', ], 'installable': True, 'active': False, 'certificate': '0058103601429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: