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 industriesInauguration Odoo Lyon
  • 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

Controller inheritance

S'inscrire

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

Cette question a été signalée
inheritanceController
1 Répondre
7224 Vues
Avatar
jurtbc@gmail.com

I'm struggling with simple on first look issue. I'm trying to override set of required fields at billing address form of eCommerce addon.

For that I've created custom addon (with scaffold command) and trying to override method  _get_mandatory_billing_fields of WebsiteSale class.

Here is my only changes to myaddon/controllers/controllers.py, rest of the addon content is what I've got with scaffolding

from addons.website_sale.controllers.main import WebsiteSale
class WebsiteSaleInherit(WebsiteSale)
    def _get_mandatory_billing_fields(self):

    return ["name","email"]

Looks quite logic, but when I'm trying to install this module I'm getting error in WebsiteSale class code

Traceback (most recent call last):
  File "C:\\development\\odoo\\odoo\\service\\server.py", line 1198, in preload_registries
    registry = Registry.new(dbname, update_module=update_module)
  File "C:\\development\\odoo\\odoo\\modules\\registry.py", line 89, in new
    odoo.modules.load_modules(registry._db, force_demo, status, update_module)
  File "C:\\development\\odoo\\odoo\\modules\\loading.py", line 449, in load_modules
    processed_modules += load_marked_modules(cr, graph,
  File "C:\\development\\odoo\\odoo\\modules\\loading.py", line 346, in load_marked_modules
    loaded, processed = load_module_graph(
  File "C:\\development\\odoo\\odoo\\modules\\loading.py", line 178, in load_module_graph
    load_openerp_module(package.name)
  File "C:\\development\\odoo\\odoo\\modules\\module.py", line 358, in load_openerp_module
    __import__('odoo.addons.' + module_name)
  File "c:\\development\\odoo\\addons\\1test-addon\\__init__.py", line 3, in <module>
    from . import controllers
  File "c:\\development\\odoo\\addons\\1test-addon\\controllers\\__init__.py", line 3, in <module>
    from . import controllers
  File "c:\\development\\odoo\\addons\\1test-addon\\controllers\\controllers.py", line 3, in <module>
    from addons.website_sale.controllers.main import WebsiteSale
  File "C:\\development\\odoo\\addons\\website_sale\\__init__.py", line 5, in <module>
    from . import models
  File "C:\\development\\odoo\\addons\\website_sale\\models\\__init__.py", line 4, in <module>
    from . import account_move
  File "C:\\development\\odoo\\addons\\website_sale\\models\\account_move.py", line 7, in <module>
    class AccountMove(models.Model):
  File "C:\\development\\odoo\\odoo\\models.py", line 167, in __init__
    assert self.__module__.startswith('odoo.addons.'), \\
AssertionError: Invalid import of addons.website_sale.models.account_move.AccountMove, it should start with 'odoo.addons'.

Looks like I do some mistake during inheritance. Any hint where to dig to solve this will be very appreciated!

0
Avatar
Ignorer
Avatar
jurtbc@gmail.com
Auteur Meilleure réponse
WRONG
from addons.website_sale.controllers.main import WebsiteSale

RIGHT
from odoo.addons.website_sale.controllers.main import WebsiteSale

I will answer myself 

That was just a stupid error in import, see snippet above.


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é
Can't inherit base.view_partner_form of res.partner
inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
4
févr. 25
5965
Include in inherit from JS class
inheritance
Avatar
Avatar
1
août 24
4107
How to Override a method in parent class in JS Résolu
inheritance
Avatar
Avatar
2
nov. 24
5755
How to add a simple field to partner?
inheritance
Avatar
Avatar
Avatar
Avatar
3
oct. 23
16977
Template not rendered for a controller - Need Resolution for the problem Résolu
Controller
Avatar
Avatar
1
juin 23
3438
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