[I18N] Upgrade the translations
[odoo/odoo.git] / addons / mrp_repair / report / order.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 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 General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import time
24 from report import report_sxw
25 from osv import osv
26 import pooler
27
28 class order(report_sxw.rml_parse):
29     def __init__(self, cr, uid, name, context):
30         super(order, self).__init__(cr, uid, name, context=context)
31         self.localcontext.update({
32             'time': time,
33             'total': self.total,
34             'adr_get' : self._adr_get
35         })
36
37
38     def total(self, repair):
39         total = 0.0
40         for operation in repair.operations:
41            total+=operation.price_subtotal
42         for fee in repair.fees_lines:
43            total+=fee.price_subtotal
44         total = total + repair.amount_tax
45         return total
46
47     def _adr_get(self, partner, type):
48             res_partner = pooler.get_pool(self.cr.dbname).get('res.partner')
49             res_partner_address = pooler.get_pool(self.cr.dbname).get('res.partner.address')
50             addresses = res_partner.address_get(self.cr, self.uid, [partner.id], [type])
51             adr_id = addresses and addresses[type] or False
52             return adr_id and res_partner_address.read(self.cr, self.uid, [adr_id])[0] or False
53
54 report_sxw.report_sxw('report.repair.order','mrp.repair','addons/mrp_repair/report/order.rml',parser=order)
55
56 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
57