[IMP] sale & sale_stock : removed 'Enable Invoicing Sales order lines' group from...
[odoo/odoo.git] / addons / sale / res_config.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Business Applications
5 #    Copyright (C) 2004-2012 OpenERP S.A. (<http://openerp.com>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import logging
23
24 from openerp.osv import fields, osv
25 from openerp.tools.translate import _
26
27 _logger = logging.getLogger(__name__)
28
29
30 class sale_configuration(osv.TransientModel):
31     _inherit = 'sale.config.settings'
32
33     _columns = {
34         'timesheet': fields.boolean('Prepare invoices based on timesheets',
35             help='For modifying account analytic view to show important data to project manager of services companies.'
36                  'You can also view the report of account analytic summary user-wise as well as month wise.\n'
37                  '-This installs the module account_analytic_analysis.'),
38         'module_account_analytic_analysis': fields.boolean('Use contracts management',
39             help='Allows to define your customer contracts conditions: invoicing '
40                  'method (fixed price, on timesheet, advance invoice), the exact pricing '
41                  '(650€/day for a developer), the duration (one year support contract).\n'
42                  'You will be able to follow the progress of the contract and invoice automatically.\n'
43                  '-It installs the account_analytic_analysis module.'),
44         'group_sale_pricelist':fields.boolean("Use pricelists to adapt your price per customers",
45             implied_group='product.group_sale_pricelist',
46             help="""Allows to manage different prices based on rules per category of customers.
47 Example: 10% for retailers, promotion of 5 EUR on this product, etc."""),
48         'group_uom':fields.boolean("Allow using different units of measure",
49             implied_group='product.group_uom',
50             help="""Allows you to select and maintain different units of measure for products."""),
51         'group_discount_per_so_line': fields.boolean("Allow setting a discount on the sales order lines",
52             implied_group='sale.group_discount_per_so_line',
53             help="Allows you to apply some discount per sales order line."),
54         'module_warning': fields.boolean("Allow configuring alerts by customer or products",
55             help='Allow to configure notification on products and trigger them when a user wants to sell a given product or a given customer.\n'
56                  'Example: Product: this product is deprecated, do not purchase more than 5.\n'
57                  'Supplier: don\'t forget to ask for an express delivery.'),
58         'module_sale_margin': fields.boolean("Display margins on sales orders",
59             help='This adds the \'Margin\' on sales order.\n'
60                  'This gives the profitability by calculating the difference between the Unit Price and Cost Price.\n'
61                  '-This installs the module sale_margin.'),
62         'module_website_quote': fields.boolean("Allow online quotations and templates",
63             help='This adds the online quotation'),
64         'module_sale_journal': fields.boolean("Allow batch invoicing of delivery orders through journals",
65             help='Allows you to categorize your sales and deliveries (picking lists) between different journals, '
66                  'and perform batch operations on journals.\n'
67                  '-This installs the module sale_journal.'),
68         'module_analytic_user_function': fields.boolean("One employee can have different roles per contract",
69             help='Allows you to define what is the default function of a specific user on a given account.\n'
70                  'This is mostly used when a user encodes his timesheet. The values are retrieved and the fields are auto-filled. '
71                  'But the possibility to change these values is still available.\n'
72                  '-This installs the module analytic_user_function.'),
73         'module_project': fields.boolean("Project"),
74         'module_sale_stock': fields.boolean("Trigger delivery orders automatically from sales orders",
75             help='Allows you to Make Quotation, Sale Order using different Order policy and Manage Related Stock.\n'
76                  '-This installs the module sale_stock.'),
77         'group_sale_delivery_address': fields.boolean("Allow a different address for delivery and invoicing ",
78             implied_group='sale.group_delivery_invoice_address',
79             help="Allows you to specify different delivery and invoice addresses on a sales order."),
80     }
81
82     def set_sale_defaults(self, cr, uid, ids, context=None):
83         return {}
84
85     def onchange_task_work(self, cr, uid, ids, task_work, context=None):
86         return {'value': {
87             'module_project_timesheet': task_work,
88             'module_sale_service': task_work,
89         }}
90
91     def onchange_timesheet(self, cr, uid, ids, timesheet, context=None):
92         return {'value': {
93             'timesheet': timesheet,
94             'module_account_analytic_analysis': timesheet,
95         }}
96
97 class account_config_settings(osv.osv_memory):
98     _inherit = 'account.config.settings'
99     _columns = {
100         'module_sale_analytic_plans': fields.boolean('Use multiple analytic accounts on sales',
101             help="""This allows install module sale_analytic_plans."""),
102         'group_analytic_account_for_sales': fields.boolean('Analytic accounting for sales',
103             implied_group='sale.group_analytic_accounting',
104             help="Allows you to specify an analytic account on sales orders."),
105     }
106
107     def onchange_sale_analytic_plans(self, cr, uid, ids, module_sale_analytic_plans, context=None):
108         """ change group_analytic_account_for_sales following module_sale_analytic_plans """
109         if not module_sale_analytic_plans:
110             return {}
111         return {'value': {'group_analytic_account_for_sales': module_sale_analytic_plans}}
112
113 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: