Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

how to calculate age from date of birth

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
11 Risposte
36713 Visualizzazioni
Avatar
Mohammed Tariq

How to calculate age from date of birth using functional fileds . I tried all sorts of ways but not getting it properly. I don't know how to write the xml view for it since there is no proper code available for it. Please help since i am new here.

1
Avatar
Abbandona
Avatar
Indrabhan Bhamare
Risposta migliore

calculating age base on date of birth using @api onchange()

from openerp import fields, models, api, _
from dateutil.relativedelta import relativedelta
from datetime import date

class students(models.Model):
    _name = 'school.student'

    dob = fields.Date('DOB')
    age = fields.Char('Age')


    @api.onchange('dob')
    def set_age(self):
        for rec in self:
    if rec.dob:
    dt = rec.dob
    d1 = datetime.strptime(dt, "%Y-%m-%d").date()
           d2 = date.today()
rd = relativedelta(d2, d1)
rec.age = str(rd.years) + ' years'
7
Avatar
Abbandona
Avatar
dianne jose
Risposta migliore

python code for age calculation from date of birth:

from datetime import datetime from dateutil import parser

class mark_marksheet(osv.osv):
    _name="mark.marksheet"
    _description="Report Card"
    _columns={
         "dob":fields.date('Date of Birth',required=True),
        'age_text':fields.text('textage'),
    }

def onchange_getage_id(self,cr,uid,ids,dob,context=None):
    current_date=datetime.now()
    current_year=current_date.year
    birth_date = parser.parse(dob)
    current_age=current_year-birth_date.year
     val = {
        'age_text':current_age
    }
    return {'value': val}

mark_marksheet()

Xml View Code

<record id="view_mrk_form" model="ir.ui.view">
    <field name="name">mark.marksheet.form</field>
        <field name="model">mark.marksheet</field>
        <field name="arch" type="xml">
        <form string="Score Card">
            <field name="dob" on_change="onchange_getage_id(dob,context)"/>
            <field name="age_text"/>
        </form>
    </field>
</record>
5
Avatar
Abbandona
Avatar
PARVATHY VIJAYAN P
Risposta migliore

def onchange_getage_id(self,cr,uid,ids,dob,context=None):

    current_date=datetime.now()
    current_year=current_date.year
    birth_date = parser.parse(dob)
    current_age=current_year-birth_date.year
    val = {
        'age_text':current_age
    }
    return {'value': val}
3
Avatar
Abbandona
Avatar
Adesh Paul
Risposta migliore
from datetime import datetime, timedelta
from odoo import models, fields, api, _

class StudentStudent(models.Model):
_name = 'student.student'

student_dob = fields.Date(string="Date of Birth")
calc_age = fields.Integer(string="Calculated Age", compute="age_calc", store=True)

# Calculated age
@api.depends('student_dob')
def age_calc(self):
if self.student_dob is not False:
self.calc_age = (datetime.today().date() - datetime.strptime(str(self.student_dob), '%Y-%m-%d').date()) // timedelta(days=365)
0
Avatar
Abbandona
Avatar
Nimesh Jethva (nje)
Risposta migliore

from datetime import datetime, timedelta

from odoo import models, fields, api



class resume(models.Model):

    _name = 'resume.resume'


    date_of_birth = fields.Date(string="Date Of Birth")

    age = fields.Integer(compute="age_calc", store=True)


    @api.depends('date_of_birth')

    def age_calc(self):

        if self.date_of_birth is not False:

            self.age = (datetime.today().date() - datetime.strptime(self.date_of_birth, '%Y-%m-%d').date()) // timedelta(days=365)


0
Avatar
Abbandona
Avatar
Andrias Yohanson
Risposta migliore

Hi Folks,

I try the above code to calculate age, and making some modifcation. It inherit hr.employee modul in hr folder here are my modification:

in python add the import

from openerp.osv import osv,fields
from datetime import datetime
import dateutil.parser
class hr_employee(osv.osv):
    _inherit = 'hr.employee'

    def hitung(self, dob):
        current_date=datetime.now()
        current_year=current_date.year
        birth_date = dateutil.parser.parse(dob)
        current_age=current_year-birth_date.year
        return current_age

    def _calc_age(self, cr, uid,ids, field, arg, context=None):
        results = {}
        employee = self.browse(cr, uid, ids, context=context)
        if employee.dob:
            results[employee.id] = self.hitung(employee.dob)
        return results

    _columns = {
       'dob'         : fields.date('Date Of Birth'),
        'age_text' : fields.function(_calc_age, type='char', string="Age"),
    }
    _defaults = {,
        'dob': fields.date.context_today,
    }

    def onchange_getage_id(self,cr,uid,ids,dob,context=None):
        current_date=datetime.now()
        current_year=current_date.year
        birth_date = dateutil.parser.parse(dob)
        current_age=current_year-birth_date.year
        val = {
            'age_text':current_age
        }
        return {'value': val}  

in xml add these:
<field name="dob" on_change="onchange_getage_id(dob,context)"/>
<field name="age_text"/>

0
Avatar
Abbandona
Avatar
Mohammed Tariq
Autore Risposta migliore

i am getting an error while defining in this line : val = { 'age_text':current_age } Is this correct ??

0
Avatar
Abbandona
PARVATHY VIJAYAN P

Can you post the error message

Mohammed Tariq
Autore

I am getting the error in my python file in eclipse

PARVATHY VIJAYAN P

Can you post the screen shot of ur python file

PARVATHY VIJAYAN P

Is that indent error in eclipse

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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