Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
3 Replies
21570 Tampilan

I would like to use in my QWeb report the element "item". What I should write in my report ? "item" is an attribute in tabData. You can see my python code below. I have already conffigure the report parser and it works.

This is my python code :

def getLines (self, objects):

            tabData = []
            print objects
            for i in range (7):
                tabData.append({})
                tabData [i] ['jour']      = self.tabJour [i]
                tabData [i] ['commandes'] = {}

            for o in objects:
                indJour = int(o.jour) - 1

                if indJour not in range(7): continue

                commande = o.order_id.name

                if not (tabData [indJour]['commandes'].has_key (commande)):
                    tabData [indJour]['commandes'][commande] = {}
                    tabData [indJour]['commandes'][commande]['items'] = []
                    tabData [indJour]['commandes'][commande]['partner'] = o.order_partner_id.name




                bois    = o.bois1.code_fini
                bois2   = o.bois2.code_fini
                metal   = o.metal.code_fini
                tissus  = o.tissu.code_fini
                poignee = o.poignee.code_fini
                patte   = o.patte.code_fini
                cfg     = o.config


                optionTissu = o.tissu.couleur_finifr

                qty           = int(o.product_uom_qty)
                qtyEmballe    =  0
                qtyPeinture   = qty - qtyEmballe - int(o.FabPeint)
                qtyTeinture   = qty - qtyEmballe - int(o.FabTeint)
                qtyRembourage = qty - qtyEmballe - int(o.ProdFTissus)
                qtyMetal      = qtyPeinture - int(o.ProdFMetal)
                qtyBois       = qtyTeinture - int(o.ProdFBois)

                if not (qtyMetal) or qtyMetal < 0:
                    qtyMetal = 0
                if not (qtyBois) or qtyBois < 0:
                    qtyBois = 0
                if not (qtyPeinture) or qtyPeinture < 0:
                    qtyPeinture = 0
                if not (qtyTeinture) or qtyTeinture < 0:
                    qtyTeinture = 0
                if not (qtyRembourage) or qtyRembourage < 0:
                    qtyRembourage = 0

                if bois == '.':
                    bois = None
                if bois2 == '.':
                    bois2 = None
                if metal == '.':
                    metal = None
                if tissus == '.':
                    tissus = None
                if poignee == '.':
                    poignee = None
                if patte == '.':
                    patte = None
                if cfg == '.':
                    cfg = None

                if optionTissu == "NONE":
                    optionTissu=None

                tabData [indJour]['commandes'][commande]['items'].append ({
                        'item': o.product_id.default_code,
                        'qty': qty,
                        'metal': metal,
                        'bois': bois,
                        'bois2': bois2,
                        'tissus': tissus,
                        'poignee': poignee,
                        'patte': patte,
                        'optionTissu': optionTissu,
                        'cfg': cfg,
                        'notes': o.notes,
                        'qtyEmballe': qtyEmballe,
                        'qtyMetal': qtyMetal,
                        'qtyBois': qtyBois,
                        'qtyPeinture': qtyPeinture,
                        'qtyTeinture': qtyTeinture,
                        'qtyRembourage': qtyRembourage,
                    })
            print "FIN"
            return tabData

Thank you for your help.

Avatar
Buang
Jawaban Terbai

Create .py file to call python function:

  • .py

    # -*- coding: utf-8 -*-

    from openerp import api, models

    class first_report_method(models.AbstractModel):

         _name = 'report.module_name.report_template'

         @api.multi

         def render_html(self, data=None):

              report_obj = self.env['report']

             report = report_obj._get_report_from_name('module_name.report_template')

             docargs = {

                 'doc_ids': self._ids,

                  'doc_model': report.model,

                 'docs': self,

                 'getLines': self._getLines,

             }

              return report_obj.render('module_name.report_template', docargs)

         def _getLines(self, object):

             # function body...

             return tabData

    # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:


  • Call python function from .xml(report template) using:

    <div t-esc="getLines(o)"/>

Avatar
Buang
Jawaban Terbai
<t t-set="lines" t-value="o.getLines()"></t>


#Place the method in the model of active object .

#set it's values in side the lines variable. 

#Now iterate it's values using for-each 



Avatar
Buang
Jawaban Terbai

Hi,

There is a function in Odoo, which will get executed automatically while printing the PDF report in Odoo. See this: How To Call A Python Function While Printing PDF Report in Odoo

Thanks

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
2
Jan 21
7631
0
Des 17
3240
1
Sep 17
4622
4
Jul 17
6946
2
Feb 17
6690