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