Launchpad automatic translations update.
[odoo/odoo.git] / addons / point_of_sale / report / pos_receipt.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 import pooler
25
26 def titlize(journal_name):
27     words = journal_name.split()
28     while words.pop() != 'journal':
29         continue
30     return ' '.join(words)
31
32 class order(report_sxw.rml_parse):
33
34     def __init__(self, cr, uid, name, context):
35         super(order, self).__init__(cr, uid, name, context=context)
36
37         user = pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, uid)
38         partner = user.company_id.partner_id
39
40         self.localcontext.update({
41             'time': time,
42             'disc': self.discount,
43             'net': self.netamount,
44             'get_journal_amt': self._get_journal_amt,
45             'address': partner.address and partner.address[0] or False,
46             'titlize': titlize
47         })
48
49     def netamount(self, order_line_id):
50         sql = 'select (qty*price_unit) as net_price from pos_order_line where id = %s'
51         self.cr.execute(sql, (order_line_id,))
52         res = self.cr.fetchone()
53         return res[0]
54
55     def discount(self, order_id):
56         sql = 'select discount, price_unit, qty from pos_order_line where order_id = %s '
57         self.cr.execute(sql, (order_id,))
58         res = self.cr.fetchall()
59         dsum = 0
60         for line in res:
61             if line[0] != 0:
62                 dsum = dsum +(line[2] * (line[0]*line[1]/100))
63         return dsum
64
65     def _get_journal_amt(self, order_id):
66         data={}
67         sql = """ select aj.name,absl.amount as amt from account_bank_statement as abs
68                         LEFT JOIN account_bank_statement_line as absl ON abs.id = absl.statement_id
69                         LEFT JOIN account_journal as aj ON aj.id = abs.journal_id
70                         WHERE absl.pos_statement_id =%d"""%(order_id)
71         self.cr.execute(sql)
72         data = self.cr.dictfetchall()
73         return data
74
75 report_sxw.report_sxw('report.pos.receipt', 'pos.order', 'addons/point_of_sale/report/pos_receipt.rml', parser=order, header=False)
76
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: