Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Odoo 8 - Launch a ir.actions.act_window from a python method?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
buttonwindow_actionodooodooV8odoo8
3 Răspunsuri
27182 Vizualizări
Imagine profil
Pepiño

Is it possible to launch a ir.actions.act_window from a Python method of a model?.

For instance, I have implemented a Session model which represents a course session (I also have a Course model). Also, I have a openacademy.xml where I have defined the form view to open the session form view.


<record model="ir.ui.view" id="session_form_view">
<field name="name">session.form</field>
<field name="model">openacademy.session</field>
<field name="arch" type="xml">
<form>
<header>
<button name="draft" type="workflow"
string="Reset to draft"
states="confirmed,done"/>
<button name="confirm" type="workflow"
string="Confirm" states="draft"
class="oe_highlight"/>
<button name="done" type="workflow"
string="Mark as done" states="confirmed"
class="oe_highlight"/>
<button type="object"
name="my_method"
string="New course"/>

<field name="state" widget="statusbar"/>
</header>
<sheet>
<group string="General">
<field name="name" string="Session name"/>
<field name="course_id" string="Course"/>
<field name="instructor_id" string="Instructor"/>
</group>
<group string="Management">
<field name="start_date" string="Start date"/>
<field name="active" string="Active"/>
<field name="duration" string="Duration (in days)"/>
<field name="seats"/>
<field name="percent_taken_seats" widget="progressbar"/>
</group>
<label for="attendees"/>
<field name="attendees"/>
</sheet>
</form>
</field>
</record>

The relevant part of the above code is the following:

<button type="object" name="my_method" string="New course"/>

When I click on this button a method 'my_method' from the Session model (class Session) is called.

class Session(models.Model):
...
@api.one
def my_method(self):
return {
'type': 'ir.actions.act_window',
'res_model': 'openacademy.course',
'view_type': 'form',
'view_mode': 'form',
'target': 'new',
}

This method return a dictionary containing the differents keys and values of a window action, but it doesn't work in Odoo 8. When I click on the button "New course", my_method is executed but a Course form view is not opened to create a new Course record.

I don't know if it is possible to do this in Odoo version 8, or if my_method must return something more.

EDIT:

Thanks to the @Atchuthan response (profile url: https://www.odoo.com/es_ES/forum/help-1/user/92610), the modified version of my method my_method from the Session model is the following:

class Session(models.Model):
...
@api.multi
def my_method(self):course_form = self.env.ref('openacademy.course_form_view', False) return { 'name': 'New Course', 'type': 'ir.actions.act_window', 'res_model': 'openacademy.course', 'view_type': 'form', 'view_mode': 'form', 'target': 'new', 'views': [(course_form.id, 'form')], 'view_id': 'course_form.id', 'flags': {'action_buttons': True}, }

2
Imagine profil
Abandonează
Pepiño
Autor

Thank you very much @Atchuthan. You have my positive vote. Now, the problem is when the course form view pop-up window is opened and I create a new course, the form pop-up window doesn't dissapear. After creating a course in this pop-up window I would like to go back to the form view course (a step back). Is it possible?.

Imagine profil
Atchuthan - Technical Consultant, Sodexis Inc
Cel mai bun răspuns

The problem is due to the use of @api.one.  If you use @api.multi, then you could open any wizard or so.    

    @api.multi
def my_method(self):
return {
'type': 'ir.actions.act_window',
'res_model': 'openacademy.course',
'view_type': 'form',
'view_mode': 'form',
'target': 'new',
}

Check an example available at Account module in this link.
4
Imagine profil
Abandonează
Pepiño
Autor

Thank you very much @Atchuthan. You have my positive vote. Now, the problem is when the course form view pop-up window is opened and I create a new course, the form pop-up window doesn't dissapear. After creating a course in this pop-up window I would like to go back to the form view course (a step back). Is it possible?.

Atchuthan - Technical Consultant, Sodexis Inc

When you click on a button available in the pop-up window, you need to return {'type': 'ir.actions.act_window_close'}

Imagine profil
Fernando Gomes
Cel mai bun răspuns

Hello all.


I am having the same problem. I can generate the popup but the cancel button doesn't do anything and the save button saves the new record but doesn't close the window.

Since I am using the standard popup generated by Odoo I don't have access to the buttons's python code to add the return type ir.actions.act_window_close ...


Any hint on how to make cancel close the popup window and to use "Save & Close" instead of the "Save" button?


Thanks,


Fernando

1
Imagine profil
Abandonează
Imagine profil
Safiullah Danishjo
Cel mai bun răspuns

i have the same problem in odoo 17. anyone help please how to do it in odoo 17?

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to integrate facebook and twitter in odoo
odoo odooV8 odoo8
Imagine profil
Imagine profil
Imagine profil
2
mai 25
11039
Send auto mail (without popping up any window) after "Confirm Order" button pressed in Odoo 8
odoo odooV8 odoo8.0 odoo8
Imagine profil
Imagine profil
1
feb. 18
5040
Which field launches an onchange of 2 fields
onchange odoo odooV8 odoo8.0 odoo8
Imagine profil
Imagine profil
Imagine profil
Imagine profil
5
apr. 19
9592
Wkhtmltopdf failed (error code: -9). Message: Odoo 8
wkhtml2pdf wkhtmltopdf odoo odooV8 odoo8
Imagine profil
Imagine profil
Imagine profil
2
ian. 19
7906
Return a wizard
wizard odoo odooV8 odoo8.0 odoo8
Imagine profil
Imagine profil
1
mai 16
8999
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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