I have a field named items that i have defined as a Many2many field
item_ids = fields.Many2many('ics.itemdetails',string="Add items")
The model ics.itemdetails has the following fields
itm_nams = fields.Many2one('product.template',string="Name")
weight = fields.Char(string="Weight")
I want the user to select a product from product.template entries and fill the other field, for each product they add. Also a second user cannot select an entry from the previous entries. The problem is that a second user can select a previously entered entry. Am i doing it the right way? How do i prevent previous entries being shown for a second user?. I am using odoo 12.