Hello everyone,
My doubt is what I am trying to do is, I have one2many field named `salary_ids` in my module like this :
salary_ids = fields.One2many('team.salary', 'employee_id', 'Salaries') |
And inverse model employee_id like this:
class Salary(models.Model): |
Now I want to add new records using wizard for this one2many fields so that when I select new month new basic and all it will added to that particular employees. I am not trying to update existing records but add new records to it. How can I??
Below is what I have tried so for using wizard.
class UpdateSalary(models.TransientModel): |
??