[IMP] Void oe_highlight in oe_form_editable
[odoo/odoo.git] / addons / purchase / 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 purchase_config_settings(osv.osv_memory):
27     _name = 'purchase.config.settings'
28     _inherit = 'res.config.settings'
29
30     _columns = {
31         'default_invoice_method': fields.selection(
32             [('manual', 'Based on Purchase Order Lines'),
33              ('picking', 'Based on Receptions'),
34              ('order', 'Pre-Generate Draft Invoices based on Purchase Orders'),
35             ], 'Invoicing Method', required=True, default_model='purchase.order'),
36         'group_purchase_pricelist':fields.boolean("Pricelist per Supplier",
37             implied_group='product.group_purchase_pricelist',
38             help="""Allows to manage different prices based on rules per category of Supplier.
39                 Example: 10% for retailers, promotion of 5 EUR on this product, etc."""),
40         'group_uom':fields.boolean("Manage Different Units of Measure for Products",
41             implied_group='product.group_uom',
42             help="""Allows you to select and maintain different units of measure for products."""),
43         'group_purchase_delivery_address': fields.boolean("Allow Different Addresses for Delivery and Invoice",
44             implied_group='purchase.group_delivery_invoice_address',
45             help="Allows you to specify different delivery and invoice addresses on a purchase order."),
46         'module_purchase_analytic_plans': fields.boolean('Use Multiple Analytic Accounts on Purchases',
47             help ="""Allows the user to maintain several analysis plans. These let you split
48                 lines on a purchase order between several accounts and analytic plans.
49                 This installs the module purchase_analytic_plans."""),
50         'module_warning': fields.boolean("Alerts by Products or Supplier",
51             help="""Allow to configure warnings on products and trigger them when a user wants to purchase a given product or a given supplier. 
52             Example: Product: this product is deprecated, do not purchase more than 5.
53                     Supplier: don't forget to ask for an express delivery."""),
54         'module_product_manufacturer': fields.boolean("Define Manufacturers on Products",
55             help="""This allows you to define the following for a product:
56                     * Manufacturer
57                     * Manufacturer Product Name
58                     * Manufacturer Product Code
59                     * Product Attributes.
60                 This installs the module product_manufacturer."""),
61         'module_purchase_double_validation': fields.boolean("Two Levels of Approval",
62             help="""Provide a double validation mechanism for purchases exceeding minimum amount.
63                 This installs the module purchase_double_validation."""),
64         'module_purchase_requisition': fields.boolean("Use Purchase Requisition",
65             help="""Purchase Requisitions are used when you want to request quotations from several suppliers for a given set of products. 
66             You can configure per product if you directly do a Request for Quotation 
67             to one supplier or if you want a purchase requisition to negotiate with several suppliers."""),
68         'decimal_precision': fields.integer('Decimal Precision on Price'),                
69     }
70
71     _defaults = {
72         'default_invoice_method': 'manual',
73     }
74
75     def get_default_dp(self, cr, uid, fields, context=None):
76         dp = self.pool.get('ir.model.data').get_object(cr,uid, 'product','decimal_purchase')
77         return {'decimal_precision': dp.digits}
78
79     def set_default_dp(self, cr, uid, ids, context=None):
80         config = self.browse(cr, uid, ids[0], context)
81         dp = self.pool.get('ir.model.data').get_object(cr,uid, 'product','decimal_purchase')
82         dp.write({'digits': config.decimal_precision})
83
84
85
86 class account_config_settings(osv.osv_memory):
87     _inherit = 'account.config.settings'
88     _columns = {
89         'module_purchase_analytic_plans': fields.boolean('Several Analytic Accounts on Purchases',
90             help="""This allows install module purchase_analytic_plans."""),                 
91         'group_analytic_account_for_purchases': fields.boolean('Analytic Accounting for Purchases',
92             implied_group='purchase.group_analytic_accounting',
93             help="Allows you to specify an analytic account on purchase orders."),
94     }
95
96 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: