Skip to content

Instantly share code, notes, and snippets.

@Whenrow
Last active November 27, 2019 19:26
Show Gist options
  • Save Whenrow/5afaa082a233980d729d6d9a26315856 to your computer and use it in GitHub Desktop.
Save Whenrow/5afaa082a233980d729d6d9a26315856 to your computer and use it in GitHub Desktop.
Update ole rating
players = self.env['res.partner'].search([
('kicker_player', '=', True)
]).write({'ole_rating': 1500})
matches = self.env['kicker.game'].search([]).sorted('create_date')
for match in matches:
match._update_ole_rating()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment