Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
5286 Vistas

Hi,


I have added a button that when clicked, it should create multiple employees from my custom module.


Kindly help me with this, thanks

Avatar
Descartar
Mejor respuesta

Hi,

This can be easily done by passing list of values to the create method.

Suppose if i need to create a record with name only in model_xyz, first prepare a list of dictionary as follows:

vals_list = [{'name': 'test 1'}, {'name': 'test 2'}]

then pass this created list to create orm method.

self.env['model.xyz'].create(vals_list)

Thanks

Avatar
Descartar
Mejor respuesta

Hello Sasha Brown,

Please find below code it may help you to resolve this issue

Please find code in comment.
I Hope this will help you. 

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Descartar

suppose you have one button(create_empoyee) in your custom module.This code added in your custom module.

def create_employee(self):
for rec in self.search([]):
Suppose you create employee record with name so Fist you create list of dictionary.

vals = ({field_name: rec.your_custom_model_field})

After this vals is passed to create function.
self.env['model.employee'].create(vals)

Publicaciones relacionadas Respuestas Vistas Actividad
1
jun 25
1128
3
jul 25
2862
1
may 25
1067
1
may 25
1333
4
may 25
2471