passing modules in GPL-3
[odoo/odoo.git] / addons / point_of_sale / report / pos_receipt.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import time
24 from report import report_sxw
25 import pooler
26
27
28 class order(report_sxw.rml_parse):
29
30     def __init__(self, cr, uid, name, context):
31         super(order, self).__init__(cr, uid, name, context)
32
33         user = pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, uid)
34         partner = user.company_id.partner_id
35
36         self.localcontext.update({
37             'time': time,
38             'disc': self.discount,
39             'net': self.netamount,
40             'address': partner.address and partner.address[0] or False,
41         })
42
43     def netamount(self, order_line_id):
44         sql = 'select (qty*price_unit) as net_price from pos_order_line where id = %d '
45         self.cr.execute(sql%(order_line_id))
46         res = self.cr.fetchone()
47         return res[0]
48
49     def discount(self, order_id):
50         sql = 'select discount, price_unit, qty from pos_order_line where order_id  = %d '
51         self.cr.execute(sql%(order_id))
52         res = self.cr.fetchall()
53         dsum = 0
54         for line in res:
55             if line[0] != 0:
56                 dsum = dsum +(line[2] * (line[0]*line[1]/100))
57         return dsum
58
59 report_sxw.report_sxw('report.pos.receipt', 'pos.order', 'addons/point_of_sale/report/pos_receipt.rml', parser=order, header=False)
60
61 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
62