Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to get report data based on company_id

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
reportpython2.7openerpodooV8
1 Répondre
6905 Vues
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
Ignorer
Avatar
Qutechs, Ahmed M.Elmubarak
Meilleure réponse

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
Ignorer
youta
Auteur

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 ...

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Update One2many Fields in the view
python2.7 openerp odooV8
Avatar
Avatar
1
avr. 17
3558
CRITICAL travel-management openerp.modules.module: to_field Résolu
python2.7 openerp odooV8
Avatar
Avatar
1
janv. 16
4232
How to fix a group and show related user in drop down ??
groups python2.7 openerp odooV8
Avatar
0
juil. 19
497
Issue in many2many_kanban widget unable to delete the attachment ?
python2.7 openerp odoo odooV8
Avatar
0
juil. 19
848
Record rule for project customer when it's login
python2.7 record_rules openerp odooV8
Avatar
1
juil. 19
585
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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