I need to set @api.constraints for people under 18. they shall not pass. pls help me
Odoo is the world's easiest all-in-one management software.
 It includes hundreds of business apps:
- CRM
- e-Commerce
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
            
                1
                
                    Responder
                
            
        
        
            
                2514
                
                    Visualizações
                
            
        
    Hi,
Below is a sample code by which you can get age from date of birth:
today = date.today()
if rec.date_of_birth:
rec.age = today.year - rec.date_of_birth.year
else:
rec.age = 1
Video: https://youtu.be/NlbdnA6WMd8?t=632
then you can check the age is less than 18 or not and return the validation using constrains:
See: https://www.youtube.com/watch?v=8Lz4Fy7ozfY
Thanks
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-se| Publicações relacionadas | Respostas | Visualizações | Atividade | |
|---|---|---|---|---|
|  | 0 fev. 22  | 4 | ||
|  | 1 mar. 15  | 5292 | ||
|  | 1 mar. 15  | 8793 | ||
|  | 3 jun. 25  | 2046 | ||
|  | 1 jan. 25  | 18659 | 
