Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Account Invoice model inheritance

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
inheritanceaccount.invoiceodoo9
1 Beantwoorden
7472 Weergaven
Avatar
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
Avatar
Annuleer
Avatar
Baiju KS
Beste antwoord

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
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
ODOO9: Inheritance view to add a button in a tree
inheritance odoo9
Avatar
0
apr. 16
3784
Purchase order READONLY_STATES inherit
inheritance purchase_order odoo9
Avatar
Avatar
1
jul. 23
5159
Set different receivable account per instance
accounting inheritance account.invoice
Avatar
Avatar
2
dec. 18
4053
Error while trying to create a related field to boolean
inheritance boolean odoo9
Avatar
3
nov. 18
5162
random element not found after inheriting partner view
views inheritance odoo9
Avatar
0
jul. 18
3151
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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