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