[IMP] Add new field decimal precision in sale,account,stock config wizard and improve...
[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         'decimal_precision_sale': fields.integer('Decimal Precision on Sales Price'),
31         'group_invoice_so_lines': fields.boolean('Based on Sales Orders',
32             implied_group='sale.group_invoice_so_lines',
33             help="To allow your salesman to make invoices for sale order lines using the menu 'Lines to Invoice'."),
34         'group_invoice_deli_orders': fields.boolean('Based on Delivery Orders',
35             implied_group='sale.group_invoice_deli_orders',
36             help="To allow your salesman to make invoices for Delivery Orders using the menu 'Deliveries to Invoice'."),
37         'task_work': fields.boolean('Tasks\' activity',
38             help="""Lets you transfer the entries under tasks defined for Project Management to
39                 the Timesheet line entries for particular date and particular user  with the effect of creating, editing and deleting either ways
40                 and to automatically creates project tasks from procurement lines.
41                 This installs the modules project_timesheet and project_mrp."""),
42         'timesheet': fields.boolean('Based on Timesheet',
43             help = """For modifying account analytic view to show important data to project manager of services companies.
44                 You can also view the report of account analytic summary user-wise as well as month wise.
45                 This installs the module account_analytic_analysis."""),
46         'module_account_analytic_analysis': fields.boolean('Manage Customer Contracts',
47             help = """Allows to define your customer contracts conditions: invoicing
48             method (fixed price, on timesheet, advance invoice), the exact pricing 
49             (650€/day for a developer), the duration (one year support contract). 
50             You will be able to follow the progress of the contract and invoice automatically. 
51             It installs the account_analytic_analysis module."""),
52         'default_order_policy': fields.selection(
53             [('manual', 'Invoice Based on Sales Orders'), ('picking', 'Invoice Based on Deliveries')],
54             'Default Method', default_model='sale.order',
55             help="You can generate invoices based on sales orders or based on shippings."),
56         'module_delivery': fields.boolean('Charge Shipping Cost',
57             help ="""Allows you to add delivery methods in sale orders and delivery orders.
58                 You can define your own carrier and delivery grids for prices.
59                 This installs the module delivery."""),
60         'time_unit': fields.many2one('product.uom', 'Working Time Unit'),
61         'default_picking_policy' : fields.boolean("Deliver all Products at Once",
62             help = "You can set picking policy on sale order that will allow you to deliver all products at once."),
63         'group_sale_pricelist':fields.boolean("Pricelist per Customer",
64             implied_group='product.group_sale_pricelist',
65             help="""Allows to manage different prices based on rules per category of customers. 
66                 Example: 10% for retailers, promotion of 5 EUR on this product, etc."""),
67         'group_uom':fields.boolean("Allow Different Units of Measure",
68             implied_group='product.group_uom',
69             help="""Allows you to select and maintain different units of measure for products."""),
70         'group_sale_delivery_address': fields.boolean("Allow Different Addresses for Delivery and Invoice",
71             implied_group='sale.group_delivery_invoice_address',
72             help="Allows you to specify different delivery and invoice addresses on a sale order."),
73         'group_discount_per_so_line': fields.boolean("Discount per Line",
74             implied_group='sale.group_discount_per_so_line',
75             help="Allows you to apply some discount per sale order line."),
76         'module_sale_layout': fields.boolean("Notes & Subtotals per Line",
77             help="""Allows to format sale order lines using notes, separators, titles and subtotals.
78                 This installs the module sale_layout."""),
79         'module_warning': fields.boolean("Alerts by Products or Customers",
80             help="""Allow to configure warnings on products and trigger them when a user wants to sale a given product or a given customer. 
81             Example: Product: this product is deprecated, do not purchase more than 5.
82             Supplier: don't forget to ask for an express delivery."""),
83         'module_sale_margin': fields.boolean("Display Margins on Sale Orders",
84             help="""This adds the 'Margin' on sales order.
85                 This gives the profitability by calculating the difference between the Unit Price and Cost Price.
86                 This installs the module sale_margin."""),
87         'module_sale_journal': fields.boolean("Allow Batch Invoicing through Journals",
88             help="""Allows you to categorize your sales and deliveries (picking lists) between different journals,
89                 and perform batch operations on journals.
90                 This installs the module sale_journal."""),
91         'module_analytic_user_function': fields.boolean("Assign User Roles per Contract",
92             help="""Allows you to define what is the default function of a specific user on a given account.
93                 This is mostly used when a user encodes his timesheet. The values are retrieved and the fields are auto-filled.
94                 But the possibility to change these values is still available.
95                 This installs the module analytic_user_function."""),
96         'module_analytic_journal_billing_rate': fields.boolean("Billing Rates by Contract",
97             help="""Allows you to define the default invoicing rate for a specific journal on a given account.
98                 This installs the module analytic_journal_billing_rate."""),
99         'group_multiple_shops':fields.boolean("Manage Multiple Shops",
100             implied_group='sale.group_multiple_shops',
101             help="""This allows to configure and use multiple Shops instead of having a single default one."""),                
102         'module_project_timesheet': fields.boolean("Project Timesheet"),
103         'module_project_mrp': fields.boolean("Project MRP"),
104         'module_project': fields.boolean("Project"),
105     }
106
107     def default_get(self, cr, uid, fields, context=None):
108         ir_model_data = self.pool.get('ir.model.data')
109         res = super(sale_configuration, self).default_get(cr, uid, fields, context)
110         # task_work, time_unit depend on other fields
111         res['task_work'] = res.get('module_project_mrp') and res.get('module_project_timesheet')
112         if res.get('module_project'):
113             user = self.pool.get('res.users').browse(cr, uid, uid, context)
114             res['time_unit'] = user.company_id.project_time_mode_id.id
115         else:
116             product = ir_model_data.get_object(cr, uid, 'product', 'product_consultant')
117             res['time_unit'] = product.uom_id.id
118         return res
119
120     def get_default_sale_config(self, cr, uid, ids, context=None):
121         ir_values = self.pool.get('ir.values')
122         default_picking_policy = ir_values.get_default(cr, uid, 'sale.order', 'picking_policy')
123         return {
124             'default_picking_policy': default_picking_policy == 'one',
125         }
126
127     def _get_default_time_unit(self, cr, uid, context=None):
128         ids = self.pool.get('product.uom').search(cr, uid, [('name', '=', _('Hour'))], context=context)
129         return ids and ids[0] or False
130
131     _defaults = {
132         'default_order_policy': 'manual',
133         'time_unit': _get_default_time_unit,
134     }
135
136     def get_default_dp(self, cr, uid, fields, context=None):
137         sale_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'product','decimal_sale')[1]
138         dec_id =self.pool.get('decimal.precision').browse(cr, uid, sale_id,context=context)
139         return {
140             'decimal_precision_sale': dec_id.digits,
141         }
142         
143     def set_default_dp(self, cr, uid, ids, context=None):
144         config = self.browse(cr, uid, ids[0], context)
145         sale_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'product', 'decimal_sale')[1]
146         dec_id =self.pool.get('decimal.precision').browse(cr, uid, sale_id,context=context) 
147         dec_id.write({
148             'digits': config.decimal_precision_sale,
149         })
150         
151     def set_sale_defaults(self, cr, uid, ids, context=None):
152         ir_values = self.pool.get('ir.values')
153         ir_model_data = self.pool.get('ir.model.data')
154         wizard = self.browse(cr, uid, ids)[0]
155
156         default_picking_policy = 'one' if wizard.default_picking_policy else 'direct'
157         ir_values.set_default(cr, uid, 'sale.order', 'picking_policy', default_picking_policy)
158
159         if wizard.time_unit:
160             product = ir_model_data.get_object(cr, uid, 'product', 'product_consultant')
161             product.write({'uom_id': wizard.time_unit.id, 'uom_po_id': wizard.time_unit.id})
162
163         if wizard.module_project and wizard.time_unit:
164             user = self.pool.get('res.users').browse(cr, uid, uid, context)
165             user.company_id.write({'project_time_mode_id': wizard.time_unit.id})
166
167         return {}
168
169     def onchange_invoice_methods(self, cr, uid, ids, group_invoice_so_lines, group_invoice_deli_orders, context=None):
170         if not group_invoice_deli_orders:
171             return {'value': {'default_order_policy': 'manual'}}
172         if not group_invoice_so_lines:
173             return {'value': {'default_order_policy': 'picking'}}
174         return {}
175
176     def onchange_task_work(self, cr, uid, ids, task_work, context=None):
177         return {'value': {
178             'module_project_timesheet': task_work,
179             'module_project_mrp': task_work,
180         }}
181
182     def onchange_timesheet(self, cr, uid, ids, timesheet, context=None):
183         return {'value': {
184             'timesheet': timesheet,
185             'module_account_analytic_analysis': timesheet,
186         }}
187
188
189
190 class account_config_settings(osv.osv_memory):
191     _inherit = 'account.config.settings'
192     _columns = {
193         'module_sale_analytic_plans': fields.boolean('Several Analytic Accounts on Sales',
194             help="""This allows install module sale_analytic_plans."""),                 
195         'group_analytic_account_for_sales': fields.boolean('Analytic Accounting for Sales',
196             implied_group='sale.group_analytic_accounting',
197             help="Allows you to specify an analytic account on sale orders."),
198     }
199
200 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: