[FIX] stock: use correct vals in grouped invoice (opw 606535)
[odoo/odoo.git] / addons / point_of_sale / report / pos_payment_report_user.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 time
23 from openerp.report import report_sxw
24
25 class pos_payment_report_user(report_sxw.rml_parse):
26
27     def __init__(self, cr, uid, name, context):
28         super(pos_payment_report_user, self).__init__(cr, uid, name, context=context)
29         self.total = 0.0
30         self.localcontext.update({
31             'time': time,
32             'pos_payment_user': self.__pos_payment_user__,
33             'pos_payment_user_total':self.__pos_payment_user__total__,
34         })
35
36     def __pos_payment_user__(self, form):
37         data={}
38         ids = form['user_id']
39         sql = "select pt.name,pp.default_code as code,pol.qty,pu.name as uom,pol.discount,pol.price_unit, " \
40                          "(pol.price_unit * pol.qty * (1 - (pol.discount) / 100.0)) as total  " \
41                          "from pos_order as po,pos_order_line as pol,product_product as pp,product_template as pt,product_uom as pu " \
42                          "where pt.id=pp.product_tmpl_id and pp.id=pol.product_id and po.id = pol.order_id and pu.id=pt.uom_id " \
43                          "and po.state in ('paid','invoiced') and to_char(date_trunc('day',po.date_order),'YYYY-MM-DD')::date = current_date " \
44                          "and po.user_id IN %s"
45         self.cr.execute (sql, (tuple(ids), ))
46         data=self.cr.dictfetchall()
47         return data
48
49     def __pos_payment_user__total__(self, form):
50         res=[]
51         ids = form['user_id']
52         self.cr.execute ("select sum(pol.price_unit * pol.qty * (1 - (pol.discount) / 100.0)) " \
53                          "from pos_order as po,pos_order_line as pol,product_product as pp,product_template as pt " \
54                          "where pt.id=pp.product_tmpl_id and pp.id=pol.product_id and po.id = pol.order_id " \
55                          "and po.state='paid' and to_char(date_trunc('day',po.date_order),'YYYY-MM-DD')::date = current_date " \
56                          "and po.user_id IN %s",(tuple(ids),))
57         res=self.cr.fetchone()
58         res = res and res[0] or 0.0
59
60         return res
61
62 report_sxw.report_sxw('report.pos.payment.report.user', 'pos.order', 'addons/point_of_sale/report/pos_payment_report_user.rml', parser=pos_payment_report_user,header='internal')
63
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: