~vauxoo/addons-vauxoo/7.0_test_hr_expense_dev_jorge

« back to all changes in this revision

Viewing changes to report_process_production/report/process_production_report.py

  • Committer: Rodolfo Lopez
  • Date: 2012-09-25 00:46:31 UTC
  • mto: This revision was merged to the branch mainline in revision 468.
  • Revision ID: rodo@vauxoo.com-20120925004631-dbh4wu1di84lgo5k
[ADD] [report_process_production] wizard and report report_process_production

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 report import report_sxw
 
24
from osv import osv
 
25
import pooler
 
26
from tools.amount_to_text import amount_to_text
 
27
from tools.translate import _
 
28
 
 
29
class process_report(report_sxw.rml_parse):
 
30
    def __init__(self, cr, uid, name, context):
 
31
        super(process_report, self).__init__(cr, uid, name, context=context)
 
32
        self.localcontext.update({
 
33
        'time': time,
 
34
        'get_production':self._get_production,
 
35
        })
 
36
        
 
37
    def _get_production(self, data,prod_id):
 
38
        res=[]
 
39
        pool = pooler.get_pool(self.cr.dbname)
 
40
        obj_prod=pool.get('mrp.production')
 
41
        for prod in obj_prod.browse(self.cr, self.uid, [prod_id]):
 
42
            for line in prod.move_lines:
 
43
                if line.product_id.id in data['product_ids']:
 
44
                    res.append(line)
 
45
            print res,"aqui estaaaaa"
 
46
        return res
 
47
 
 
48
report_sxw.report_sxw('report.process.report','mrp.production','addons/report_process_production/report/process_production_report.rml',parser=process_report,header=False)
 
49
 
 
50
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
51