[IMP]purchase: View imp for cpompute btn and total
[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         'module_purchase_analytic_plans': fields.boolean('Use Multiple Analytic Accounts on Purchases',
44             help ="""Allows the user to maintain several analysis plans. These let you split
45                 lines on a purchase order between several accounts and analytic plans.
46                 This installs the module purchase_analytic_plans."""),
47         'module_warning': fields.boolean("Alerts by Products or Supplier",
48             help="""Allow to configure warnings on products and trigger them when a user wants to purchase a given product or a given supplier. 
49             Example: Product: this product is deprecated, do not purchase more than 5.
50                     Supplier: don't forget to ask for an express delivery."""),
51         'module_product_manufacturer': fields.boolean("Define Manufacturers on Products",
52             help="""This allows you to define the following for a product:
53                     * Manufacturer
54                     * Manufacturer Product Name
55                     * Manufacturer Product Code
56                     * Product Attributes.
57                 This installs the module product_manufacturer."""),
58         'module_purchase_double_validation': fields.boolean("Two Levels of Approval",
59             help="""Provide a double validation mechanism for purchases exceeding minimum amount.
60                 This installs the module purchase_double_validation."""),
61         'module_purchase_requisition': fields.boolean("Use Purchase Requisition",
62             help="""Purchase Requisitions are used when you want to request quotations from several suppliers for a given set of products. 
63             You can configure per product if you directly do a Request for Quotation 
64             to one supplier or if you want a purchase requisition to negotiate with several suppliers."""),
65         'decimal_precision': fields.integer('Decimal Precision on Price'),                
66     }
67
68     _defaults = {
69         'default_invoice_method': 'manual',
70     }
71
72     def get_default_dp(self, cr, uid, fields, context=None):
73         dp = self.pool.get('ir.model.data').get_object(cr,uid, 'product','decimal_purchase')
74         return {'decimal_precision': dp.digits}
75
76     def set_default_dp(self, cr, uid, ids, context=None):
77         config = self.browse(cr, uid, ids[0], context)
78         dp = self.pool.get('ir.model.data').get_object(cr,uid, 'product','decimal_purchase')
79         dp.write({'digits': config.decimal_precision})
80
81
82
83 class account_config_settings(osv.osv_memory):
84     _inherit = 'account.config.settings'
85     _columns = {
86         'module_purchase_analytic_plans': fields.boolean('Several Analytic Accounts on Purchases',
87             help="""This allows install module purchase_analytic_plans."""),                 
88         'group_analytic_account_for_purchases': fields.boolean('Analytic Accounting for Purchases',
89             implied_group='purchase.group_analytic_accounting',
90             help="Allows you to specify an analytic account on purchase orders."),
91     }
92
93 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: