Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

[Odoo 12.0]: fields.Date.from_string(payslip.date_from).year "NoneType" object has no attribute "year"

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
Version
3 Răspunsuri
6540 Vizualizări
Imagine profil
Ermin Trevisan

I have installed the following module:

https://apps.odoo.com/apps/modules/12.0/l10n_ch_payroll/

When I try to create a new payslip, the following error happens (unfortunately, I did not get any feedback from the author yet):

Here is the code

class HrPayslip(models.Model):

_inherit = 'hr.payslip'

is_correction_final_payslip = fields.Boolean(string="Bulletin final de correction")
other_year_payslip_ids = fields.Many2many('hr.payslip', string="Autres salaires de l'années", compute="_get_other_payslips")

@api.multi
def _get_other_payslips(self):
for payslip in self:
current_year = fields.Date.from_string(payslip.date_from).year
date_from = "%s-01-01" % current_year
date_to = "%s-12-31" % current_year
other_payslips = self.search([
('employee_id', '=', payslip.employee_id.id),
('id', '!=', payslip.id),
('date_from', '>=', date_from),
('date_to', '<=', date_to)
])
payslip.other_year_payslip_ids = other_payslips

Here the field definition payslip.date_from:

    date_from = fields.Date(string='Date From', readonly=True, required=True,default=lambda self:fields.Date.to_string(date.today().replace(day=1)), states={'draft': [('readonly', False)]})
      
      
        

      
       

And this is the traceback:

Odoo Server ErrorTraceback (most recent call last):
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 1049, in get
    value = self._data[key][field][record._ids[0]]
KeyError: <odoo.models.NewId object at 0x7f1b49640ca8>

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1005, in __get__
    value = record.env.cache.get(record, self)
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 1051, in get
    raise CacheMiss(record, field)
odoo.exceptions.CacheMiss: ('hr.payslip(<odoo.models.NewId object at 0x7f1b49640ca8>,).other_year_payslip_ids', None)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 656, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 314, in _handle_exception
    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])
  File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 87, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 698, in dispatch
    result = self._call_function(**self.params)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 346, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 97, in wrapper
    return f(dbname, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 339, in checked_call
    result = self.endpoint(*a, **kw)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 941, in __call__
    return self.method(*args, **kw)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 519, in response_wrap
    response = f(*args, **kw)
  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 962, in call_kw
    return self._call_kw(model, method, args, kwargs)
  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 954, in _call_kw
    return call_kw(request.env[model], method, args, kwargs)
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 759, in call_kw
    return _call_kw_multi(method, model, args, kwargs)
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 746, in _call_kw_multi
    result = method(recs, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/models.py", line 5492, in onchange
    record = self.new(values)
  File "/usr/lib/python3/dist-packages/odoo/models.py", line 4954, in new
    record._cache.update(record._convert_to_cache(values, update=True))
  File "/usr/lib/python3/dist-packages/odoo/models.py", line 4824, in _convert_to_cache
    for name, value in values.items()
  File "/usr/lib/python3/dist-packages/odoo/models.py", line 4825, in <dictcomp>
    if name in fields
  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 2278, in convert_to_cache
    ids = OrderedSet(record[self.name]._ids)
  File "/usr/lib/python3/dist-packages/odoo/models.py", line 5134, in __getitem__
    return self._fields[key].__get__(self, type(self))
  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1011, in __get__
    self.determine_draft_value(record)
  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1133, in determine_draft_value
    self._compute_value(record)
  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1067, in _compute_value
    getattr(records, self.compute)()
  File "/usr/lib/python3/dist-packages/odoo/custom/addons/l10n_ch_payroll/models/hr_payslip.py", line 24, in _get_other_payslips
    current_year = fields.Date.from_string(payslip.date_from).year
AttributeError: 'NoneType' object has no attribute 'year'

Any help is appreciated, thanks

-1
Imagine profil
Abandonează
Ibrahim Boudmir

1- check payslip.date_from Value then

2- check fields.Date.from_string(payslip.date_from) Value

what do these 2 points return ?

Ermin Trevisan
Autor

@Ibrahim

Thanks for your feedback. I'm not a developer and have no developing environment, so I do not know how to get this information. But I have amended my question and have added the module, which produces the error when trying to create a new payslip.

Imagine profil
Ibrahim Boudmir
Cel mai bun răspuns

Hi Ermin, 
Thank you for the link to the module. I have installed it to debug the code. Actually the solution is simple. 

The problem occurs because the field date_from is empty. 

Solution: 

Add if payslip.date_from to the function that computes the field other_year_payslip_ids.
So it does compute the field only if date_from exists.

I'll try to contact the author to fix this bug. 

Regards.

1
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
504 Gateway Time-out nginx/1.14.0 (Ubuntu) odoo12 Rezolvat
Version
Imagine profil
Imagine profil
1
dec. 22
14644
Odoo 13.0+e Update One2Many values based on record change Rezolvat
Version
Imagine profil
Imagine profil
1
mai 22
7569
OpenERP 7 : Make many to one field read only Rezolvat
Version
Imagine profil
Imagine profil
3
mar. 20
3526
Invoicing Purchases To Customer not working as expected (V13)
Version
Imagine profil
Imagine profil
1
mar. 20
2834
How to set Openeducat V13 on Ubuntu server 18.04
Version
Imagine profil
Imagine profil
3
mar. 20
5545
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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