aa25052974b8288ec97b5104909846bfab50be0d
[odoo/odoo.git] / addons / point_of_sale / report / pos_order_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 from openerp import tools
23 from openerp.osv import fields,osv
24
25 class pos_order_report(osv.osv):
26     _name = "report.pos.order"
27     _description = "Point of Sale Orders Statistics"
28     _auto = False
29
30     _columns = {
31         'date': fields.datetime('Date Order', readonly=True),
32         'partner_id':fields.many2one('res.partner', 'Partner', readonly=True),
33         'product_id':fields.many2one('product.product', 'Product', readonly=True),
34         'state': fields.selection([('draft', 'New'), ('paid', 'Closed'), ('done', 'Synchronized'), ('invoiced', 'Invoiced'), ('cancel', 'Cancelled')],
35                                   'Status'),
36         'user_id':fields.many2one('res.users', 'Salesperson', readonly=True),
37         'price_total':fields.float('Total Price', readonly=True),
38         'total_discount':fields.float('Total Discount', readonly=True),
39         'average_price': fields.float('Average Price', readonly=True,group_operator="avg"),
40         'location_id':fields.many2one('stock.location', 'Location', readonly=True),
41         'company_id':fields.many2one('res.company', 'Company', readonly=True),
42         'nbr':fields.integer('# of Lines', readonly=True),  # TDE FIXME master: rename into nbr_lines
43         'product_qty':fields.integer('Product Quantity', readonly=True),
44         'journal_id': fields.many2one('account.journal', 'Journal'),
45         'delay_validation': fields.integer('Delay Validation'),
46         'product_categ_id': fields.many2one('product.category', 'Product Category', readonly=True),
47     }
48     _order = 'date desc'
49
50     def init(self, cr):
51         tools.drop_view_if_exists(cr, 'report_pos_order')
52         cr.execute("""
53             create or replace view report_pos_order as (
54                 select
55                     min(l.id) as id,
56                     count(*) as nbr,
57                     s.date_order as date,
58                     sum(l.qty * u.factor) as product_qty,
59                     sum(l.qty * l.price_unit) as price_total,
60                     sum((l.qty * l.price_unit) * (l.discount / 100)) as total_discount,
61                     (sum(l.qty*l.price_unit)/sum(l.qty * u.factor))::decimal as average_price,
62                     sum(cast(to_char(date_trunc('day',s.date_order) - date_trunc('day',s.create_date),'DD') as int)) as delay_validation,
63                     s.partner_id as partner_id,
64                     s.state as state,
65                     s.user_id as user_id,
66                     s.location_id as location_id,
67                     s.company_id as company_id,
68                     s.sale_journal as journal_id,
69                     l.product_id as product_id,
70                     pt.categ_id as product_categ_id
71                 from pos_order_line as l
72                     left join pos_order s on (s.id=l.order_id)
73                     left join product_product p on (l.product_id=p.id)
74                     left join product_template pt on (p.product_tmpl_id=pt.id)
75                     left join product_uom u on (u.id=pt.uom_id)
76                 group by
77                     s.date_order, s.partner_id,s.state, pt.categ_id,
78                     s.user_id,s.location_id,s.company_id,s.sale_journal,l.product_id,s.create_date
79                 having
80                     sum(l.qty * u.factor) != 0)""")
81
82
83 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: