Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita 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
  • Proyectos
  • 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

Open record in new tab

Suscribirse

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

Se marcó esta pregunta
viewsviewnewtab
6 Respuestas
28306 Vistas
Avatar
Lucio

When checking a tree view I want to be able to double click in a record and open the form view in a new tab.

Let's assume my model is something like:

class new_model(osv.osv):
    _name= model.name
    ...
new_model()

I tried this but it is not working!

<record id="action_view_model_new_tab" model="ir.actions.act_window">
  <field name="name">Open New Tab</field>
  <field name="type>ir.actions.act_window</field>
  <field name="res_model>model.name</field>
  <field name="view_type">form</field>
  <field name="view_mode">tree,form</field>
</record>
<record id="ir_open_model_new_tab" model="ir.values">
  <field name="key2">tree_but_open</field>
  <field name="model">model.name</field>
  <field name="name">Open in New Tab</field>
  <field name="value" eval="'ir.actions.act_window,+str(ref(action_view_model_new_tab))/>
  <field name="object>True</field>
</record>

ADDED INFO:

I also tried doing this:

<record id="action_view_model_tree" model="ir.actions.act_window">
  <field name="name">Open Tree View</field>
  <field name="type>ir.actions.act_window</field>
  <field name="res_model>model.name</field>
  <field name="view_type">form</field>
  <field name="view_mode">tree</field>
</record>
<record id="action_view_model_new_tab" model="ir.actions.act_window">
  <field name="name">Open New Tab</field>
  <field name="type>ir.actions.act_window</field>
  <field name="res_model>model.name</field>
  <field name="view_type">form</field>
  <field name="view_mode">form</field>
  <field name="target">new</field>
</record>
<record id="ir_open_model_new_tab" model="ir.values">
  <field name="key2">tree_but_open</field>
  <field name="model">model.name</field>
  <field name="name">Open in New Tab</field>
  <field name="value" eval="'ir.actions.act_window,+str(ref(action_view_model_new_tab))/>
  <field name="object>True</field>
</record>

Assuming that there is a way to open the tree view (e.g. a menu item or something else). But doing this, has the effect that the double click causes a refresh of the tree view and nothing else. And also, the form button is not clickable.

1
Avatar
Descartar
Cyril Gaspard (GEM)

Hi, thanks for th vote and edited answer for url, but now I have a bug on my rights to mark my answer as correct, see : http://help.openerp.com/question/4051/bug-on-this-forum-right-lost-for-function-mark-after-moderation-of-a-user-answer/

Avatar
Ray Carnes
Mejor respuesta

Create a button that calls an action like this (v10):


WWW = the model/document you want to open

XXX = the menu you want to call

YYY = the action that you want to call

ZZZ = the human readable name of the model/document


Hint: Check the URL that is shown when you open the model/document in the existing tab to see the values for XXX, YYY and ZZZ.


@api.multi

        def action_open_new_tab(self):
                for rec in self:
                        base_url = self.env['ir.config_parameter'].get_param('web.base.url')
                        record_url = base_url + "/web#id=" + str(self.id) + "&view_type=form&model=WWW&menu_id=XXX&action=YYY"
                client_action = {
                        'type': 'ir.actions.act_url',
                        'name': "ZZZ",
                        'target': 'new',
                        'url': record_url,
                }
                return client_action
2
Avatar
Descartar
Avatar
Cyril Gaspard (GEM)
Mejor respuesta

Hi,

in an action definition, target set to new open the view in a new window :

<field name="target">new</field>

but this is for the action which dispaly the view tree or form.

I think you should add a button in tree line which will open a new window using a function.

you have an example here which open an url but to modify naturally (add the beginning of url h t t p : / /, I can't add actually link url because I have not enaugh Karma):

http://forum.openerp.com/forum/topic29798.html

Bye

3
Avatar
Descartar
Lucio
Autor

Thank for your answer. I am aware of the use of target>new. Moreover, I tried doing what I added to my question but it does not work either! It seems then, that it is not possible to do what I want? Open with the double click a new window/tab? I do not like adding a button to the view just for this! Anyway, thanks again for the answer!

Cyril Gaspard (GEM)

Hi, I think to do what you want you should be obliged to create a new type of tree view in web module ..., or try to overwrite action which open the form, but I don't no where. If somebody knows ... Bye

Avatar
Kevin McMenamin
Mejor respuesta

just found this - sort of works

in the action code, set "target": "_blank"

It opens the action in a normal odoo window and leaves the source record in the breadcrumb trail

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

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

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
OpenERP 7 - Custom view for a especific user not working
views view
Avatar
1
jun 21
4565
Wrong object when creating a dynamic view in OpenERP
views fields view
Avatar
Avatar
2
sept 23
9239
Is it possible to redirect user an external url & open view at the same function ?
views view return
Avatar
0
abr 20
4776
Display eternal duration in Gantt view (f. e. without end date)
views xml view
Avatar
0
mar 15
2597
Create a notice/tutorial for first time users in custom module?
views view notifications
Avatar
Avatar
Avatar
Avatar
3
mar 15
8325
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • 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 estar 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