Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Artificial Intelligence
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Issues industry_fsm_report inherit

Subscribe

Get notified when there's activity on this post

This question has been flagged
developmentinheritanceissuesinheritissue
1 Reply
1652 Views
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
Discard
Arnaldo Angulo
Author

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
Best Answer

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
Discard
Arnaldo Angulo
Author

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

Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
classical inheritance
development inheritance
Avatar
Avatar
1
Oct 24
3657
The different "openerp model inheritance" mechanisms: what's the difference between them, and when should they be used ? Solved
development inheritance
Avatar
Avatar
Avatar
2
Aug 23
47015
How to extend an existing class and include social newtork features in the sub class
inheritance inherit
Avatar
Avatar
3
Jul 18
5915
How to import method from another module?
development inheritance
Avatar
Avatar
1
Mar 15
12646
Help with inherited view
development inheritance account.tax
Avatar
Avatar
1
Apr 24
3723
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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