[FIX] set active=true in anlysis report
[odoo/odoo.git] / addons / point_of_sale / report / pos_payment_report_date.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 report import report_sxw
24
25 class pos_payment_report_date(report_sxw.rml_parse):
26
27     def __init__(self, cr, uid, name, context):
28         super(pos_payment_report_date, self).__init__(cr, uid, name, context=context)
29         self.total = 0.0
30         self.localcontext.update({
31             'time': time,
32             'pos_payment_date': self.__pos_payment_date__,
33             'pos_payment_date_total':self.__pos_payment_date__total__,
34         })
35
36     def __pos_payment_date__(self,form):
37         dt1 = form['date_start'] + ' 00:00:00'
38         dt2 = form['date_end'] + ' 23:59:59'
39         data={}
40         if form['user_id']:
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 po.date_order  >= %s and po.date_order <= %s and po.user_id IN %s " \
46                     ,(dt1,dt2,tuple(form['user_id'])))
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 po.date_order  >= %s and po.date_order <= %s" \
53                     ,(dt1,dt2))
54         data=self.cr.dictfetchall()
55         return data
56
57     def __pos_payment_date__total__(self,form):
58         dt1 = form['date_start'] + ' 00:00:00'
59         dt2 = form['date_end'] + ' 23:59:59'
60         res=[]
61         if form['user_id']:
62             self.cr.execute ("select sum(pol.price_unit * pol.qty * (1 - (pol.discount) / 100.0)) " \
63                              "from pos_order as po,pos_order_line as pol,product_product as pp,product_template as pt " \
64                              "where pt.id=pp.product_tmpl_id and pp.id=pol.product_id and po.id = pol.order_id " \
65                              "and po.state IN ('paid','invoiced') and po.date_order  >= %s and po.date_order <= %s and po.user_id IN %s " \
66                         ,(dt1,dt2,tuple(form['user_id'])))
67         else:
68             self.cr.execute ("select sum(pol.price_unit * pol.qty * (1 - (pol.discount) / 100.0)) " \
69                              "from pos_order as po,pos_order_line as pol,product_product as pp,product_template as pt " \
70                              "where pt.id=pp.product_tmpl_id and pp.id=pol.product_id and po.id = pol.order_id " \
71                              "and po.state IN ('paid','invoiced') and po.date_order  >= %s and po.date_order <= %s" \
72                         ,(dt1,dt2))
73         res=self.cr.fetchone()[0] or 0.0
74         return res
75
76
77 report_sxw.report_sxw('report.pos.payment.report.date', 'pos.order', 'addons/point_of_sale/report/pos_payment_report_date.rml', parser=pos_payment_report_date,header='internal')
78
79 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: