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

Issues industry_fsm_report inherit

S'inscrire

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

Cette question a été signalée
developmentinheritanceissuesinheritissue
1 Répondre
1642 Vues
Avatar
Arnaldo Angulo

Does any one did have issues trying to extend a report from 

industry_fsm_report module? Im trying to extend the module but an error from odoo telling me the module is not installed appears, here are some test:


INSTALLATION OF MODULE TEST:
acttelematica-test-env-21567738=> SELECT

    im.model,

    im.name as model_name,

    imm.name as module_name,

    imm.state as module_state

FROM

    ir_model im

JOIN

    ir_model_data imd ON imd.model = 'ir.model' AND imd.res_id = im.id

JOIN

    ir_module_module imm ON imm.name = split_part(imd.module, '.', 1)

WHERE

    im.model = 'x_project_task_worksheet_template_13';

                model                 |                       model_name                       |     module_name     | module_state

--------------------------------------+--------------------------------------------------------+---------------------+--------------

x_project_task_worksheet_template_13 | {"en_US": "plantilla test", "es_ES": "plantilla test"} | industry_fsm_report | installed

ERROR ON LOG EVENTS:


Traceback (most recent call last): File "/home/odoo/src/odoo/odoo/http.py", line 2375, in __call__ response = request._serve_db() File "/home/odoo/src/odoo/odoo/http.py", line 1928, in _serve_db self.registry = Registry(self.db).check_signaling() File "/home/odoo/src/odoo/odoo/modules/registry.py", line 89, in __new__ return cls.new(db_name) File "<decorator-gen-16>", line 2, in new File "/home/odoo/src/odoo/odoo/tools/func.py", line 87, in locked return func(inst, *args, **kwargs) File "/home/odoo/src/odoo/odoo/modules/registry.py", line 110, in new odoo.modules.load_modules(registry, force_demo, status, update_module) File "/home/odoo/src/odoo/odoo/modules/loading.py", line 481, in load_modules processed_modules += load_marked_modules(env, graph, File "/home/odoo/src/odoo/odoo/modules/loading.py", line 366, in load_marked_modules loaded, processed = load_module_graph( File "/home/odoo/src/odoo/odoo/modules/loading.py", line 196, in load_module_graph model_names = registry.load(env.cr, package) File "/home/odoo/src/odoo/odoo/modules/registry.py", line 267, in load model = cls._build_model(self, cr) File "/home/odoo/src/odoo/odoo/models.py", line 720, in _build_model raise TypeError("Model %r does not exist in registry." % name) TypeError: Model 'x_project_task_worksheet_template_13' does not exist in registry.

CONFIGURATION OF MODULE

{

    'name': 'Plantillas Personalizadas',

    'version': '1.0',

    'description': 'Aplicación que guardas las plantillas para la aplicación servicio externo',

    'summary': 'Plantillas Servicio Externo',

    'license': 'LGPL-3',

    'depends': ['industry_fsm_report'],

    'data': [

    'views/worksheet_template_views.xml',

    ],

}

from odoo import models, fields, _


class PlantillaTest(models.Model):

    _inherit = 'x_project_task_worksheet_template_13'


    barra_estados = fields.Selection([

        ('v_fallida', 'Visita Fallida'),

        ('ats', 'Llenar ATS'),

        ('ta', 'Llenar trabajo en alturas'),

        ('a_fallida', 'Actividad Fallida'),

        ('informe', 'Llenar reporte'),

        ('check_list', 'Lista de Chequeo'),

        ('fin', 'Informes llenos'),

    ], string="Estado", default='v_fallida', readonly=True)


 I will really appreciate your help on this issue,

0
Avatar
Ignorer
Arnaldo Angulo
Auteur

Hello, thank you so mucho for your answer, I did implement the changes and the error is not appearing, but the fields are not being agrregated into the model

Avatar
D Enterprise
Meilleure réponse

Hii,

You must define a base model for x_project_task_worksheet_template_13 before inheriting it.

Update your Python file like this:

from odoo import models, fields # STEP 1: Define base model (required if created via Studio or XML only) class XProjectTaskWorksheetTemplate13 (models.Model): _name = 'x_project_task_worksheet_template_13' _description = 'Plantilla Test' name = fields.Char( "Nombre" ) ​​# Minimum one field # STEP 2: Your custom extension class PlantillaTest (models.Model): _inherit = 'x_project_task_worksheet_template_13' barra_estados = fields.Selection([ ( 'v_fallida' , 'Visita Fallida' ), ( 'ats' , 'Llenar ATS' ), ( 'ta' , 'Llenar trabajo en alturas' ), ( 'a_fallida' , 'Actividad Fallida' ), ( 'informe' , 'Llenar reporte' ), ( 'check_list' , 'Lista de Chequeo' ), ( 'fin' , 'Informes llenos' ), ], string= "Estado" , default= 'v_fallida' , readonly= True )

I hope it is usefull

0
Avatar
Ignorer
Arnaldo Angulo
Auteur

Hello, thank you so mucho for your answer, I did implement the changes and the error is not appearing, but the fields are not being agrregated into the model

D Enterprise

Hiii,
Add the Field to the Form View
You also need to ensure the new field barra_estados is added to the view so it’s accessible in the UI. In worksheet_template_views.xml, add this field:

views/worksheet_template_views.xml:

<odoo>
<record id="view_worksheet_template_form" model="ir.ui.view">
<field name="name">worksheet.template.form</field>
<field name="model">x_project_task_worksheet_template_13</field>
<field name="arch" type="xml">
<form string="Plantilla Test">
<sheet>
<group>
<field name="name"/> <!-- Existing field -->
<field name="barra_estados"/> <!-- Your new field -->
</group>
</sheet>
</form>
</field>
</record>
</odoo>
Update the Module in Odoo
After all the changes, update your module to ensure the new model fields and views are applied:

Using Odoo Shell:
odoo -d your_database_name -u your_module_name

i hope it is usefull

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é
classical inheritance
development inheritance
Avatar
Avatar
1
oct. 24
3594
The different "openerp model inheritance" mechanisms: what's the difference between them, and when should they be used ? Résolu
development inheritance
Avatar
Avatar
Avatar
2
août 23
46940
How to extend an existing class and include social newtork features in the sub class
inheritance inherit
Avatar
Avatar
3
juil. 18
5848
How to import method from another module?
development inheritance
Avatar
Avatar
1
mars 15
12613
Help with inherited view
development inheritance account.tax
Avatar
Avatar
1
avr. 24
3693
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