mirror of
https://github.com/bringout/oca-ocb-vertical-industry.git
synced 2026-04-23 19:52:03 +02:00
Initial commit: Vertical Industry packages
This commit is contained in:
commit
d5567a0017
766 changed files with 733028 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _, exceptions
|
||||
|
||||
|
||||
class grant_badge_wizard(models.TransientModel):
|
||||
""" Wizard allowing to grant a badge to a user"""
|
||||
_name = 'gamification.badge.user.wizard'
|
||||
_description = 'Gamification User Badge Wizard'
|
||||
|
||||
user_id = fields.Many2one("res.users", string='User', required=True)
|
||||
badge_id = fields.Many2one("gamification.badge", string='Badge', required=True)
|
||||
comment = fields.Text('Comment')
|
||||
|
||||
def action_grant_badge(self):
|
||||
"""Wizard action for sending a badge to a chosen user"""
|
||||
|
||||
BadgeUser = self.env['gamification.badge.user']
|
||||
|
||||
uid = self.env.uid
|
||||
for wiz in self:
|
||||
if uid == wiz.user_id.id:
|
||||
raise exceptions.UserError(_('You can not grant a badge to yourself.'))
|
||||
|
||||
#create the badge
|
||||
BadgeUser.create({
|
||||
'user_id': wiz.user_id.id,
|
||||
'sender_id': uid,
|
||||
'badge_id': wiz.badge_id.id,
|
||||
'comment': wiz.comment,
|
||||
})._send_badge()
|
||||
|
||||
return True
|
||||
Loading…
Add table
Add a link
Reference in a new issue