[IMP] Use the openerp namespace in YML tests.
[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 openerp.osv import fields, osv
23 from openerp import pooler
24 from openerp.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             ], 'Default invoicing control method', required=True, default_model='purchase.order'),
36         'group_purchase_pricelist':fields.boolean("Manage 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_costing_method':fields.boolean("Compute product cost price based on average cost",
44             implied_group='product.group_costing_method',
45             help="""Allows you to compute product cost price based on average cost."""),
46         'module_warning': fields.boolean("Alerts by products or supplier",
47             help="""Allow to configure notification on products and trigger them when a user wants to purchase a given product or a given supplier.
48 Example: Product: this product is deprecated, do not purchase more than 5.
49                 Supplier: don't forget to ask for an express delivery."""),
50         'module_purchase_double_validation': fields.boolean("Force two levels of approvals",
51             help="""Provide a double validation mechanism for purchases exceeding minimum amount.
52                 This installs the module purchase_double_validation."""),
53         'module_purchase_requisition': fields.boolean("Manage purchase requisitions",
54             help="""Purchase Requisitions are used when you want to request quotations from several suppliers for a given set of products.
55             You can configure per product if you directly do a Request for Quotation
56             to one supplier or if you want a purchase requisition to negotiate with several suppliers."""),
57         'module_purchase_analytic_plans': fields.boolean('Use multiple analytic accounts on purchase orders',
58             help ="""Allows the user to maintain several analysis plans. These let you split lines on a purchase order between several accounts and analytic plans.
59                 This installs the module purchase_analytic_plans."""),
60         'group_analytic_account_for_purchases': fields.boolean('Analytic accounting for purchases',
61             implied_group='purchase.group_analytic_accounting',
62             help="Allows you to specify an analytic account on purchase orders."),
63     }
64
65     _defaults = {
66         'default_invoice_method': 'manual',
67     }
68
69
70
71
72 class account_config_settings(osv.osv_memory):
73     _inherit = 'account.config.settings'
74     _columns = {
75         'module_purchase_analytic_plans': fields.boolean('Use multiple analytic accounts on orders',
76             help ="""Allows the user to maintain several analysis plans. These let you split lines on a purchase order between several accounts and analytic plans.
77                 This installs the module purchase_analytic_plans."""),
78         'group_analytic_account_for_purchases': fields.boolean('Analytic accounting for purchases',
79             implied_group='purchase.group_analytic_accounting',
80             help="Allows you to specify an analytic account on purchase orders."),
81     }
82
83     def onchange_purchase_analytic_plans(self, cr, uid, ids, module_purchase_analytic_plans, context=None):
84         """ change group_analytic_account_for_purchases following module_purchase_analytic_plans """
85         return {'value': {'group_analytic_account_for_purchases': module_purchase_analytic_plans}}
86
87 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: