[MERGE] forward port of branch 7.0 up to de07c64
[odoo/odoo.git] / addons / lunch / 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>).
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 import time
23 from openerp.report import report_sxw
24 from openerp.osv import osv
25
26
27 class order(report_sxw.rml_parse):
28
29     def get_lines(self, user,objects):
30         lines=[]
31         for obj in objects:
32             if user.id==obj.user_id.id:
33                 lines.append(obj)
34         return lines
35
36     def get_total(self, user,objects):
37         lines=[]
38         for obj in objects:
39             if user.id==obj.user_id.id:
40                 lines.append(obj)
41         total=0.0
42         for line in lines:
43             total+=line.price
44         self.net_total+=total
45         return total
46
47     def get_nettotal(self):
48         return self.net_total
49
50     def get_users(self, objects):
51         users=[]
52         for obj in objects:
53             if obj.user_id not in users:
54                 users.append(obj.user_id)
55         return users
56
57     def get_note(self,objects):
58         notes=[]
59         for obj in objects:
60             notes.append(obj.note)
61         return notes
62         
63     def __init__(self, cr, uid, name, context):
64         super(order, self).__init__(cr, uid, name, context)
65         self.net_total=0.0
66         self.localcontext.update({
67             'time': time,
68             'get_lines': self.get_lines,
69             'get_users': self.get_users,
70             'get_total': self.get_total,
71             'get_nettotal': self.get_nettotal,
72             'get_note': self.get_note,
73         })
74
75 report_sxw.report_sxw('report.lunch.order.line', 'lunch.order.line',
76         'addons/lunch/report/order.rml',parser=order, header='external')
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
78