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

populate wizard form dynamically

Suscribirse

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

Se marcó esta pregunta
wizard
6 Respuestas
22301 Vistas
Avatar
Drew

I'm relatively new to OpenERP development but I think I can gain much understanding if I could get a rough example of how to do the following (in OpenERP version 7):

I created a wizard. In a view I have a button to open the wizard form:

This opens up correctly the window (dialog) and I can call methods to do stuff from buttons within this wizard form defined in the wizard object.

I want to be able to populate the form view dynamically using records from another model (and then do other stuff upon saving form).

For example in "purchase orders" and for a specific purchase order, I want to get all the products linked to this purchase order (that would be displayed in the tree view).

If I have the button (to launch window/dialog form) placed within the view of the purchase order, the main thing I would like to be able to do is populate the form for the given purchase order with the products for this purchase order.

My question is how do I instantiate the wizard form with the id of the current purchase order, then access the product items for this purchase order.

I've looked into other examples but with older version of OpenERP.

Any help/pointers is appreciated!

1
Avatar
Descartar
Avatar
Brett Lehrer
Mejor respuesta

The ID of the record you're coming from is in the context, context['active_id']. You'll also have context['active_ids'], which is a list of the IDs you came from, which is used if you're coming from a list where more than one record is checked.

To load those in automatically, add a field for that ID (or those IDs) and set a default value in the wizard to a function that reads context for the active_id or active_ids. Something like:

def _get_active_id(self, cr, uid, ids, context=None):
    if context is None: context = {}
    return context.get('active_id', False)

_columns = {
    'purchase_id': fields.many2one('purchase.order', 'Purchase Order'),
}

_defaults = {
    'purchase_id': _get_active_id,
}

def onchange_purchase(self, cr, uid, ids, purchase_id, context=None):
    if context is None: context = {}
    res = {}
    if purchase_id:
        # Do extra stuff here now that you have the ID loaded
        # res['field_name'] = important_value
    return {'value': res}

An alternative method you might want to use instead is to create the wizard record FIRST, and then load the popup with all of the values in place (there are some technical reasons why that's nice but I'll let you find out why). Your button from the original form would be an object type rather than an action type, and the function it calls would be something like this:

def open_wizard(self, cr, uid, ids, context=None):
    if context is None: context = {}
    # generic error checking
    if not ids: return False
    if not isinstance(ids, list): ids = [ids]

    wizard_id = self.pool['my.wizard'].create(cr, uid, vals={'purchase_id':ids[0]}, context)
    return {
        'name': 'Purchase Wizard',
        'view_type': 'form',
        'view_mode': 'form',
        'res_model': 'my.wizard',
        'res_id': wizard_id,
        'type': 'ir.actions.act_window',
        'target': 'new',
        'context': context,
    }
2
Avatar
Descartar
Drew
Autor

great, thank you. I will get back on my results.

Slim BHIRI

This solutions don't work for me.

Salim Rahal

it works in my context. Odoo8. Opening a wizard with default values - customer payment.

Avatar
Salim Rahal
Mejor respuesta

This solution works in my context: Custome rpayment, add a button that opens a wizard. This wizard have default values set in place when you have instantiate the wizrd.

0
Avatar
Descartar
Avatar
Omar Torres
Mejor respuesta

Maybe this solution can help you, work for odoo 11 ...


XML file:

<record id="purchase_wizard_server_action" model="ir.actions.server">
    <field name="name">Purchase Wizard</field>
    <field name="type">ir.actions.server</field>
    <field name="model_id" ref="model_purchase_wizard"/>
    <field name="state">code</field>
    <field name="code">action = env['purchase.wizard'].create_wizard()</field> 
</record>
<menuitem id="purchase_wizard_menu" name="Purchase Wizard" action="purchase_wizard_server_action"/>


Model file:

from odoo import fields, models, api 
class PurchaseWizard(models.TransientModel):
    _name = 'purchase.wizard'
    @api.multi
    def create_wizard(self):

        wizard_id = self.create({})

        # YOUR POPULATION CODE HERE

        return {
            'name': 'Purchase Wizard',
            'view_type': 'form',
            'view_mode': 'form',
            'res_model': 'purchase.wizard',
            'res_id': wizard_id.id,
            'type': 'ir.actions.act_window',
            'target': 'new',
            'context': self.env.context
        }


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
Load currnet record values when calling wizard Resuelto
wizard
Avatar
Avatar
1
dic 22
4201
What is wizard ? Resuelto
wizard
Avatar
Avatar
Avatar
3
nov 23
34227
Close wizard in onchange
wizard
Avatar
Avatar
4
jul 25
5566
IntegrityError: null value in column "res_model" violates not-null constraint Resuelto
wizard
Avatar
Avatar
2
dic 23
18556
How To call wizard from python in odoo10 Resuelto
wizard
Avatar
Avatar
5
dic 23
19001
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