[ADD]crm_channel: portal, Im not interested button go to next lead or to list if...
[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 class sale_configuration(osv.osv_memory):
30     _inherit = 'sale.config.settings'
31
32     _columns = {
33         'group_invoice_so_lines': fields.boolean('Generate invoices based on the sales order lines',
34             implied_group='sale.group_invoice_so_lines',
35             help="To allow your salesman to make invoices for sales order lines using the menu 'Lines to Invoice'."),
36         'timesheet': fields.boolean('Prepare invoices based on timesheets',
37             help = """For modifying account analytic view to show important data to project manager of services companies.
38                 You can also view the report of account analytic summary user-wise as well as month wise.
39                 This installs the module account_analytic_analysis."""),
40         'module_account_analytic_analysis': fields.boolean('Use contracts management',
41             help = """Allows to define your customer contracts conditions: invoicing
42             method (fixed price, on timesheet, advance invoice), the exact pricing
43             (650€/day for a developer), the duration (one year support contract).
44             You will be able to follow the progress of the contract and invoice automatically.
45             It installs the account_analytic_analysis module."""),
46         'time_unit': fields.many2one('product.uom', 'The default working time unit for services is'),
47         'group_sale_pricelist':fields.boolean("Use pricelists to adapt your price per customers",
48             implied_group='product.group_sale_pricelist',
49             help="""Allows to manage different prices based on rules per category of customers.
50 Example: 10% for retailers, promotion of 5 EUR on this product, etc."""),
51         'group_uom':fields.boolean("Allow using different units of measure",
52             implied_group='product.group_uom',
53             help="""Allows you to select and maintain different units of measure for products."""),
54         'group_discount_per_so_line': fields.boolean("Allow setting a discount on the sales order lines",
55             implied_group='sale.group_discount_per_so_line',
56             help="Allows you to apply some discount per sales order line."),
57         'group_product_variant': fields.boolean("Support multiple variants per products  ",
58             implied_group='product.group_product_variant',
59             help="""Allow to manage several variants per product. As an example, if you  sell T-Shirts, for the same "Linux T-Shirt", you may have variants on  sizes or colors; S, M, L, XL, XXL."""),
60         'module_warning': fields.boolean("Allow configuring alerts by customer or products",
61             help="""Allow to configure notification on products and trigger them when a user wants to sell a given product or a given customer.
62 Example: Product: this product is deprecated, do not purchase more than 5.
63                 Supplier: don't forget to ask for an express delivery."""),
64         'module_sale_margin': fields.boolean("Display margins on sales orders",
65             help="""This adds the 'Margin' on sales order.
66                 This gives the profitability by calculating the difference between the Unit Price and Cost Price.
67                 This installs the module sale_margin."""),
68         'module_sale_journal': fields.boolean("Allow batch invoicing of delivery orders through journals",
69             help="""Allows you to categorize your sales and deliveries (picking lists) between different journals,
70                 and perform batch operations on journals.
71                 This installs the module sale_journal."""),
72         'module_analytic_user_function': fields.boolean("One employee can have different roles per contract",
73             help="""Allows you to define what is the default function of a specific user on a given account.
74                 This is mostly used when a user encodes his timesheet. The values are retrieved and the fields are auto-filled.
75                 But the possibility to change these values is still available.
76                 This installs the module analytic_user_function."""),
77         'module_project': fields.boolean("Project"),
78         'module_sale_stock': fields.boolean("Trigger delivery orders automatically from sales orders",
79             help="""Allows you to Make Quotation, Sale Order using different Order policy and Manage Related Stock.
80                     This installs the module sale_stock."""),
81     }
82
83     def default_get(self, cr, uid, fields, context=None):
84         ir_model_data = self.pool.get('ir.model.data')
85         res = super(sale_configuration, self).default_get(cr, uid, fields, context)
86         if res.get('module_project'):
87             user = self.pool.get('res.users').browse(cr, uid, uid, context)
88             res['time_unit'] = user.company_id.project_time_mode_id.id
89         else:
90             try:
91                 product = ir_model_data.get_object(cr, uid, 'product', 'product_product_consultant')
92                 res['time_unit'] = product.uom_id.id
93             except ValueError:
94                 # keep default value in that case
95                 _logger.warning("Product with xml_id 'product.product_product_consultant' not found")
96         return res
97
98     def _get_default_time_unit(self, cr, uid, context=None):
99         ids = self.pool.get('product.uom').search(cr, uid, [('name', '=', _('Hour'))], context=context)
100         return ids and ids[0] or False
101
102     _defaults = {
103         'time_unit': _get_default_time_unit,
104     }
105
106     def set_sale_defaults(self, cr, uid, ids, context=None):
107         ir_model_data = self.pool.get('ir.model.data')
108         wizard = self.browse(cr, uid, ids)[0]
109
110         if wizard.time_unit:
111             try:
112                 product = ir_model_data.get_object(cr, uid, 'product', 'product_product_consultant')
113                 product.write({'uom_id': wizard.time_unit.id, 'uom_po_id': wizard.time_unit.id})
114             except ValueError:
115                 _logger.warning("Product with xml_id 'product.product_product_consultant' not found, UoMs not updated!")
116
117         if wizard.module_project and wizard.time_unit:
118             user = self.pool.get('res.users').browse(cr, uid, uid, context)
119             user.company_id.write({'project_time_mode_id': wizard.time_unit.id})
120         return {}
121
122     def onchange_task_work(self, cr, uid, ids, task_work, context=None):
123         return {'value': {
124             'module_project_timesheet': task_work,
125             'module_project_mrp': task_work,
126         }}
127
128     def onchange_timesheet(self, cr, uid, ids, timesheet, context=None):
129         return {'value': {
130             'timesheet': timesheet,
131             'module_account_analytic_analysis': timesheet,
132         }}
133
134 class account_config_settings(osv.osv_memory):
135     _inherit = 'account.config.settings'
136     _columns = {
137         'module_sale_analytic_plans': fields.boolean('Use multiple analytic accounts on sales',
138             help="""This allows install module sale_analytic_plans."""),
139         'group_analytic_account_for_sales': fields.boolean('Analytic accounting for sales',
140             implied_group='sale.group_analytic_accounting',
141             help="Allows you to specify an analytic account on sales orders."),
142     }
143
144     def onchange_sale_analytic_plans(self, cr, uid, ids, module_sale_analytic_plans, context=None):
145         """ change group_analytic_account_for_sales following module_sale_analytic_plans """
146         if not module_sale_analytic_plans:
147             return {}
148         return {'value': {'group_analytic_account_for_sales': module_sale_analytic_plans}}
149
150 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: