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

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
6918 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.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Pivot view does not display in odoo 8 Resuelto
python2.7 odoo8
Avatar
Avatar
1
oct 22
6215
How to call wizard in create method in odoo-11 ?
wizard python2.7 odoo11
Avatar
Avatar
1
ago 20
9534
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
16347
Launch wizard after selecting elements in treeView
wizard listview launch odoo8
Avatar
Avatar
1
sept 17
6538
Odoo 8 - wizard cannot sent back editable input after submit
wizard odooV8 odoo8.0 odoo8
Avatar
1
ene 17
4316
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