[IMP] Tour: add tour in web module; tour became available in backend.
[odoo/odoo.git] / addons / purchase / partner.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 openerp.osv import fields, osv
23
24 class res_partner(osv.osv):
25     _name = 'res.partner'
26     _inherit = 'res.partner'
27
28     def _purchase_invoice_count(self, cr, uid, ids, field_name, arg, context=None):
29         PurchaseOrder = self.pool['purchase.order']
30         Invoice = self.pool['account.invoice']
31         return {
32             partner_id: {
33                 'purchase_order_count': PurchaseOrder.search_count(cr,uid, [('partner_id', '=', partner_id)], context=context),
34                 'supplier_invoice_count': Invoice.search_count(cr,uid, [('partner_id', '=', partner_id), ('type','=','in_invoice')], context=context)
35             }
36             for partner_id in ids
37         }
38
39     def _commercial_fields(self, cr, uid, context=None):
40         return super(res_partner, self)._commercial_fields(cr, uid, context=context) + ['property_product_pricelist_purchase']
41
42     _columns = {
43         'property_product_pricelist_purchase': fields.property(
44           type='many2one', 
45           relation='product.pricelist', 
46           domain=[('type','=','purchase')],
47           string="Purchase Pricelist", 
48           help="This pricelist will be used, instead of the default one, for purchases from the current partner"),
49         'purchase_order_count': fields.function(_purchase_invoice_count, string='# of Purchase Order', type='integer', multi="count"),
50         'supplier_invoice_count': fields.function(_purchase_invoice_count, string='# Supplier Invoices', type='integer', multi="count"),
51     }
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
54