[IMP] update po(t) files
[odoo/odoo.git] / addons / stock / report_stock.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 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 from osv import osv, fields
24 from tools.translate import _
25
26 #
27 # Check if it works with UoM ???
28 #
29 class stock_report_prodlots(osv.osv):
30     _name = "stock.report.prodlots"
31     _description = "Stock report by production lots"
32     _auto = False
33     _columns = {
34             'name': fields.float('Quantity', readonly=True),
35             'location_id': fields.many2one('stock.location', 'Location', readonly=True, select=True),
36             'product_id': fields.many2one('product.product', 'Product', readonly=True, select=True),
37             'prodlot_id': fields.many2one('stock.production.lot', 'Production lot', readonly=True, select=True),
38     }
39     
40     def init(self, cr):
41         cr.execute("""
42             create or replace view stock_report_prodlots as (
43                 select max(id) as id,
44                     location_id,
45                     product_id,
46                     prodlot_id,
47                     sum(qty) as name
48                 from (
49                     select -max(sm.id) as id,
50                         sm.location_id,
51                         sm.product_id,
52                         sm.prodlot_id,
53                         -sum(sm.product_qty /uo.factor) as qty
54                     from stock_move as sm
55                     left join stock_location sl
56                         on (sl.id = sm.location_id)
57                     left join product_uom uo
58                         on (uo.id=sm.product_uom)
59                     where state = 'done'
60                     group by sm.location_id, sm.product_id, sm.product_uom, sm.prodlot_id
61                     union all
62                     select max(sm.id) as id,
63                         sm.location_dest_id as location_id,
64                         sm.product_id,
65                         sm.prodlot_id,
66                         sum(sm.product_qty /uo.factor) as qty
67                     from stock_move as sm
68                     left join stock_location sl
69                         on (sl.id = sm.location_dest_id)
70                     left join product_uom uo
71                         on (uo.id=sm.product_uom)
72                     where sm.state = 'done'
73                     group by sm.location_dest_id, sm.product_id, sm.product_uom, sm.prodlot_id
74                 ) as report
75                 group by location_id, product_id, prodlot_id
76             )""")
77         
78     def unlink(self, cr, uid, ids, context={}):
79         raise osv.except_osv(_('Error !'), _('You cannot delete any record!'))
80
81         
82 stock_report_prodlots()
83
84 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: