[IMP] sale.config.settings: define groups for enabling access to menus 'Lines to...
[odoo/odoo.git] / addons / sale / res_config.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
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('Based on Sales Orders',
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         'group_invoice_deli_orders': fields.boolean('Based on Delivery Orders',
34             implied_group='sale.group_invoice_deli_orders',
35             help="To allow your salesman to make invoices for Delivery Orders using the menu 'Deliveries to Invoice'."),
36         'task_work': fields.boolean('Based on Tasks\' Work',
37                                     help="""Lets you transfer the entries under tasks defined for Project Management to
38                                     the Timesheet line entries for particular date and particular user  with the effect of creating, editing and deleting either ways
39                                     and to automatically creates project tasks from procurement lines.
40                                     It installs the project_timesheet and project_mrp modules."""),
41         'module_account_analytic_analysis': fields.boolean('Based on Timesheet',
42                                     help = """For modifying account analytic view to show important data to project manager of services companies.
43                                     You can also view the report of account analytic summary user-wise as well as month wise.
44                                     It installs the account_analytic_analysis module."""),
45         'default_order_policy': fields.selection([
46                                 ('manual', 'Invoice Based on Sales Orders'),
47                                 ('picking', 'Invoice Based on Deliveries'),
48                             ], 'Main Method Based On', required=True, default_model='sale.order',
49                             help="You can generate invoices based on sales orders or based on shippings."),
50         'module_delivery': fields.boolean('Do you charge the delivery?',
51                                    help ="""
52                                    Allows you to add delivery methods in sale orders and delivery orders.
53                                    You can define your own carrier and delivery grids for prices.
54                                    It installs the delivery module.
55                                    """),
56         'time_unit': fields.many2one('product.uom','Working Time Unit'),
57         'default_picking_policy' : fields.boolean("Deliver all products at once?", default_model='sale.order',
58                                                   help = "You can set picking policy on sale order that will allow you to deliver all products at once."),
59         'group_sale_delivery_address':fields.boolean("Multiple Address", group='base.group_user', implied_group='base.group_sale_delivery_address',
60                                                      help="Allows you to set different delivery address and invoice address. It assigns Multiple Address group to all employees."),
61         'group_sale_disc_per_sale_order_line':fields.boolean("Discounts per sale order lines ", group='base.group_user', implied_group='base.group_sale_disc_per_sale_order_line',
62                                                              help="This allows you to apply discounts per sale order lines, it assigns Discounts per sale order lines group to all employees."),
63         'module_sale_layout':fields.boolean("Notes & subtotals per line",help="Allows to format sale order lines using notes, separators, titles and subtotals. It installs the sale_layout module."),
64         'module_warning': fields.boolean("Alerts by products or customers",
65                                   help="""To raise user specific warning messages on different products used in Sales Orders, Purchase Orders, Invoices and Deliveries.
66                                   It installs the warning module."""),
67         'module_sale_margin': fields.boolean("Display Margin For Users",
68                         help="""This adds the 'Margin' on sales order.
69                         This gives the profitability by calculating the difference between the Unit Price and Cost Price.
70                         It installs the sale_margin module."""),
71         'module_sale_journal': fields.boolean("Invoice Journal",
72                         help="""Allows you to categorize your sales and deliveries (picking lists) between different journals.
73                         It installs the sale_journal module."""),
74         'module_analytic_user_function' : fields.boolean("User function by contracts",
75                                     help="""Allows you to define what is the default function of a specific user on a given account.
76                                     This is mostly used when a user encodes his timesheet. The values are retrieved and the fields are auto-filled.
77                                     But the possibility to change these values is still available.
78                                     It installs analytic_user_function module."""),
79         'module_analytic_journal_billing_rate' : fields.boolean("Billing rates by contracts",
80                                     help="""Allows you to define what is the default invoicing rate for a specific journal on a given account.
81                                     It installs analytic_journal_billing_rate module.
82                                     """),
83         'tax_policy': fields.selection([
84                 ('no_tax', 'No Tax'),
85                 ('global_on_order', 'Global On Order'),
86                 ('on_order_line', 'On Order Lines'),
87             ], 'Taxes', required=True,
88             help="""
89                 If you want to apply global tax on sale order then select 'Global On Order' it will add 'Global On Order' group to employees.
90                 If you want to apply different taxes for sale order lines then select 'On Order Lines' it will add 'On Order Lines' group to employees.
91             """),
92         'group_sale_taxes_global_on_order':fields.boolean("Global on order", group='base.group_user', implied_group='base.group_sale_taxes_global_on_order'),
93         'group_sale_taxes_on_order_line':fields.boolean("On order line", group='base.group_user', implied_group='base.group_sale_taxes_on_order_line'),
94         'module_project_timesheet': fields.boolean("Project Timesheet"),
95         'module_project_mrp': fields.boolean("Project mrp"),
96
97     }
98
99     def default_get(self, cr, uid, fields, context=None):
100         data_obj = self.pool.get('ir.model.data')
101         res = super(sale_configuration, self).default_get(cr, uid, fields, context)
102         if res.get('module_project_mrp') and res.get('module_project_timesheet'):
103             res.update({'task_work': True})
104         if res.get('module_account_analytic_analysis'):
105             prod_id = data_obj.get_object(cr, uid, 'product', 'product_consultant').id
106             uom_id = self.pool.get('product.product').browse(cr, uid, prod_id).uom_id.id
107             res.update({'time_unit': uom_id})
108         if res.get('group_sale_taxes_global_on_order'):
109             res.update({'tax_policy': 'global_on_order'})
110         elif res.get('group_sale_taxes_on_order_line'):
111             res.update({'tax_policy': 'on_order_line'})
112         else:
113             res.update({'tax_policy': 'no_tax'})
114         return res
115
116     def get_default_sale_configs(self, cr, uid, ids, context=None):
117         ir_values_obj = self.pool.get('ir.values')
118         data_obj = self.pool.get('ir.model.data')
119         menu_obj = self.pool.get('ir.ui.menu')
120         result = {}
121         for res in ir_values_obj.get(cr, uid, 'default', False, ['sale.order']):
122             result[res[1]] = res[2]
123         return result
124
125     _defaults = {
126         'default_order_policy': 'manual',
127         'time_unit': lambda self, cr, uid, c: self.pool.get('product.uom').search(cr, uid, [('name', '=', _('Hour'))], context=c) and self.pool.get('product.uom').search(cr, uid, [('name', '=', _('Hour'))], context=c)[0] or False,
128         'tax_policy': 'global_on_order',
129     }
130
131     def _check_default_tax(self, cr, uid, context=None):
132         ir_values_obj = self.pool.get('ir.values')
133         for tax in ir_values_obj.get(cr, uid, 'default', False, ['product.product']):
134             if tax[1] == 'taxes_id':
135                 return tax[2]
136         return False
137
138     def set_sale_defaults(self, cr, uid, ids, context=None):
139         ir_values_obj = self.pool.get('ir.values')
140         data_obj = self.pool.get('ir.model.data')
141         menu_obj = self.pool.get('ir.ui.menu')
142         res = {}
143         wizard = self.browse(cr, uid, ids)[0]
144         group_id = data_obj.get_object(cr, uid, 'base', 'group_sale_salesman').id
145
146         if wizard.default_picking_policy:
147             ir_values_obj.set(cr, uid, 'default', False, 'picking_policy', ['sale.order'], 'one')
148
149         if wizard.time_unit:
150             prod_id = data_obj.get_object(cr, uid, 'product', 'product_consultant').id
151             product_obj = self.pool.get('product.product')
152             product_obj.write(cr, uid, prod_id, {'uom_id': wizard.time_unit.id, 'uom_po_id': wizard.time_unit.id})
153
154         ir_values_obj.set(cr, uid, 'default', False, 'order_policy', ['sale.order'], wizard.default_order_policy)
155         if wizard.task_work and wizard.time_unit:
156             company_id = self.pool.get('res.users').browse(cr, uid, uid).company_id.id
157             self.pool.get('res.company').write(cr, uid, [company_id], {
158                 'project_time_mode_id': wizard.time_unit.id
159             }, context=context)
160
161         return res
162
163     def onchange_task_work(self, cr, uid, ids, task_work, context=None):
164         res = {'value': {}}
165         if task_work:
166             res['value'].update({'module_project_timesheet': True})
167             res['value'].update({'module_project_mrp': True})
168         else:
169             res['value'].update({'module_project_timesheet': False})
170             res['value'].update({'module_project_mrp': False})
171
172         return res
173
174     def onchange_tax_policy(self, cr, uid, ids, tax_policy, context=None):
175         res = {'value': {}}
176         if ids:
177             self.set_tax_policy(cr, uid, ids, context=context)
178         if tax_policy == 'global_on_order':
179             res['value'].update({'group_sale_taxes_global_on_order': True})
180             res['value'].update({'group_sale_taxes_on_order_line': False})
181
182         elif tax_policy == 'on_order_line':
183             res['value'].update({'group_sale_taxes_on_order_line': True})
184             res['value'].update({'group_sale_taxes_global_on_order': False})
185         else:
186             res['value'].update({'group_sale_taxes_on_order_line': False, 'group_sale_taxes_global_on_order': False})
187         return res
188
189     def set_default_taxes(self, cr, uid, ids, context=None):
190         ir_values_obj = self.pool.get('ir.values')
191         taxes = self._check_default_tax(cr, uid, context=context)
192         if taxes:
193             ir_values_obj.set(cr, uid, 'default', False, 'tax_id', ['sale.order'], taxes[0])
194             ir_values_obj.set(cr, uid, 'default', False, 'tax_id', ['sale.order.line'], taxes)
195             ir_values_obj.set(cr, uid, 'default', False, 'taxes_id', ['product.product'], taxes)
196
197 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: