[IMP] res.users: enable cache on context_get, used by the _() translation function
[odoo/odoo.git] / addons / sale_mrp / sale_mrp.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from osv import osv, fields
24
25 class mrp_production(osv.osv):
26     _inherit = 'mrp.production'
27
28     def _ref_calc(self, cr, uid, ids, field_names=None, arg=False, context=None):
29         """ Finds reference of sales order for production order.
30         @param field_names: Names of fields.
31         @param arg: User defined arguments
32         @return: Dictionary of values.
33         """
34         res = {}
35         if not field_names:
36             field_names = []
37         for id in ids:
38             res[id] = {}.fromkeys(field_names, False)
39         for f in field_names:
40             field_name = False
41             if f == 'sale_name':
42                 field_name = 'name'
43             if f == 'sale_ref':
44                 field_name = 'client_order_ref'
45             for key, value in self._get_sale_ref(cr, uid, ids, field_name).items():
46                 res[key][f] = value
47         return res
48
49     def _get_sale_ref(self, cr, uid, ids, field_name=False):
50         move_obj = self.pool.get('stock.move')
51
52         def get_parent_move(move_id):
53             move = move_obj.browse(cr, uid, move_id)
54             if move.move_dest_id:
55                 return get_parent_move(move.move_dest_id.id)
56             return move_id
57
58         res = {}
59         productions = self.browse(cr, uid, ids)
60         for production in productions:
61             res[production.id] = False
62             if production.move_prod_id:
63                 parent_move_line = get_parent_move(production.move_prod_id.id)
64                 if parent_move_line:
65                     move = move_obj.browse(cr, uid, parent_move_line)
66                     if field_name == 'name':
67                         res[production.id] = move.sale_line_id and move.sale_line_id.order_id.name or False
68                     if field_name == 'client_order_ref':
69                         res[production.id] = move.sale_line_id and move.sale_line_id.order_id.client_order_ref or False
70         return res
71
72     _columns = {
73         'sale_name': fields.function(_ref_calc, multi='sale_name', type='char', string='Sale Name', help='Indicate the name of sales order.'),
74         'sale_ref': fields.function(_ref_calc, multi='sale_name', type='char', string='Sale Reference', help='Indicate the Customer Reference from sales order.'),
75     }
76
77 mrp_production()
78
79 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: