Advertisement
rht_odoo

[QW][3940222]Tags à modifier sur enfant

May 29th, 2024 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. # Done by RHT on the 22/05/2024
  2. # Reviewed by SEA on the 29/05/2024
  3. # Review: https://pastebin.com/vC7GjdSd
  4. # Need: if a tag is adapted then adapt the tags on the children
  5. # Task: https://www.odoo.com/odoo/project/5686/tasks/3940222?cids=1
  6. for contact in records.filtered(lambda c: c.child_ids):
  7.   for child in contact.child_ids:
  8.     child["category_id"] = child.parent_id.category_id
  9.  
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement