Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Assign action menu item to specific tree view

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
actionmenuodoo9odoo10
7 Respuestas
22927 Vistas
Avatar
ged

Is it possible to assign custom menu action to specific treeview view? Im trying to archieve that i want to have a few different tree views for stock.moves model, and i want a custom action to each of the tree view, but i dont want show all actions in all custom views. So it should look like that:

one model - stock.moves

1.custom tree view + custom action 1

2.custom tree view + custom action 2

3.custom tree view + custom action 3

With the current Odoo design all i can get is:

1.custom tree view + custom action 1 + custom action 2 + custom action 3

2.custom tree view + custom action 1 + custom action 2 + custom action 3

3.custom tree view + custom action 1 + custom action 2 + custom action 3

I thought about a custom button, but its not possible to create one in a tree view, like in form view...Or maybe there are othe work arounds for this situation? thank you

1
Avatar
Descartar
Avatar
ged
Autor Mejor respuesta

Hello Vishal, if you will add button like this, button will appear on each line, but its not what im looking for. I need a button in a action menu, after you select records, and i need different action on a different treeview but same model. I have tried your suggestion on view_move_tree in stock module, and it gives me button in line.

1
Avatar
Descartar
Vishal Kapuriya

Okay, you can add button in more option in tree view. from where you can call your python method.

Ex.

<record id="open_invoice" model="ir.actions.server">

<field name="name">Open Invoice</field>

<field name="model_id" ref="account.model_account_invoice"/>

<field name="state">code</field>

<field name="code">action = self.open_invoice_from_list(cr, uid, context.get('active_ids', []), context=context)</field>

</record>

<record id="action_open_invoice" model="ir.values">

<field eval="'client_action_multi'" name="key2"/>

<field eval="'account.invoice'" name="model"/>

<field name="name">Open Product</field>

<field eval="'ir.actions.server,%d'%open_invoice" name="value"/>

</record>

here open_invoice_from_list is python method for account.invoice.

i hope this is helpful.

ged
Autor

Yes i know that is possible to add a button in an Action or More menu. But lets say you 3 custom tree views in a stock.move model, if you will add a menu in Action or More, it will appear in all custom views of stock.move model. What i want, is to add a menu item in More menu in one custom tree view menu, not in all.

Avatar
Jim At Your Service
Mejor respuesta

I wrote a module 'web_menu_action_if' to accomplish this task in Odoo 9.0.

__openerp__.py

#---------------------------------------------------------------------------------------------
# addons/web_menu_action_if/__openerp__.py
#
# 13.0.7.5.16-t1 jimays
# code--129a-0131-3bbbb54b-8e81-ad5c3982c542--13.0.7.5.16-t1--2.55.04--99.91--RFGkfM=y9Z9IcFW=KgtmZ7
#---------------------------------------------------------------------------------------------
{
'name': 'Web Menu Action If',
'category': 'Hidden',
'author': '©INTER-DIMENSIONAL-SPACE-PORT',
'website': 'http://inter-dimensional-space-port.net',
'description': """
So you can have items on the Action menu for a model only for selected views.

Makes any action with xml_id starting with 'action_if_xyz_then_' or 'action_if_not_xyz_then_'
invisible unless the context has or does not have 'action_if_xyz_then': 1.

For example, define an action with id="module.action_if_my_view_then_do_something"
and then on your ir.actions.act_window which loads your view, include context="{'action_if_my_view': 1}".

If you want an action to not appear on your view, use id="module.action_if_not_my_view_then_something_else".

Using this mechanism, I was able to make a Payment Transfer view that has certain actions
and have certain other actions only show up on the default Sales Payments and Purchase Payments views.

<record id="action_account_payment_transfers" model="ir.actions.act_window">
<field name="name">Payment Transfers</field>
<field name="res_model">account.payment</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form,graph</field>
<field name="context">{
'default_payment_type': 'transfer',
'actions_if_payment_transfer': 1,
}</field>
<field name="domain">[('payment_type', '=', 'transfer')]</field>
<field name="view_id" ref="view_account_payment_transfer_tree"/>
</record>

<record id="actions_if_payment_transfer_then_unreconcile_and_cancel" model="ir.actions.server">
...
</record>

<record id="actions_if_not_payment_transfer_then_create_journal_entry_in_lieu_of_invoice" model="ir.actions.server">
...
</record>
""",
'version': '1.0',
'depends': ['web'],
'data': [
'views/assets.xml',
],
}

views/assets.xml

<openerp>
<data>
<template id="web_menu_action_if_assets_js" name="Web Menu Action If JS Assets" inherit_id="web.assets_backend">
<xpath expr="script[last()]" position="after">
<script type="text/javascript" src="/web_menu_action_if/static/src/js/web_menu_action_if.js"></script>
</xpath>
</template>
</data>
</openerp>

static/src/js/web_menu_action_if.js

