Skip to content

Instantly share code, notes, and snippets.

@vcloud9ray
Last active August 30, 2017 23:53
Show Gist options
  • Save vcloud9ray/706a5556305766b7572fa488d8e1d093 to your computer and use it in GitHub Desktop.
Save vcloud9ray/706a5556305766b7572fa488d8e1d093 to your computer and use it in GitHub Desktop.
Odoo. UI. Automated Action to update Fiduciary if Override is used.
query = "update res_partner set commercial_partner_id =" + str(object.x_commercial_partner_id.id) + " where id = " + str(object.id) + ";"
env.cr.execute(query)
# Execute Python Code Action based on an Automated Action listening for UPDATES to res.partner
# Add x_commercial_partner_id with appropriate group restricted view
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment