I tried to pass the value from one pop up model to another model using odoo server action but I could not pass the value. How to pass string field from one popup model to another model with button click? Please anybody help me
Could you be more specific? To me this seems simple.
self.env['model1name'].search([('name', '=', record1name)])
self.env['model2name'].search([('name', '=', record2name)])
model2_rec.write({'fieldname': model1_rec.fieldname})