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
    • Información
    • 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

Odoo 8: how to prevent wizard from closing after a new one is opened?

Suscribirse

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

Se marcó esta pregunta
wizardpython2.7odoo8
2 Respuestas
6924 Vistas
Avatar
SlyK

I am trying to create a wizard, launched from a button in res.partner's form view, which has two buttons on its footer (besides the 'cancel' one): the first one launches a method that does stuff inside the related res.partner record (but it's not important to the main problem); the second one opens the email form with precompiled values (again, from the related res.partner's recordset values).

My question is: how do I prevent the wizard from closing when I click on the "Send email" button which opens the email form, so that (after I've finished with email itself) I can go back to the wizard and click the "Execute action" button?


I am using Odoo 8 with Python 2.7.14.


My code:

1- the button that launches the wizard (from res.partner):

    <button string="Execute action" type="action"
        name="%(execute_action_wizard)d"
        attrs="{'invisible': [('action_required', '=', False)]}"
        class="oe_highlight"/>


2- the action that launches the wizard:

    <record id="execute_action_wizard" 
        model="ir.actions.act_window">
        <field name="name">Execute action</field>
        <field name="res_model">
            account.payment.action.wizard</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" 
            ref="execute_action_wizard_form_view"/>
        <field name="target">new</field>
    </record>


3- the buttons within the wizard itself:

    <button name="compute_execute_action"
        string="Execute action"
        class="oe_highlight"
        type="object"/>
    <button name="open_form_send_mail"
        string="Send email"
        class="oe_highlight"
        type="object"
        attrs="{'invisible':[('send_mail', '=', False)]}"/>


4- email form method: 

    @api.multi
    def open_form_send_mail(self):
        self.ensure_one()
        template_id = self.email_template_id.id
        partner_id = self._context['active_ids'][0]
        compose_form_id = self.env.ref(
            'mail.email_compose_message_wizard_form', False).id
        ctx = dict(
            default_res_id=partner_id,
            default_use_template=True,
            default_template_id=template_id or False,
            default_composition_mode='comment',
            default_model='res.partner',
            default_partner_ids=[(6, 0, [partner_id])],
            default_subject=_(u"Client email")
            )
        return {
            'name': _('Compose Email'),
            'context': ctx,
            'type': 'ir.actions.act_window',
            'target': 'new',
            'res_model': 'mail.compose.message',
            'views': [(compose_form_id, 'form')],
            'view_id': compose_form_id,
            'view_mode': 'form',
            'view_type': 'form',
            'flags': {'action_buttons': True},
        }


Please help me out. This is driving me crazy.

0
Avatar
Descartar
Avatar
Khubab Shams
Mejor respuesta

you can open just one form as a pop up, just change the first form action target to "current", it will be still open if another form popped up.

<record id="execute_action_wizard" 
        model="ir.actions.act_window">
        <field name="name">Execute action</field>
        <field name="res_model">
            account.payment.action.wizard</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" 
            ref="execute_action_wizard_form_view"/>
        <field name="target">current</field>
    </record>

0
Avatar
Descartar
Avatar
Rakesh Vadeghar
Mejor respuesta

instead opening a wizard (form view) try to open form view directly


inXML
<button string="Execute action" name="execute_action_wizard" attrs="{'invisible': [('action_required', '=', False)]}"
        class="oe_highlight"/>
def execute_action_wizard(self):
view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'execute_action_wizard')
return {
'name': _('form name'),
'view_type': 'form',
'view_mode': 'form',
'view_id': [view_id],
'res_model': 'res.partner',
'type': 'ir.actions.act_window',
'nodestroy': True,
'target': 'current',
'res_id': self._ids,
}

0
Avatar
Descartar
¿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
Pivot view does not display in odoo 8 Resuelto
python2.7 odoo8
Avatar
Avatar
1
oct 22
6221
How to call wizard in create method in odoo-11 ?
wizard python2.7 odoo11
Avatar
Avatar
1
ago 20
9541
How to create a recursive function in Python to create a dict which maps Odoo 8 relational field records?
python2.7 recursion dictionary odoo8
Avatar
Avatar
1
ene 18
16351
Launch wizard after selecting elements in treeView
wizard listview launch odoo8
Avatar
Avatar
1
sept 17
6548
Odoo 8 - wizard cannot sent back editable input after submit
wizard odooV8 odoo8.0 odoo8
Avatar
1
ene 17
4325
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