Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Open record in new tab

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
viewsviewnewtab
6 Risposte
28281 Visualizzazioni
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
Abbandona
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
Risposta migliore

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
Abbandona
Avatar
Cyril Gaspard (GEM)
Risposta migliore

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
Abbandona
Lucio
Autore

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
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
OpenERP 7 - Custom view for a especific user not working
views view
Avatar
1
giu 21
4552
Wrong object when creating a dynamic view in OpenERP
views fields view
Avatar
Avatar
2
set 23
9225
Is it possible to redirect user an external url & open view at the same function ?
views view return
Avatar
0
apr 20
4761
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
8298
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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