Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How do I add a new menuitem to the MRP menu?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
odoo10e
3 Respostes
6404 Vistes
Avatar
Daniel Medina

I've trying so hard to figure out on how to add a new menuitem to my MRP module, via a custom module I am developing


The idea of my module is to inherit MRP and add a new menuitem that has a Wizard and Generaters a PDF.


But can't even get inheritance to work, any ideas?



0
Avatar
Descartar
Ray Carnes

Can you post what you have tried? What do you mean "can't even get inheritance to work"? We can guess, but it is better if you share.

Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

To add a menu item under a menu is an easy task what you have to do is define and the new menu and add parent attribute, and give parent="mrp_menu_id" so that your new menu will be created under the MRP.

Along with the menu you have to define the action of the menu, ie what has to be take place upon clicking the menu, if it is not given the menu will not be visible .

<menuitem id="id_for_new_menu" parent="id_of_parent" name="String to display in menu"
action="action_on_clicking_menu/>

This is how you can define a new menu, other than this you can use attributes such as groups and sequence along with the above.

To get the parent id of a menu item, what you can do is activate developer mode and go to Settings -> Technical -> User Interface -> Menu Items -> Search the menu, open it , click on lady debugger button(button near logged in user name) and click on View Meta data, in the opening wizard, you can see the id of the menu, ie XML ID

...


Thanks

3
Avatar
Descartar
Avatar
Daniel Medina
Autor Best Answer

Thanks for your answers, I've kinda advanced my code and I get the following error (Model not found):

File "/opt/odoo/odoo-server/odoo/models.py", line 1083, in _validate_fields
    raise ValidationError("%s\n\n%s" % (_("Error while validating constraint"), tools.ustr(e)))
ParseError: "Error mientras se validavan las restricciones

Modelo no encontrado: menu.mrp.test.wizard

Error de contexto:
Vista `Menu MRP`
[view_id: 3532, xml_id: n/a, model: menu.mrp.test.wizard, parent_id: n/a]
None" while parsing /opt/odoo/custom/migsamx/mrp_menu/wizard/mrp_menu_wizard_view.xml:4, near
<record id="oee_report_wizard" model="ir.ui.view">
        <field name="name">Menu MRP</field>
        <field name="model">menu.mrp.test.wizard</field>
        <field name="arch" type="xml">
            <form>
                <group name="date_range">
                    <field name="date_range_id"/>
                </group>
                <group name="date_fields">
                    <field name="date_from"/>
                    <field name="date_to"/>
                </group>
            </form>
        </field>
    </record>

models folder:

__init__.py

# -*- coding: utf-8 -*-

from . import mrp

mrp.py

# -*- coding: utf-8 -*-

from odoo import models


class MrpMenu(models.Model):
_inherit = 'mrp.workcenter'

views folder:

mrp_view.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="view_mrp_specific_form">
<field name="name">mrp.workcenter.form.inherit</field>
<field name="inherit_id" ref="mrp.mrp_workcenter_view"/>
<field name="model">mrp.workcenter</field>
<field name="type">form</field>
</record>
</odoo>

wizard folder:

__init__.py

# -*- coding: utf-8 -*-

from . import mrp_menu_wizard

mrp_menu_wizard.py

# -*- coding: utf-8 -*-

from odoo import models, fields, api


class MenuWizardTest(models.TransientModel):

_name = "menu.mrp.test.wizard"
_description = "OEE Reports"

date_from = fields.Date(Required=True)
date_to = fields.Date(Required=True)

date_range_id = fields.Many2one(
comodel_name='date.range',
string='Date range'
)

@api.onchange('date_range_id')
def onchange_date_range_id(self):
self.date_from = self.date_range_id.date_start
self.date_to = self.date_range_id.date_end

mrp_menu_wizard_view.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>

<record id="oee_report_wizard" model="ir.ui.view">
<field name="name">Menu MRP</field>
<field name="model">menu.mrp.test.wizard</field>
<field name="arch" type="xml">
<form>
<group name="date_range">
<field name="date_range_id"/>
</group>
<group name="date_fields">
<field name="date_from"/>
<field name="date_to"/>
</group>
</form>
</field>
</record>

<act_window id="action_menu_test_wizard"
name="OEE Reports"
res_model="menu.mrp.test.wizard"
view_type="form"
view_mode="form"
view_id="oee_report_wizard"
target="new" />

</odoo>

mrp_menu (main module folder):

__init__.py

# -*- coding: utf-8 -*-
#Made by Daniel Medina

from . import models
from . import wizard

__manifest__.py

<?xml version="1.0" encoding="utf-8"?>
<odoo>

<menuitem
parent="mrp.menu_mrp_reporting"
id="menu_oee_reports"
name="OEE Reports"
groups="mrp.group_mrp_manager"
/>

<menuitem
parent="menu_oee_reports"
action="action_menu_test"
id="menu_oee_wizard"
sequence="10"
/>

</odoo>

mrp_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>

<menuitem
parent="mrp.menu_mrp_reporting"
id="menu_oee_reports"
name="OEE Reports"
groups="mrp.group_mrp_manager"
/>

<menuitem
parent="menu_oee_reports"
action="action_menu_test"
id="menu_oee_wizard"
sequence="10"
/>

</odoo>
0
Avatar
Descartar
Daniel Medina
Autor

manifest file:

# -*- coding: utf-8 -*-

{

'name': "mrp_menu",

'summary': """

INHERITANCE TEST""",

'description': """

INHERITANCE TEST.

""",

'author': "Daniel Medina",

'website': "http://www.migsamx.com",

'category': 'Uncategorized',

'version': '0.1',

'depends': [

'mrp',

'date_range',

'report',

],

'data': [

"views/mrp_view.xml",

"wizard/mrp_menu_wizard_view.xml",

"mrp_menu.xml",

],

'installable': True,

'application': True,

'auto_install': False,

'license': 'AGPL-3',

}

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Sale order Total amount to three decimal places ? Solved
odoo10e
Avatar
Avatar
Avatar
2
de gen. 25
16416
Odoo 10 Calendar view with multiple lines
odoo10e
Avatar
0
d’abr. 20
1749
Odoo 10 Python Sockets
odoo10e
Avatar
0
de febr. 20
6948
odoo error while validating constraint, what to do?
odoo10e
Avatar
Avatar
2
de jul. 17
10897
Odoo10-Enterprise-Survey-Matrix-Text
odoo10e
Avatar
0
d’abr. 17
3190
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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