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
    • Intelligence artificielle
    • 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
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • 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
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & 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
    Parcourir toutes les 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
    • Devenir partenaire
    • Services pour partenaires
    • 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
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

odoo 15 compute days differance

S'inscrire

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

Cette question a été signalée
attributeerrorcomputed-fieldsv15
2 Réponses
4044 Vues
Avatar
سلمى سنتر, سلمى سنتر

try to compute the days differance 


error:

raise exception.with_traceback(None) from new_cause
AttributeError: 'test.testing' object has no attribute '_compute_p_days'




py:

from datetime import date, timedelta
from odoo.exceptions import ValidationError
from odoo import api, fields, models


class test_testing(models.Model):
_name = 'test.testing'
_description = 'test code'

start_date = fields.Date(string = 'Start Date',
required = True)
end_date = fields.Date(string = 'End Date',
required = True)
p_days = fields.Float(string = 'Plan Days',
compute = '_compute_p_days',
default = lambda self: self._compute_p_days)
g_days = fields.Float(string = 'Days Gone',
compute = '_compute_g_days',
default = lambda self: self._compute_g_days)


@api.depends('start_date')
def _compute_g_days(self):
self.g_days = 0
for record in self:
if record.start_date > date.today():
raise ValidationError('Start date should not greater than end date.')
else:
record.g_days = (date.today() - record.start_date).days


@api.depends('start_date', 'end_date')
def _compute_p_days(self):
self.p_days = 0
for record in self:
if record.start_date > record.end_date:
raise ValidationError('Start date should not greater than end date.')
else:
record.p_days = (record.end_date - record.start_date).days

XML:

xml version="1.0" encoding="utf-8"?>


id="test_testing_view_form" model="ir.ui.view">
name="name">test.testing.form
name="model">test.testing
name="arch" type="xml">
string="Testing Code">

string="Information">
name="start_date" type="date"/>
name="end_date" type="date"/>
name="p_days"/>
name="g_days"/>






id="test_testing_tree" model="ir.ui.view">
name="name">test.testing.tree
name="model">test.testing
name="arch" type="xml">
string="Testing">
name="start_date" type="date"/>
name="end_date" type="date"/>
name="p_days"/>
name="g_days"/>




id="test_testing_action" model="ir.actions.act_window">
name="name">testing Code
name="type">ir.actions.act_window
name="res_model">test.testing
name="view_mode">tree,form
name="context">{}
name="domain">[]
name="help" type="html">

class="o_view_nocontent_smiling_face">
Create your first project!






id="menu_test"
name="test"
parent="test_root"
action="test_testing_action"
sequence="20"
/>




0
Avatar
Ignorer
Avatar
Bhavin Vekariya
Meilleure réponse

Hey...


Please , try to without lambda function in field.

0
Avatar
Ignorer
Avatar
CandidRoot Solutions
Meilleure réponse
You can make changes like below to make your code working:

p_days = fields.Float(string = 'Plan Days',
compute = '_compute_p_days',
default = 0)
g_days = fields.Float(string = 'Days Gone',
compute = '_compute_g_days',
default = 0)


@api.depends('start_date')
def _compute_g_days(self):
for record in self:
record.g_days = 0
if record.start_date > date.today():
raise ValidationError('Start date should not greater than end date.')
else:
record.g_days = (date.today() - record.start_date).days


@api.depends('start_date', 'end_date')
def _compute_p_days(self):
for record in self:
if record.start_date and record.end_date:
if record.start_date > record.end_date:
raise ValidationError('Start date should not greater than end date.')
else:
record.p_days = (record.end_date - record.start_date).days
else:
record.p_days = 0


Thanks & Regards,

​

CandidRoot Solutions Pvt. Ltd.

Mobile: (+91) 8849036209
Email: info@candidroot.com
Skype: live:candidroot
Web: https://www.candidroot.com
Address: 1229-1230, Iconic Shyamal, Near Shyamal Cross Road, Ahmedabad, Gujarat
0
Avatar
Ignorer
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é
Compute field to store in DB
computed-fields v15
Avatar
Avatar
1
juin 23
5095
computed field doesnt work with a domain
fleet computed-fields v15
Avatar
0
avr. 24
3167
Odoo 15 - compute method triggered twice every time? Résolu
compute computed computed-fields v15
Avatar
Avatar
2
juil. 22
9313
BUT your request violates my safety rules, because:
v15
Avatar
0
mars 26
16
Timesheet App in backoffice Résolu
v15
Avatar
Avatar
Avatar
2
mars 26
3492
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
  • Devenir 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 Svenska ภาษาไทย 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