//---------------------------------------------------------------------------------------------
// addons/web_menu_action_if/static/src/js/web_web_menu_action_if.js
//
// 13.0.7.5.16-t1 jimays
// code--129a-0131-5569d629-9db5-6bbf278af157--13.0.7.5.16-t1--2.59.35--99.03--HcOEijfrP025AMkdHahOoh
//---------------------------------------------------------------------------------------------

// gratitude addons/web/static/src/js/widgets/sidebar.js
// gratitude https://www.odoo.com/forum/help-1/question/how-to-get-context-value-from-js-to-python-function-in-odoo-91728
// gratitude https://stackoverflow.com/questions/9882284/looping-through-array-and-removing-items-without-breaking-for-loop
// gratitude https://www.w3schools.com/jsref/jsref_includes.asp
// gratitude https://stackoverflow.com/questions/47049062/non-greedy-regular-expression-for-javascript
// gratitude https://www.w3schools.com/jsref/jsref_substr.asp
// gratitude https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec

odoo.define('web.action_if', function (require) {
'use strict';

var Sidebar = require('web.Sidebar');

var re_actions_if = new RegExp('^[^.]+\.(actions_if_.*?)_then_.+$');

true || console.log('starting web_menu_action_if.js');

Sidebar.include({
add_toolbar: function(toolbar) {
var self = this;

var context = self.getParent().dataset.get_context().eval();
true || console.log('context: ' + JSON.stringify(context));

_.each(['print','action','relate'], function(type) {
var items = toolbar[type];
if (items) {

// Make any action with xml_id starting with 'action_if_xyz_then_' or 'action_if_not_xyz_then_'
// invisible unless the context has or does not have 'action_if_xyz_then': 1.
for (var i = items.length-1; i >= 0 ; i--) {
var matches = re_actions_if.exec(items[i].xml_id);
var actions_if = matches ? matches[1] : '';
var flip = (actions_if.indexOf('actions_if_not') == 0);
if (flip) {
actions_if = 'actions_if' + actions_if.substr(14);
}
var visible = (!actions_if
|| (!flip && context[actions_if]) || (flip && !context[actions_if]));

true || console.log(
'item xml_id: ' + items[i].xml_id
+ ', actions_if: ' + actions_if + ', flip: ' + flip
+ ', context[actions_if]: ' + context[actions_if] + ', visible: ' + visible);

if (!visible) {
true || console.log('action invisible: ' + items[i].xml_id);
items.splice(i, 1);
}
}

// Repeat code from core web module to install actions in the sidebar.

for (var i = 0; i < items.length; i++) {
items[i] = {
label: items[i]['name'],
action: items[i],
classname: 'oe_sidebar_' + type
};
}
self.add_items(type=='print' ? 'print' : 'other', items);
}
});
},
});

}); // end odoo.define('', function() {

Enjoy!

0
Avatar
Descartar
Avatar
Vishal Kapuriya
Mejor respuesta

I thought about a custom button, but its not possible to create one in a tree view, like in form view...Or maybe there are othe work arounds for this situation?
>>> You can create button tree view and call python method then you can do anything you want.

Ex.

<tree>

     <button name="open_product" type="object" string="Open Product" icon="gtk-go-forward"/>

</tree>

0
Avatar
Descartar
ged
Autor

Hello Vishal, if you will add button like this, button will appear on each line, but its not what im looking for. I need a button in a action menu, after you select records, and i need different action on a different treeview but same model. I have tried your suggestion on view_move_tree in stock module, and it gives me button in line.

Vishal Kapuriya

Okay, you can add button in more option in tree view. from where you can call your python method.

Ex.

<record id="open_invoice" model="ir.actions.server">

<field name="name">Open Invoice</field>

<field name="model_id" ref="account.model_account_invoice"/>

<field name="state">code</field>

<field name="code">action = self.open_invoice_from_list(cr, uid, context.get('active_ids', []), context=context)</field>

</record>

<record id="action_open_invoice" model="ir.values">

<field eval="'client_action_multi'" name="key2"/>

<field eval="'account.invoice'" name="model"/>

<field name="name">Open Product</field>

<field eval="'ir.actions.server,%d'%open_invoice" name="value"/>

</record>

here open_invoice_from_list is python method for account.invoice.

i hope this is helpful.

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
odoo 10 action menu button
action menu odoo10
Avatar
Avatar
1
jun 17
4824
Call view from 'More'/'Action' Menu Resuelto
action menu ir.values odoo10 More-Menu
Avatar
Avatar
4
dic 18
8980
[odoo10] default search for sub-menu
menu odoo10
Avatar
Avatar
2
sept 18
3596
How to show informations hierarchically in views ?
odoo9 odoo10
Avatar
0
jul 17
3467
So difficult to describe franchising situation in Odoo?
odoo9 odoo10
Avatar
0
mar 17
3697
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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