~tempo-openerp/+junk/loewert-report-name

« back to all changes in this revision

Viewing changes to addons/stock/report/stock_inventory_move_report.py

  • Committer: jbe at tempo-consulting
  • Date: 2013-08-21 08:48:11 UTC
  • Revision ID: jbe@tempo-consulting.fr-20130821084811-913uo4l7b5ayxq8m
[NEW] Création de la branche trunk Loewert

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 openerp.report import report_sxw
 
24
 
 
25
class stock_inventory_move(report_sxw.rml_parse):
 
26
    def __init__(self, cr, uid, name, context):
 
27
        super(stock_inventory_move, self).__init__(cr, uid, name, context=context)
 
28
        self.localcontext.update({
 
29
             'time': time,
 
30
             'qty_total':self._qty_total
 
31
        })
 
32
 
 
33
    def _qty_total(self, objects):
 
34
        total = 0.0
 
35
        uom = objects[0].product_uom.name
 
36
        for obj in objects:
 
37
            total += obj.product_qty
 
38
        return {'quantity':total,'uom':uom}
 
39
 
 
40
report_sxw.report_sxw(
 
41
    'report.stock.inventory.move',
 
42
    'stock.inventory',
 
43
    'addons/stock/report/stock_inventory_move.rml',
 
44
    parser=stock_inventory_move,
 
45
    header='internal'
 
46
)
 
47
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: