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

How to get report data based on company_id

Subscriure's

Get notified when there's activity on this post

This question has been flagged
reportpython2.7openerpodooV8
1 Respondre
6914 Vistes
Avatar
youta

Hello,

I'm trying to get Employees' payroll data for each company in a report.

Here's my code:

in my wizard:

class hr_wps_report(osv.osv_memory):

_name = 'hr.wps.report'

_description = 'WPS Report'

_columns = {

'date_from':fields.date("Start Date"),

'date_to':fields.date("End Date"),

'company_id': fields.many2one('res.company', 'Company', select=True, required=False),

}

_defaults = {

'date_from': lambda *a: time.strftime('%Y-%m-01'),

'date_to': lambda *a: str(datetime.now() + relativedelta.relativedelta(months=+1, day=1, days=-1))[:10],

'company_id': lambda self, cr, uid, context: self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id,

}

def print_report(self, cr, uid, ids, data, context=None):

if context is None:

context = {}

data['form'] = self.read(cr, uid, ids, ['date_from', 'date_to', 'company_id'], context=context)[0]

return self.pool['report'].get_action(cr, uid, [], 'hr_wps.report_wpsreport', data=data, context=context)


in my report:

class wpsreport(report_sxw.rml_parse):

def __init__(self, cr, uid, name, context):

super(wpsreport, self).__init__(cr, uid, name, context=context)

self.localcontext.update({

'time': time,

'get_lines': self._get_lines,

})

def set_context(self, objects, data, ids, report_type=None):

self.date_start = data['form'].get('date_from', time.strftime('%Y-%m-%d'))

self.date_end = data['form'].get('date_to', time.strftime('%Y-%m-%d'))

self.company_id = data['form'].get('company_id')

return super(wpsreport, self).set_context(objects, data, ids, report_type=report_type)

def _get_lines(self, form):

res = []

self.cr.execute("""SELECT hr_employee.name_related,

(SELECT hr_payslip_line.total

FROM hr_payslip_line, hr_payslip

WHERE hr_employee.id = hr_payslip.employee_id

AND hr_payslip_line.slip_id = hr_payslip.id

AND hr_payslip_line.code = 'BASIC'

AND hr_payslip.date_from BETWEEN %s AND %s) as basic,

(SELECT hr_payslip_line.total

FROM hr_payslip_line, hr_payslip

WHERE hr_employee.id = hr_payslip.employee_id

AND hr_payslip_line.slip_id = hr_payslip.id

AND hr_payslip_line.code = 'ALLOWANCES'

AND hr_payslip.date_from BETWEEN %s AND %s) as total_allowance,

(SELECT hr_payslip_line.total

FROM hr_payslip_line, hr_payslip

WHERE hr_employee.id = hr_payslip.employee_id

AND hr_payslip_line.slip_id = hr_payslip.id

AND hr_payslip_line.code = 'DEDUCTIONS'

AND hr_payslip.date_from BETWEEN %s AND %s) as total_deduction,

(SELECT hr_payslip_line.total

FROM hr_payslip_line, hr_payslip

WHERE hr_employee.id = hr_payslip.employee_id

AND hr_payslip_line.slip_id = hr_payslip.id

AND hr_payslip_line.code = 'NET'

AND hr_payslip.date_from BETWEEN %s AND %s) as total

FROM hr_employee,

hr_payslip,

res_company

WHERE hr_payslip.employee_id = hr_employee.id

AND hr_payslip.company_id = res_company.id

AND hr_payslip.date_from BETWEEN %s AND %s

AND hr_payslip.company_id = %s""", (self.date_start, self.date_end, self.date_start, self.date_end, self.date_start, self.date_end, self.date_start, self.date_end, self.date_start, self.date_end, self.company_id))

 

employees = self.cr.dictfetchall()

for emp in employees:

value = {}

value['name_related'] = emp['name_related']

value['basic'] = emp['basic']

value['total_allowance'] = emp['total_allowance']

value['total_deduction'] = emp['total_deduction']

value['total'] = emp['total']

value['No_working_days'] = 30

value['extra_hours'] = 0

res.append(value)

return res


But I'm getting Error of:

QWebException: "invalid input syntax for integer: "Yourcompany" 

AND hr_payslip.company_id = ARRAY[9, 'Yourcompany']

How to fix it?

0
Avatar
Descartar
Avatar
Qutechs, Ahmed M.Elmubarak
Best Answer

Hello,

Try these:

self.company_id.id

or 

self.company_id[0]

instead of self.company_id in the query ..


Hope it'll work

1
Avatar
Descartar
youta
Autor

This one worked self.company_id[0] Thank you very much.. you're my hero Ahmed :D However, can you explain it.. I mean the error, in other words what is the difference between self.company_id[0] and self.company_id

Qutechs, Ahmed M.Elmubarak

Thanx so much for cheering :] . When you use self.company_id it will return a list containing the [ID, name of the record] as your case here [9, 'Yourcompany'], which your query don't expect that value, so you just need to fetch the ID from the list, when you use the self.company_id[0] then you're fetching the first element in the list which is the Id ...

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
Update One2many Fields in the view
python2.7 openerp odooV8
Avatar
Avatar
1
d’abr. 17
3560
CRITICAL travel-management openerp.modules.module: to_field Solved
python2.7 openerp odooV8
Avatar
Avatar
1
de gen. 16
4240
How to fix a group and show related user in drop down ??
groups python2.7 openerp odooV8
Avatar
0
de jul. 19
497
Issue in many2many_kanban widget unable to delete the attachment ?
python2.7 openerp odoo odooV8
Avatar
0
de jul. 19
848
Record rule for project customer when it's login
python2.7 record_rules openerp odooV8
Avatar
1
de jul. 19
585
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