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
    • Conocimientos
    • 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

Pre-fill one2many field from action

Suscribirse

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

Se marcó esta pregunta
one2manyactionso2mdefaultvaluesodoo16features
2 Respuestas
2370 Vistas
Avatar
Lars Kastrup

I have a model Team which has its members stored in a o2m field:

class Team(models.Model):
​_name = 'example.team'
​
​member_ids = fields.One2many(
​ ​comodel_name = 'example.member',
​ ​inverse_name = 'team_id'
)


Team members are represented by their respective model:

class Member(models.Model):
​_name = 'example.member'

​team_id = fields.Many2one('example.team', required = True, ondelete = 'cascade')
​contact_id = fields.Many2one('res.partner', required = True, ondelete = 'cascade')
​membership_fee = fields.Float()
​[...]

        

Now, I want to create a new Team from within an action by opening a Team form view with some of its values pre-filled, including some members:

class Other(models.Model):
​_name = 'example.other'

​def action_create_team(self):
​ ​# Select some contacts which shall be added as members to the new Team below
​ ​contacts = self.env['res.partner'].search([])
​ ​# We cannot create Members from the contacts here because we don't have a team_id yet.
​ ​action = {
​ ​ ​'type':         'ir.actions.act_window',
​ ​ ​'res_model':    'example.team',
​ ​ ​'view_mode':    'form',
​ ​ ​'context':      {
​ ​ ​ ​'default_member_ids': }
​ ​ ​}
​ ​return action


The problem is that I cannot create new Members in the action which I could pass in via the context because there is no team_id yet which is needed to create Member records.

On the other hand, members can be added in the Team form view even before the Team is saved/created so I guess there must be a way...

Any help is greatly appreciated...

0
Avatar
Descartar
Avatar
Lars Kastrup
Autor Mejor respuesta

In fact, I have found another solution in the meantime:

It is possible to provide default values to the Team record to be created via the context like so:

action = {
'type':         'ir.actions.act_window',
'res_model': 'example.team',
'view_mode':    'form',
'context':      {'default_member_ids': contacts.ids}
}

That way, one does not have to create a Team record in advance -- which has the advantage that the new Team record can still be discarded in the form view.

0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

Hi,

Try this:def action_create_team(self):

        contacts = self.env['res.partner'].search([])

        team = self.env['example.team'].create({

        })

               for contact in contacts:

            self.env['example.member'].create({

                'team_id': team.id,

                'contact_id': contact.id,

                # Add any other default values for the Member here

            })


        # Open the form view for the new Team

        action = {

            'type': 'ir.actions.act_window',

            'res_model': 'example.team',

            'view_mode': 'form',

            'res_id': team.id,

            'context': self.env.context,

        }

        return action


Hope it helps

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
one2many fields, advise/guidance needed... Resuelto
one2many odoo16features
Avatar
Avatar
1
sept 23
2629
Filter One2many field in res.partner Resuelto
filter one2many odoo16features
Avatar
Avatar
1
ene 24
2616
odoo 16: Confirm button on Quotations
actions sequence odoo16features
Avatar
Avatar
1
oct 23
3472
[Osoo16] Automated Action to create new Activity when update an Activity
actions activity odoo16features
Avatar
0
ago 23
2631
Many2one not filled until One2many is saved Odoo 16
many2one one2many odoo16features
Avatar
Avatar
1
dic 22
3370
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