[MERGE] Merged with server/trunk.
[odoo/odoo.git] / addons / lunch / report / report_lunch_order.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 import tools
23 from osv import fields,osv
24
25 class report_lunch_order(osv.osv):
26     _name = "report.lunch.order"
27     _description = "Lunch Orders Statistics"
28     _auto = False
29     _rec_name = 'date'
30     _columns = {
31         'date': fields.date('Date Order', readonly=True, select=True),
32         'year': fields.char('Year', size=4, readonly=True),
33         'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'),
34             ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'),
35             ('10','October'), ('11','November'), ('12','December')], 'Month',readonly=True),
36         'day': fields.char('Day', size=128, readonly=True),
37         'user_id': fields.many2one('res.users', 'User Name'),
38         'box_name': fields.char('Name', size=30),
39         'price_total':fields.float('Total Price', readonly=True),
40     }
41     _order = 'date desc'
42     def init(self, cr):
43         tools.drop_view_if_exists(cr, 'report_lunch_order')
44         cr.execute("""
45             create or replace view report_lunch_order as (
46                select
47                    min(lo.id) as id,
48                    lo.date as date,
49                    to_char(lo.date, 'YYYY') as year,
50                    to_char(lo.date, 'MM') as month,
51                    to_char(lo.date, 'YYYY-MM-DD') as day,
52                    lo.user_id,
53                    cm.name as box_name,
54                    sum(lp.price) as price_total
55
56             from
57                    lunch_order as lo
58                    left join lunch_cashmove as cm on (cm.id = lo.cashmove)
59                    left join lunch_cashbox as lc on (lc.id = cm.box)
60                    left join lunch_product as lp on (lo.product = lp.id)
61
62             group by
63                    lo.date,lo.user_id,cm.name
64             )
65             """)
66 report_lunch_order()
67
68 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: