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

Account Invoice model inheritance

Abonare

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

Această întrebare a fost marcată
inheritanceaccount.invoiceodoo9
1 Răspunde
7470 Vizualizări
Imagine profil
Ghassen Rjab

Hi,

I want to change the behavior of _compute_amount method in AccountInvoice (account.invoice), so I started by inheriting the account.invoice model in my custom model in order to override that method, here is my code:

from openerp import fields, models

class AccountInvoice(models.Model):

_inherit = 'account.invoice'

The problem is that just these three lines (just the inheritance) cause Odoo to stop working (I am using Odoo 9 CE), here is the log
2016-01-14 08:11:57,758 3091 ERROR srsi werkzeug: Error on request:

Traceback (most recent call last):

File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 177, in run_wsgi

execute(self.server.app)

File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 165, in execute

application_iter = app(environ, start_response)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/service/server.py", line 245, in app

return self.app(e, s)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/service/wsgi_server.py", line 184, in application

return application_unproxied(environ, start_response)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/service/wsgi_server.py", line 170, in application_unproxied

result = handler(environ, start_response)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/http.py", line 1488, in __call__

return self.dispatch(environ, start_response)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/http.py", line 1462, in __call__

return self.app(environ, start_wrapped)

File "/usr/local/lib/python2.7/dist-packages/werkzeug/wsgi.py", line 588, in __call__

return self.app(environ, start_response)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/http.py", line 1637, in dispatch

ir_http = request.registry['ir.http']

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/http.py", line 360, in registry

return openerp.modules.registry.RegistryManager.get(self.db) if self.db else None

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/registry.py", line 354, in get

update_module)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/registry.py", line 385, in new

openerp.modules.load_modules(registry._db, force_demo, status, update_module)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/loading.py", line 334, in load_modules

force, status, report, loaded_modules, update_module)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/loading.py", line 237, in load_marked_modules

loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/loading.py", line 132, in load_module_graph

models = registry.load(cr, package)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/registry.py", line 168, in load

model = cls._build_model(self, cr)

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/models.py", line 593, in _build_model

original_module = pool[name]._original_module if name in parents else cls._module

File "/home/ghassen/tools/erp/odoo-9.0c-20160110/openerp/modules/registry.py", line 84, in __getitem__

return self.models[model_name]

KeyError: 'account.invoice'

I didn't know what is the issue because if I inherit from res.partner like in this guide https://www.odoo.com/documentation/9.0/howtos/backend.html, the inheritance works.

0
Imagine profil
Abandonează
Imagine profil
Baiju KS
Cel mai bun răspuns

Hi ,

This type of error occurs if you did not add correct dependency in your module. 

Please check depends in __openerp__.py file in your module. Here in this case add 'account' because you are inheriting account.invoice

 

'depends': ['base','account',],

Hope this helps.

2
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
ODOO9: Inheritance view to add a button in a tree
inheritance odoo9
Imagine profil
0
apr. 16
3784
Purchase order READONLY_STATES inherit
inheritance purchase_order odoo9
Imagine profil
Imagine profil
1
iul. 23
5159
Set different receivable account per instance
accounting inheritance account.invoice
Imagine profil
Imagine profil
2
dec. 18
4049
Error while trying to create a related field to boolean
inheritance boolean odoo9
Imagine profil
3
nov. 18
5162
random element not found after inheriting partner view
views inheritance odoo9
Imagine profil
0
iul. 18
3147
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