Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Pass filters to pentaho report

Subscriure's

Get notified when there's activity on this post

This question has been flagged
filterprintreportpentaho
5730 Vistes
Avatar
Anuradha
    hi,
    I have a table calldata1 and i want to show its contents in report print. i created pentaho report by adding  calldata1 as datasource and uplodaded this report to open erp. Then i created a wizard table  calldata_print_report_wiz . i created a pop up window which displays datestart, date end ,caller from this table as filters. (similar to Reporting/Point of sale/Sale details).
    i print data by passing filters to report my corrected code is given below
    calldetails/calldata.py

    from osv import osv,fields
    class calldata1(osv.osv):
      _name = 'calldata1'
      _columns = {
                  'Call_start': fields.datetime('Call start'),
                  'Call_duration':fields.datetime('Call duration'),
                   'Caller':fields.char('Caller'),
              }
    calldata1()
    calldetails/wizard/call_print.py

    import logging
    from openerp.osv import fields, osv
    import time

    class calldata_print_report_wiz(osv.osv_memory):
        _name = "calldata.print.report.wiz"
        def _sel_func(self, cr, uid,context=None):
           obj = self.pool.get('calldata1')
           ids = obj.search(cr, uid, [])
           res = obj.read(cr, uid, ids, ['id','Caller'], context)
           res =[(r['id'],r['Caller']) for r in res]
          return res

        _columns = {
            'date_start': fields.date('Date Start', required=True),
            'date_end': fields.date('Date End', required=True),
            'caller_id':fields.many2one(
            'calldata1',
            'caller_id',
            selection=_sel_func
            )
         }
        _defaults = {
            'date_start': lambda *a: time.strftime('%Y-%m-%d'),
            'date_end': lambda *a: time.strftime('%Y-%m-%d'),
         }

 34     def print_report(self, cr, uid, ids, context=None):
 35
 36       _logger = logging.getLogger(__name__)
 37       datas = {}
 38       if context is None:
 39             context = {}
 40       res = self.read(cr, uid, ids, ['date_start', 'date_end', 'caller_id'], context=context)
 41       caller_id  = ''
 42       date_start = res[0]['date_start'] + ' 00:00:00'
 43       date_end = res[0]['date_end'] +  ' 23:59:59'
 44       if res[0]['caller_id']:
 45         caller_id = res[0]['caller_id']
 46       calldata_obj = self.pool.get('calldata')
 47       if caller_id:
 48        cr.execute("select caller from calldata where id=%s",(caller_id,))
 49        caller = cr.fetchone()
 50        ids  = calldata_obj.search(cr, uid, [('call_start','>=',date_start),('call_start','<=',date_end),('caller','=',caller[0])])
 51       else:
 52        ids  = calldata_obj.search(cr, uid, [('call_start','>=',date_start),('call_start','<=',date_end)])
 53       calldats = calldata_obj.read(cr, uid, ids, ['caller','call_start'], context)
 54       datas['ids'] = ids
 55       datas['form']= calldats
 56       datas['model']= 'calldata'
 57       if (ids == []):
 58          datas = {}
 59       return {
 60              'type': 'ir.actions.report.xml',
 61              'report_name':'calldata',
 62              'datas':datas,
 63
 64             }

    calldata_print_report_wiz()
1
Avatar
Descartar
Anuradha
Autor

any one der? please help :(

evon_dun

Did you solved it yet? Looking for the same solution.

Anuradha
Autor

@evon Yes i solved it . i will update question with correct code.Plz inform if it helped you

Anuradha
Autor

@evon i posted correct code . what is the issue ?

evon_dun

line 50, i have same type of work but it gives the error "TypeError: 'list' object is not callable" :(

Anuradha
Autor

@evon will u post u r code as different question and give link. i will check

evon_dun

Thanks but it works now.

Anuradha
Autor

@evon then vote 4 me :)

evon_dun

:) done

evon_dun

and how do you print the value of a field in wizard to the report?

evon_dun

this is the link pls check http://help.openerp.com/question/34705/print-value-of-a-field-in-wizard-to-report/

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
change filter in accounting report
filter report
Avatar
Avatar
2
de des. 17
3615
how to check if report has been printed
print report
Avatar
Avatar
1
de nov. 16
5167
how to pass filers from openerp to pentaho
filter pentaho
Avatar
0
de març 15
3275
Did pentaho report need report_sxw
report pentaho
Avatar
0
de març 15
3604
how to write print function for pentaho report
report pentaho
Avatar
0
de març 15
4054
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now