This question has been flagged
2 Replies
2019 Views

Hi There,


I've follow the tutorials here https://www.odoo.com/documentation/8.0/howtos/backend.html

and extend the products form with an additional notebook tab that allows viewing of Serial IDs it has.

E.g. in the foilowing URL screenshot.

http://imagebin.ca/v/282WxCOaM1TY


When I edit a product and add an item to the serials. I would need to fill in the product.

see. http://imagebin.ca/v/282ZxHTcUM1Q

How do I automate, such when I add a serial from the product, it will automatically filled the product_id to it?


I creates a the following models
serial:

- has Many2one  product.product 

product:

- has One2many warranty.serial, product_id

Avatar
Discard
Best Answer

Hello Gavin,

Keep that product field blank. Product will be set automatically once that One2Many record will be saved.

Suggestion : There is no need to keep Product field either in List view or in Form view. ( in that One2Many field ) The product in which you are added Serial information, indeed that is the product available at One2Many. So why to keep unnecessary column.

Please note : By keeping product field blank, still if product is not getting selected automatically then, Please paste the One2Many class content of py file. May be while defining one2many field in product model, product_id is not linked. ( I am not sure but i am asking about worst possibility )

Odoo Fact :  The field XXX (in your case product_id ) which is linked between O2M class (Serial) & Parent class ( product.product), while adding the record in O2M class (Serial) there is no need to fill value inside that field (XXX) if you are adding through form view of parent class (product.product)

Avatar
Discard
Author Best Answer

Hi,

Thanks that works. I didn't' know that it will insert the Product_Id after saving the product. 

Cheers,

Gavin

Avatar
Discard

Odoo Fact : The field XXX (in your case product_id ) which is linked between O2M class (Serial) & Parent class ( product.product), while adding the record in O2M class (Serial) there is no need to fill value inside that field (XXX) if you are adding through form view of parent class (product.product)