event: fix call to _check_recursion, after last commit.
[odoo/odoo.git] / addons / event / event.py
index abe3ea6..8c8bed8 100644 (file)
 #
 ##############################################################################
 
-from osv import fields, osv
 import time
-import netsvc
-import pooler
-import tools
-from tools.translate import _
-from crm import crm
 
+from crm import crm
+from osv import fields, osv
+from tools.translate import _
+import tools
+import decimal_precision as dp
 
 class event_type(osv.osv):
+    """ Event Type """
     _name = 'event.type'
-    _description= 'Event type'
+    _description = __doc__
     _columns = {
-        'name': fields.char('Event type', size=64, required=True), 
+        'name': fields.char('Event type', size=64, required=True),
     }
+
 event_type()
 
-class event(osv.osv):
+class event_event(osv.osv):
+    """Event"""
     _name = 'event.event'
-    _description = 'Event'
-    _inherits = {'crm.case.section': 'section_id'}
+    _description = __doc__
     _order = 'date_begin'
 
     def copy(self, cr, uid, id, default=None, context=None):
-        return super(event, self).copy(cr, uid, id, default={'code': self.pool.get('ir.sequence').get(cr, uid, 'event.event'), 'state': 'draft'})
-
-    def button_draft(self, cr, uid, ids, context={}):
-        return self.write(cr, uid, ids, {'state': 'draft'})
-
-    def button_cancel(self, cr, uid, ids, context={}):
-        return self.write(cr, uid, ids, {'state': 'cancel'})
-
-    def button_done(self, cr, uid, ids, context={}):
-        return self.write(cr, uid, ids, {'state': 'done'})
-
-    def button_confirm(self, cr, uid, ids, context={}):
-        for eve in self.browse(cr, uid, ids):
-            if eve.mail_auto_confirm:
+        """ Copy record of Given id
+        @param id: Id of Event record.
+        @param context: A standard dictionary for contextual values
+        """
+        if not default:
+            default = {}
+        default.update({
+            'state': 'draft',
+            'registration_ids': False,
+        })
+        return super(event_event, self).copy(cr, uid, id, default=default, context=context)
+
+    def onchange_product(self, cr, uid, ids, product_id=False):
+        """This function returns value of  product's unit price based on product id.
+        @param self: The object pointer
+        @param cr: the current row, from the database cursor,
+        @param uid: the current user’s ID for security checks,
+        @param ids: List of Event IDs
+        @param product_id: Product's id
+        """
+        if not product_id:
+            return {'value': {'unit_price': False}}
+        else:
+           unit_price=self.pool.get('product.product').price_get(cr, uid, [product_id])[product_id]
+           return {'value': {'unit_price': unit_price}}
+
+    def button_draft(self, cr, uid, ids, context=None):
+        return self.write(cr, uid, ids, {'state': 'draft'}, context=context)
+
+    def button_cancel(self, cr, uid, ids, context=None):
+        return self.write(cr, uid, ids, {'state': 'cancel'}, context=context)
+
+    def button_done(self, cr, uid, ids, context=None):
+        if type(ids) in (int, long,):
+            ids = [ids]
+        return self.write(cr, uid, ids, {'state': 'done'}, context=context)
+
+    def do_confirm(self, cr, uid, ids, context=None):
+        """ Confirm Event and send confirmation email to all register peoples
+        """
+        register_pool = self.pool.get('event.registration')
+        for event in self.browse(cr, uid, ids, context=context):
+            if event.mail_auto_confirm:
                 #send reminder that will confirm the event for all the people that were already confirmed
-                reg_ids = self.pool.get('event.registration').search(cr, uid, [('event_id', '=', eve.id), ('state', 'not in', ['draft', 'cancel'])])
-                if reg_ids:
-                    self.pool.get('event.registration').mail_user_confirm(cr, uid, reg_ids)
-        return self.write(cr, uid, ids, {'state': 'confirm'})
-
-    def _get_register(self, cr, uid, ids, name, args, context=None):
-        res={}
-        for event in self.browse(cr, uid, ids, context):
-            res[event.id] = {}
-            state = 'draft'
-            if name[0] == 'register_current':
-                state = 'open'
-            query = """SELECT sum(r.nb_register) 
-                        from event_registration r 
-                        where state=%s and event_id=%s"""
-
-            cr.execute(query, (state, event.id, ))
-            res2 = cr.fetchone()
-            if res2 and res2[0]:
-                res[event.id][name[0]] = res2[0]
+                reg_ids = register_pool.search(cr, uid, [
+                               ('event_id', '=', event.id),
+                               ('state', 'not in', ['draft', 'cancel'])], context=context)
+                register_pool.mail_user_confirm(cr, uid, reg_ids)
+
+        return self.write(cr, uid, ids, {'state': 'confirm'}, context=context)
+
+    def button_confirm(self, cr, uid, ids, context=None):
+        """This Function Confirm Event.
+        @param ids: List of Event IDs
+        @param context: A standard dictionary for contextual values
+        @return: True
+        """
+        if not context:
+            context = {}
+        res = False
+        if type(ids) in (int, long,):
+            ids = [ids]
+        data_pool = self.pool.get('ir.model.data')
+        unconfirmed_ids = []
+        for event in self.browse(cr, uid, ids, context=context):
+            total_confirmed = event.register_current
+            if total_confirmed >= event.register_min or event.register_max == 0:
+                res = self.do_confirm(cr, uid, [event.id], context=context)
             else:
-                res[event.id][name[0]] = 0
+                unconfirmed_ids.append(event.id)
+        if unconfirmed_ids:
+            view_id = data_pool.get_object_reference(cr, uid, 'event', 'view_event_confirm')
+            view_id = view_id and view_id[1] or False
+            context['event_ids'] = unconfirmed_ids
+            return {
+                'name': _('Confirm Event'),
+                'context': context,
+                'view_type': 'form',
+                'view_mode': 'tree,form',
+                'res_model': 'event.confirm',
+                'views': [(view_id, 'form')],
+                'type': 'ir.actions.act_window',
+                'target': 'new',
+                'context': context,
+                'nodestroy': True
+            }
         return res
 
-    def write(self, cr, uid, ids, vals, *args, **kwargs):
-        res = super(event, self).write(cr, uid, ids, vals, *args, **kwargs)
-        if 'date_begin' in vals and vals['date_begin']:
-            for eve in self.browse(cr, uid, ids):
+    def _get_register(self, cr, uid, ids, fields, args, context=None):
+        """Get Confirm or uncofirm register value.
+        @param ids: List of Event registration type's id
+        @param fields: List of function fields(register_current and register_prospect).
+        @param context: A standard dictionary for contextual values
+        @return: Dictionary of function fields value.
+        """
+        register_pool = self.pool.get('event.registration')
+        res = {}
+        for event in self.browse(cr, uid, ids, context=context):
+            res[event.id] = {}
+            for field in fields:
+                res[event.id][field] = False
+            state = []
+            if 'register_current' in fields:
+                state += ['open', 'done']
+            if 'register_prospect' in fields:
+                state.append('draft')
+
+            reg_ids = register_pool.search(cr, uid, [
+                        ('event_id', '=', event.id),
+                       ('state', 'in', state)], context=context)
+
+            number = 0.0
+            if reg_ids:
+                cr.execute('SELECT SUM(nb_register) FROM event_registration WHERE id IN %s', (tuple(reg_ids),))
+                number = cr.fetchone()
+
+            if 'register_current' in fields:
+                res[event.id]['register_current'] = number and number[0] or 0.0
+            if 'register_prospect' in fields:
+                res[event.id]['register_prospect'] = number and number[0] or 0.0
+        return res
+
+    def write(self, cr, uid, ids, vals, context=None):
+        """
+        Writes values in one or several fields.
+        @param ids: List of Event registration type's IDs
+        @param vals: dictionary with values to update.
+        @return: True
+        """
+        register_pool = self.pool.get('event.registration')
+        res = super(event_event, self).write(cr, uid, ids, vals, context=context)
+        if vals.get('date_begin', False) or vals.get('mail_auto_confirm', False) or vals.get('mail_confirm', False):
+            for event in self.browse(cr, uid, ids, context=context):
                 #change the deadlines of the registration linked to this event
-                reg_ids = self.pool.get('event.registration').search(cr, uid, [('event_id', '=', eve.id)])
-                if reg_ids:
-                    self.pool.get('event.registration').write(cr, uid, reg_ids, {'date_deadline': vals['date_begin']})
-
-        #change the description of the registration linked to this event
-        if 'mail_auto_confirm' in vals:
-            if vals['mail_auto_confirm']:
-                if 'mail_confirm' not in vals:
-                    for eve in self.browse(cr, uid, ids):
-                        vals['mail_confirm'] = eve.mail_confirm
-            else:
-                vals['mail_confirm']=False
-        if 'mail_confirm' in vals:
-            for eve in self.browse(cr, uid, ids):
-                reg_ids = self.pool.get('event.registration').search(cr, uid, [('event_id', '=', eve.id)])
-                if reg_ids:
-                    self.pool.get('event.registration').write(cr, uid, reg_ids, {'description': vals['mail_confirm']})
+                register_values = {}
+                if vals.get('date_begin', False):
+                    register_values['date_deadline'] = vals['date_begin']
+
+                #change the description of the registration linked to this event
+                if vals.get('mail_auto_confirm', False):
+                    if vals['mail_auto_confirm']:
+                        if 'mail_confirm' not in vals:
+                            vals['mail_confirm'] = event.mail_confirm
+                    else:
+                        vals['mail_confirm'] = False
+                if 'mail_confirm' in vals:
+                    register_values['description'] = vals['mail_confirm']
+
+                if register_values:
+                    reg_ids = register_pool.search(cr, uid, [('event_id', '=', event.id)], context=context)
+                    register_pool.write(cr, uid, reg_ids, register_values, context=context)
         return res
 
     _columns = {
-        'type': fields.many2one('event.type', 'Type'), 
-        'section_id': fields.many2one('crm.case.section', 'Case section', required=True), 
-        'register_max': fields.integer('Maximum Registrations'), 
-        'register_min': fields.integer('Minimum Registrations'), 
-        'register_current': fields.function(_get_register, method=True, string='Confirmed Registrations', multi='register_current'), 
-        'register_prospect': fields.function(_get_register, method=True, string='Unconfirmed Registrations', multi='register_prospect'), 
-        'date_begin': fields.datetime('Beginning date', required=True), 
-        'date_end': fields.datetime('Ending date', required=True), 
-        'state': fields.selection([('draft', 'Draft'), ('confirm', 'Confirmed'), ('done', 'Done'), ('cancel', 'Cancelled')], 'State', readonly=True, required=True, 
-                                  help='If event is created, the state is \'Draft\'.\n If event is confirmed for the particular dates the state is set to \'Confirmed\'.\
-                                  \nIf the event is over, the state is set to \'Done\'.\n If event is cancelled the state is set to \'Cancelled\'.'), 
-        'mail_auto_registr': fields.boolean('Mail Auto Register', help='Check this box if you want to use the automatic mailing for new registration'), 
-        'mail_auto_confirm': fields.boolean('Mail Auto Confirm', help='Check this box if you want ot use the automatic confirmation emailing or the reminder'), 
-        'mail_registr': fields.text('Registration Email', help='This email will be sent when someone subscribes to the event.'), 
-        'mail_confirm': fields.text('Confirmation Email', help="This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event."), 
-        'product_id': fields.many2one('product.product', 'Product', required=True), 
+        'name': fields.char('Summary', size=64, required=True, translate=True, readonly=False, states={'done': [('readonly', True)]}),
+        'user_id': fields.many2one('res.users', 'Responsible User', readonly=False, states={'done': [('readonly', True)]}),
+        'parent_id': fields.many2one('event.event', 'Parent Event', readonly=False, states={'done': [('readonly', True)]}),
+        'section_id': fields.many2one('crm.case.section', 'Sale Team', readonly=False, states={'done': [('readonly', True)]}),
+        'child_ids': fields.one2many('event.event', 'parent_id', 'Child Events', readonly=False, states={'done': [('readonly', True)]}),
+        'reply_to': fields.char('Reply-To', size=64, readonly=False, states={'done': [('readonly', True)]}, help="The email address put in the 'Reply-To' of all emails sent by OpenERP"),
+        'type': fields.many2one('event.type', 'Type', help="Type of Event like Seminar, Exhibition, Conference, Training.", readonly=False, states={'done': [('readonly', True)]}),
+        'register_max': fields.integer('Maximum Registrations', help="Provide Maximun Number of Registrations", readonly=True, states={'draft': [('readonly', False)]}),
+        'register_min': fields.integer('Minimum Registrations', help="Providee Minimum Number of Registrations", readonly=True, states={'draft': [('readonly', False)]}),
+        'register_current': fields.function(_get_register, method=True, string='Confirmed Registrations', multi='register_current',
+            help="Total of Open and Done Registrations"),
+        'register_prospect': fields.function(_get_register, method=True, string='Unconfirmed Registrations', multi='register_prospect',
+            help="Total of Prospect Registrati./event/event.py:41:ons"),
+        'registration_ids': fields.one2many('event.registration', 'event_id', 'Registrations', readonly=False, states={'done': [('readonly', True)]}),
+        'date_begin': fields.datetime('Beginning date', required=True, help="Beginning Date of Event", readonly=True, states={'draft': [('readonly', False)]}),
+        'date_end': fields.datetime('Closing date', required=True, help="Closing Date of Event", readonly=True, states={'draft': [('readonly', False)]}),
+        'state': fields.selection([
+            ('draft', 'Draft'),
+            ('confirm', 'Confirmed'),
+            ('done', 'Done'),
+            ('cancel', 'Cancelled')],
+            'State', readonly=True, required=True,
+            help='If event is created, the state is \'Draft\'.If event is confirmed for the particular dates the state is set to \'Confirmed\'. If the event is over, the state is set to \'Done\'.If event is cancelled the state is set to \'Cancelled\'.'),
+        'mail_auto_registr': fields.boolean('Mail Auto Register', readonly=False, states={'done': [('readonly', True)]}, help='Check this box if you want to use the automatic mailing for new registration'),
+        'mail_auto_confirm': fields.boolean('Mail Auto Confirm', readonly=False, states={'done': [('readonly', True)]}, help='Check this box if you want ot use the automatic confirmation emailing or the reminder'),
+        'mail_registr': fields.text('Registration Email', readonly=False, states={'done': [('readonly', True)]}, help='This email will be sent when someone subscribes to the event.'),
+        'mail_confirm': fields.text('Confirmation Email', readonly=False, states={'done': [('readonly', True)]}, help="This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event."),
+        'product_id': fields.many2one('product.product', 'Product', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="The invoices of this event registration will be created with this Product. Thus it allows you to set the default label and the accounting info you want by default on these invoices."),
+        'note': fields.text('Notes', help="Description or Summary of Event", readonly=False, states={'done': [('readonly', True)]}),
+        'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', readonly=True, states={'draft': [('readonly', False)]}, help="Pricelist version for current event."),
+        'unit_price': fields.related('product_id', 'list_price', type='float', string='Registration Cost', readonly=True, states={'draft':[('readonly',False)]}, help="This will be the default price used as registration cost when invoicing this event. Note that you can specify for each registration a specific amount if you want to", digits_compute=dp.get_precision('Sale Price')),
+        'main_speaker_id': fields.many2one('res.partner','Main Speaker', readonly=False, states={'done': [('readonly', True)]}, help="Speaker who are giving speech on event."),
+        'speaker_ids': fields.many2many('res.partner', 'event_speaker_rel', 'speaker_id', 'partner_id', 'Other Speakers', readonly=False, states={'done': [('readonly', True)]}),
+        'address_id': fields.many2one('res.partner.address','Location Address', readonly=False, states={'done': [('readonly', True)]}),
+        'speaker_confirmed': fields.boolean('Speaker Confirmed', readonly=False, states={'done': [('readonly', True)]}),
+        'country_id': fields.related('address_id', 'country_id',
+                    type='many2one', relation='res.country', string='Country', readonly=False, states={'done': [('readonly', True)]}),
+        'language': fields.char('Language',size=64, readonly=False, states={'done': [('readonly', True)]}),
+        'note': fields.text('Description', readonly=False, states={'done': [('readonly', True)]}),
+        'company_id': fields.many2one('res.company', 'Company', required=False, change_default=True, readonly=False, states={'done': [('readonly', True)]}),
     }
 
     _defaults = {
-        'state': lambda *args: 'draft', 
-        'code': lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'event.event'), 
-        'user_id': lambda self, cr, uid, ctx: uid, 
+        'state': 'draft',
+        'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'event.event', context=c),
+        'user_id': lambda obj, cr, uid, context: uid,
     }
 
-event()
+    def _check_recursion(self, cr, uid, ids):
+        return super(event_event, self)._check_recursion(cr, uid, ids)
+
+    def _check_closing_date(self, cr, uid, ids):
+        for event in self.browse(cr, uid, ids):
+            if event.date_end < event.date_begin:
+                return False
+        return True
+
+    _constraints = [
+        (_check_recursion, 'Error ! You cannot create recursive event.', ['parent_id']),
+        (_check_closing_date, 'Error ! Closing Date cannot be set before Beginning Date.', ['date_end']),
+    ]
+
+    def do_team_change(self, cr, uid, ids, team_id, context=None):
+        """
+        On Change Callback: when team change, this is call.
+        on this function, take value of reply_to from selected team.
+        """
+        if not team_id:
+            return {}
+        if context is None:
+            context = {}
+        team_pool = self.pool.get('crm.case.section')
+        res = {}
+        team = team_pool.browse(cr, uid, team_id, context=context)
+        if team.reply_to:
+            res = {'value': {'reply_to': team.reply_to}}
+        return res
+
+event_event()
 
 class event_registration(osv.osv):
+    """Event Registration"""
+    _name= 'event.registration'
+    _description = __doc__
+    _inherit = 'mailgate.thread'
+
+    def _amount_line(self, cr, uid, ids, field_name, arg, context=None):
+        cur_obj = self.pool.get('res.currency')
+        res = {}
+        context = context or {}
+        for line in self.browse(cr, uid, ids, context=context):
+            price = line.unit_price * line.nb_register
+            pricelist = line.event_id.pricelist_id or line.partner_invoice_id.property_product_pricelist
+            cur = pricelist and pricelist.currency_id or False
+            res[line.id] = cur and cur_obj.round(cr, uid, cur, price) or price
+        return res
 
-    def check_confirm(self, cr, uid, ids, context):
-        mod_obj = self.pool.get('ir.model.data')
-        current_registration = self.browse(cr, uid, [ids[0]])[0]
-        total_confirmed = current_registration.event_id.register_current + current_registration.nb_register
-        if total_confirmed <= current_registration.event_id.register_max or current_registration.event_id.register_max == 0:
-            self.write(cr, uid, [ids[0]], {'state': 'open'}, context=context)
-            self._history(cr, uid, [ids[0]], 'Open', history=True)
-            self.mail_user(cr, uid, [ids[0]])
-            return True
-        else:
-            model_data_ids = mod_obj.search(cr, uid, [('model', '=', 'ir.ui.view'), ('name', '=', 'view_event_confirm_registration')], context=context)
-            resource_id = mod_obj.read(cr, uid, model_data_ids, fields=['res_id'], context=context)[0]['res_id']
-            context.update({'reg_id': ids[0]})
+    _columns = {
+        'name': fields.char('Summary', size=124,  readonly=True, states={'draft': [('readonly', False)]}),
+        'email_cc': fields.text('CC', size=252, readonly=False, states={'done': [('readonly', True)]}, help="These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma"),
+        'nb_register': fields.integer('Quantity', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Number of Registrations or Tickets"),
+        'event_id': fields.many2one('event.event', 'Event', required=True, readonly=True, states={'draft': [('readonly', False)]}),
+        'partner_id': fields.many2one('res.partner', 'Partner', states={'done': [('readonly', True)]}),
+        "partner_invoice_id": fields.many2one('res.partner', 'Partner Invoiced', readonly=True, states={'draft': [('readonly', False)]}),
+        "contact_id": fields.many2one('res.partner.contact', 'Partner Contact', readonly=False, states={'done': [('readonly', True)]}), #TODO: filter only the contacts that have a function into the selected partner_id
+        "unit_price": fields.float('Unit Price', required=True, digits_compute=dp.get_precision('Sale Price'), readonly=True, states={'draft': [('readonly', False)]}),
+        'price_subtotal': fields.function(_amount_line, method=True, string='Subtotal', digits_compute=dp.get_precision('Sale Price'), store=True),
+        "badge_ids": fields.one2many('event.registration.badge', 'registration_id', 'Badges', readonly=False, states={'done': [('readonly', True)]}),
+        "event_product": fields.char("Invoice Name", size=128, readonly=True, states={'draft': [('readonly', False)]}),
+        "tobe_invoiced": fields.boolean("To be Invoiced", readonly=True, states={'draft': [('readonly', False)]}),
+        "invoice_id": fields.many2one("account.invoice", "Invoice", readonly=True),
+        'date_closed': fields.datetime('Closed', readonly=True),
+        'ref': fields.reference('Reference', selection=crm._links_get, size=128),
+        'ref2': fields.reference('Reference 2', selection=crm._links_get, size=128),
+        'email_from': fields.char('Email', size=128, states={'done': [('readonly', True)]}, help="These people will receive email."),
+        'create_date': fields.datetime('Creation Date', readonly=True),
+        'write_date': fields.datetime('Write Date', readonly=True),
+        'description': fields.text('Description', states={'done': [('readonly', True)]}),
+        'message_ids': fields.one2many('mailgate.message', 'res_id', 'Messages', domain=[('model','=',_name)]),
+        'log_ids': fields.one2many('mailgate.message', 'res_id', 'Logs', domain=[('history', '=', False),('model','=',_name)]),
+        'date_deadline': fields.related('event_id','date_end', type='datetime', string="End Date", readonly=True),
+        'date': fields.related('event_id', 'date_begin', type='datetime', string="Start Date", readonly=True),
+        'user_id': fields.many2one('res.users', 'Responsible', states={'done': [('readonly', True)]}),
+        'active': fields.boolean('Active'),
+        'section_id': fields.related('event_id', 'section_id', type='many2one', relation='crm.case.section', string='Sale Team', store=True, readonly=True),
+        'company_id': fields.related('event_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True, states={'draft':[('readonly',False)]}),
+        'state': fields.selection([('open', 'Confirmed'),
+                                    ('draft', 'Unconfirmed'),
+                                    ('cancel', 'Cancelled'),
+                                    ('done', 'Done')], 'State', \
+                                    size=16, readonly=True)
+    }
+    _defaults = {
+        'nb_register': 1,
+        'tobe_invoiced':  True,
+        'state': 'draft',
+        'active': 1,
+        'user_id': lambda self, cr, uid, ctx: uid,
+    }
+
+    def _make_invoice(self, cr, uid, reg, lines, context=None):
+        """ Create Invoice from Invoice lines
+        @param reg: Model of Event Registration
+        @param lines: Ids of Invoice lines
+        """
+        if context is None:
+            context = {}
+        inv_pool = self.pool.get('account.invoice')
+        val_invoice = inv_pool.onchange_partner_id(cr, uid, [], 'out_invoice', reg.partner_invoice_id.id, False, False)
+        val_invoice['value'].update({'partner_id': reg.partner_invoice_id.id})
+        val_invoice['value'].update({
+                'origin': reg.event_product,
+                'reference': False,
+                'invoice_line': [(6, 0, lines)],
+                'comment': "",
+                'date_invoice': context.get('date_inv', False)
+            })
+        inv_id = inv_pool.create(cr, uid, val_invoice['value'], context=context)
+        inv_pool.button_compute(cr, uid, [inv_id])
+        self.history(cr, uid, [reg], _('Invoiced'))
+        return inv_id
+
+    def copy(self, cr, uid, id, default=None, context=None):
+        """ Copy record of Given id
+        @param id: Id of Registration record.
+        @param context: A standard dictionary for contextual values
+        """
+        if not default:
+            default = {}
+        default.update({
+            'invoice_id': False,
+        })
+        return super(event_registration, self).copy(cr, uid, id, default=default, context=context)
+
+    def action_invoice_create(self, cr, uid, ids, grouped=False, date_inv = False, context=None):
+        """ Action of Create Invoice """
+        res = False
+        invoices = {}
+        tax_ids=[]
+        new_invoice_ids = []
+        inv_lines_pool = self.pool.get('account.invoice.line')
+        inv_pool = self.pool.get('account.invoice')
+        product_pool = self.pool.get('product.product')
+        contact_pool = self.pool.get('res.partner.contact')
+        if not context:
+            context = {}
+        # If date was specified, use it as date invoiced, usefull when invoices are generated this month and put the
+        # last day of the last month as invoice date
+        if date_inv:
+            context['date_inv'] = date_inv
+
+        for reg in self.browse(cr, uid, ids, context=context):
+            val_invoice = inv_pool.onchange_partner_id(cr, uid, [], 'out_invoice', reg.partner_invoice_id.id, False, False)
+            val_invoice['value'].update({'partner_id': reg.partner_invoice_id.id})
+            partner_address_id = val_invoice['value']['address_invoice_id']
+            if not partner_address_id:
+               raise osv.except_osv(_('Error !'),
+                        _("Registered partner doesn't have an address to make the invoice."))
+
+            value = inv_lines_pool.product_id_change(cr, uid, [], reg.event_id.product_id.id, uom =False, partner_id=reg.partner_invoice_id.id, fposition_id=reg.partner_invoice_id.property_account_position.id)
+            product = product_pool.browse(cr, uid, reg.event_id.product_id.id, context=context)
+            for tax in product.taxes_id:
+                tax_ids.append(tax.id)
+            vals = value['value']
+            c_name = reg.contact_id and ('-' + contact_pool.name_get(cr, uid, [reg.contact_id.id])[0][1]) or ''
+            vals.update({
+                'name': reg.event_product + '-' + c_name,
+                'price_unit': reg.unit_price,
+                'quantity': reg.nb_register,
+                'product_id':reg.event_id.product_id.id,
+                'invoice_line_tax_id': [(6, 0, tax_ids)],
+            })
+            inv_line_ids = self._create_invoice_lines(cr, uid, [reg.id], vals)
+            invoices.setdefault(reg.partner_id.id, []).append((reg, inv_line_ids))
+        for val in invoices.values():
+            res = False
+            if grouped:
+                res = self._make_invoice(cr, uid, val[0][0], [v for k, v in val], context=context)
+
+                for k, v in val:
+                    self.do_close(cr, uid, [k.id], context={'invoice_id': res})
+
+            else:
+               for k, v in val:
+                   res = self._make_invoice(cr, uid, k, [v], context=context)
+                   self.do_close(cr, uid, [k.id], context={'invoice_id': res})
+            if res: new_invoice_ids.append(res)
+        return new_invoice_ids
+
+    def do_open(self, cr, uid, ids, context=None):
+        """ Open Registration
+        """
+        res = self.write(cr, uid, ids, {'state': 'open'}, context=context)
+        self.mail_user(cr, uid, ids)
+        self.history(cr, uid, ids, _('Open'))
+        return res
+
+    def do_close(self, cr, uid, ids, context=None):
+        """ Close Registration
+        """
+        if not context:
+            context = {}
+        invoice_id = context.get('invoice_id', False)
+        values = {'state': 'done', 'date_closed': time.strftime('%Y-%m-%d %H:%M:%S')}
+        msg = _('Done')
+        if invoice_id:
+            values['invoice_id'] = invoice_id
+        res = self.write(cr, uid, ids, values)
+        self.history(cr, uid, ids, msg)
+        return res
+
+    def check_confirm(self, cr, uid, ids, context=None):
+        """This Function Open Event Registration and send email to user.
+        @param ids: List of Event registration's IDs
+        @param context: A standard dictionary for contextual values
+        @return: True
+        """
+        if not context:
+            context = {}
+        if type(ids) in (int, long,):
+            ids = [ids]
+        data_pool = self.pool.get('ir.model.data')
+        unconfirmed_ids = []
+        for registration in self.browse(cr, uid, ids, context=context):
+            total_confirmed = registration.event_id.register_current + registration.nb_register
+            if total_confirmed <= registration.event_id.register_max or registration.event_id.register_max == 0:
+                self.do_open(cr, uid, [registration.id], context=context)
+            else:
+                unconfirmed_ids.append(registration.id)
+        if unconfirmed_ids:
+            view_id = data_pool.get_object_reference(cr, uid, 'event', 'view_event_confirm_registration')
+            view_id = view_id and view_id[1] or False
+            context['registration_ids'] = unconfirmed_ids
             return {
-                'name': _('Confirm Registration'), 
-                'context': context, 
-                'view_type': 'form', 
-                'view_mode': 'tree,form', 
-                'res_model': 'event.confirm.registration', 
-                'views': [(resource_id, 'form')], 
-                'type': 'ir.actions.act_window', 
-                'target': 'new', 
+                'name': _('Confirm Registration'),
+                'context': context,
+                'view_type': 'form',
+                'view_mode': 'tree,form',
+                'res_model': 'event.confirm.registration',
+                'views': [(view_id, 'form')],
+                'type': 'ir.actions.act_window',
+                'target': 'new',
+                'context': context,
                 'nodestroy': True
             }
-
-    def _history(self, cr, uid, ids, keyword, history=False, email=False, context={}):
-        for case in self.browse(cr, uid, ids):
-            data = {
-                'name': keyword, 
-                'som': case.som.id, 
-                'canal_id': case.canal_id.id, 
-                'user_id': uid, 
-            }
-            obj = self.pool.get('mailgate.message')
-            obj.create(cr, uid, data, context=context)
         return True
 
-    def button_reg_close(self, cr, uid, ids, *args):
-        self.write(cr, uid, ids, {'state': 'done', })
-        self._history(cr, uid, ids, 'Done', history=True)
+    def button_reg_close(self, cr, uid, ids, context=None):
+        """This Function Close Event Registration.
+        """
+        if not context:
+            context = {}
+        data_pool = self.pool.get('ir.model.data')
+        unclosed_ids = []
+        for registration in self.browse(cr, uid, ids, context=context):
+            if registration.tobe_invoiced and not registration.invoice_id:
+                unclosed_ids.append(registration.id)
+            else:
+                self.do_close(cr, uid, [registration.id], context=context)
+        if unclosed_ids:
+            view_id = data_pool.get_object_reference(cr, uid, 'event', 'view_event_make_invoice')
+            view_id = view_id and view_id[1] or False
+            context['active_ids'] = unclosed_ids
+            return {
+                'name': _('Close Registration'),
+                'context': context,
+                'view_type': 'form',
+                'view_mode': 'tree,form',
+                'res_model': 'event.make.invoice',
+                'views': [(view_id, 'form')],
+                'type': 'ir.actions.act_window',
+                'target': 'new',
+                'context': context,
+                'nodestroy': True
+            }
         return True
 
     def button_reg_cancel(self, cr, uid, ids, *args):
-        self.write(cr, uid, ids, {'state': 'cancel', })
-        self._history(cr, uid, ids, 'Cancel', history=True)
-        return True
+        """This Function Cancel Event Registration.
+        """
+        registrations = self.browse(cr, uid, ids)
+        self.history(cr, uid, registrations, _('Cancel'))
+        return self.write(cr, uid, ids, {'state': 'cancel'})
 
-    def create(self, cr, uid, *args, **argv):
-        event = self.pool.get('event.event').browse(cr, uid, args[0]['event_id'], None)
-        args[0]['section_id']= event.section_id.id
-        args[0]['date_deadline']= event.date_begin
-        args[0]['description']= event.mail_confirm
-        res = super(event_registration, self).create(cr, uid, *args, **argv)
-        self._history(cr, uid, [res], 'Created', history=True)
-        return res
+    def mail_user(self, cr, uid, ids, confirm=False, context=None):
+        """
+        Send email to user
+        """
+        if not context:
+            context = {}
+
+        for regestration in self.browse(cr, uid, ids, context=context):
+            src = regestration.event_id.reply_to or False
+            email_to = []
+            email_cc = []
+            if regestration.email_from:
+                email_to = regestration.email_from
+            if regestration.email_cc:
+                email_cc += [regestration.email_cc]
+            if not (email_to or email_cc):
+                continue
+            subject = ""
+            body = ""
+            if confirm:
+                subject = _('Auto Confirmation: [%s] %s') %(regestration.id, regestration.name)
+                body = regestration.event_id.mail_confirm
+            elif regestration.event_id.mail_auto_confirm or regestration.event_id.mail_auto_registr:
+                if regestration.event_id.state in ['draft', 'fixed', 'open', 'confirm', 'running'] and regestration.event_id.mail_auto_registr:
+                    subject = _('Auto Registration: [%s] %s') %(regestration.id, regestration.name)
+                    body = regestration.event_id.mail_registr
+                if (regestration.event_id.state in ['confirm', 'running']) and regestration.event_id.mail_auto_confirm:
+                    subject = _('Auto Confirmation: [%s] %s') %(regestration.id, regestration.name)
+                    body = regestration.event_id.mail_confirm
+            if subject or body:
+                tools.email_send(src, email_to, subject, body, email_cc=email_cc, openobject_id=regestration.id)
+                self.history(cr, uid, [regestration], subject, history = True, \
+                        email=email_to, details=body, \
+                        subjec=subject, email_from=src, \
+                        email_cc=', '.join(email_cc))
+
+        return True
 
-    def write(self, cr, uid, *args, **argv):
-        if 'event_id' in args[1]:
-            event = self.pool.get('event.event').browse(cr, uid, args[1]['event_id'], None)
-            args[1]['section_id']= event.section_id.id
-            args[1]['date_deadline']= event.date_begin
-            args[1]['description']= event.mail_confirm
-        return super(event_registration, self).write(cr, uid, *args, **argv)
-
-    def mail_user_confirm(self, cr, uid, ids):
-        reg_ids=self.browse(cr, uid, ids)
-        for reg_id in reg_ids:
-            src = reg_id.event_id.reply_to or False
-            dest = [reg_id.email_from]
-            if reg_id.email_cc:
-                dest += [reg_id.email_cc]
-            if dest and src:
-                tools.email_send(src, dest, 'Auto Confirmation: '+'['+str(reg_id.id)+']'+' '+reg_id.name, reg_id.event_id.mail_confirm, openobject_id = str(reg_id.id))
-            if not src:
-                raise osv.except_osv(_('Error!'), _('You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering'))
-        return False
-
-    def mail_user(self, cr, uid, ids):
-        reg_ids=self.browse(cr, uid, ids)
-        for reg_id in reg_ids:
-            src = reg_id.event_id.reply_to or False
-            dest = [reg_id.email_from]
-            if reg_id.email_cc:
-                dest += [reg_id.email_cc]
-            if reg_id.event_id.mail_auto_confirm or reg_id.event_id.mail_auto_registr:
-                if dest and src:
-                    if reg_id.event_id.state in ['draft', 'fixed', 'open', 'confirm', 'running'] and reg_id.event_id.mail_auto_registr:
-                        tools.email_send(src, dest, 'Auto Registration: '+'['+str(reg_id.id)+']'+' '+reg_id.name, reg_id.event_id.mail_registr, openobject_id = str(reg_id.id))
-                    if (reg_id.event_id.state in ['confirm', 'running']) and reg_id.event_id.mail_auto_confirm:
-                        tools.email_send(src, dest, 'Auto Confirmation: '+'['+str(reg_id.id)+']'+' '+reg_id.name, reg_id.event_id.mail_confirm, openobject_id = str(reg_id.id))
-                if not src:
-                    raise osv.except_osv(_('Error!'), _('You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering'))
-        return False
+    def mail_user_confirm(self, cr, uid, ids, context=None):
+        """
+        Send email to user
+        """
+        return self.mail_user(cr, uid, ids, confirm=True, context=context)
 
     def _create_invoice_lines(self, cr, uid, ids, vals):
+        """ Create account Invoice line for Registration Id.
+        """
         return self.pool.get('account.invoice.line').create(cr, uid, vals)
 
-    _name= 'event.registration'
-    _description = 'Event Registration'
-    _inherit = 'crm.meeting'
-
-    _columns = {
-        'email_cc': fields.text('Watchers Emails', size=252 , help="These \
-people will receive a copy of the future communication between partner \
-and users by email"),
-        'nb_register': fields.integer('Number of Registration', readonly=True, states={'draft': [('readonly', False)]}), 
-        'event_id': fields.many2one('event.event', 'Event Related', required=True), 
-        "partner_invoice_id": fields.many2one('res.partner', 'Partner Invoiced'), 
-        "contact_id": fields.many2one('res.partner.contact', 'Partner Contact'), #TODO: filter only the contacts that have a function into the selected partner_id
-        "unit_price": fields.float('Unit Price'), 
-        "badge_title": fields.char('Badge Title', size=128), 
-        "badge_name": fields.char('Badge Name', size=128), 
-        "badge_partner": fields.char('Badge Partner', size=128), 
-        "invoice_label": fields.char("Label Invoice", size=128, required=True), 
-        "tobe_invoiced": fields.boolean("To be Invoiced"), 
-        "invoice_id": fields.many2one("account.invoice", "Invoice"), 
-        'date_closed': fields.datetime('Closed', readonly=True), 
-        'ref': fields.reference('Reference', selection=crm._links_get, size=128), 
-        'ref2': fields.reference('Reference 2', selection=crm._links_get, size=128), 
-        'canal_id': fields.many2one('res.partner.canal', 'Channel', help="The channels represent the different communication modes available with the customer." \
-                                                                        " With each commercial opportunity, you can indicate the canall which is this opportunity source."), 
-        'som': fields.many2one('res.partner.som', 'State of Mind', help="The minds states allow to define a value scale which represents" \
-                                                                       "the partner mentality in relation to our services.The scale has" \
-                                                                       "to be created with a factor for each level from 0 (Very dissatisfied) to 10 (Extremely satisfied)."), 
-    }
-    
-    _defaults = {
-        'nb_register': lambda *a: 1, 
-        'tobe_invoiced': lambda *a: True, 
-        'name': lambda *a: 'Registration', 
-    }
-
-    def onchange_badge_name(self, cr, uid, ids, badge_name):
-        data ={}
-        if not badge_name:
-            return data
-        data['name'] = 'Registration: ' + badge_name
-        return {'value': data}
-
     def onchange_contact_id(self, cr, uid, ids, contact, partner):
+
+        """This function returns value of Badge Name, Badge Title based on Partner contact.
+        @param self: The object pointer
+        @param cr: the current row, from the database cursor,
+        @param uid: the current user’s ID for security checks,
+        @param ids: List of Registration IDs
+        @param contact: Patner Contact IDS
+        @param partner: Partner IDS
+        """
         data ={}
         if not contact:
             return data
-        contact_id = self.pool.get('res.partner.contact').browse(cr, uid, contact)
-        data['badge_name'] = contact_id.name
-        data['badge_title'] = contact_id.title
+        addr_obj = self.pool.get('res.partner.address')
+        job_obj = self.pool.get('res.partner.job')
+
         if partner:
-            partner_addresses = self.pool.get('res.partner.address').search(cr, uid, [('partner_id', '=', partner)])
-            job_ids = self.pool.get('res.partner.job').search(cr, uid, [('contact_id', '=', contact), ('address_id', 'in', partner_addresses)])
+            partner_addresses = addr_obj.search(cr, uid, [('partner_id', '=', partner)])
+            job_ids = job_obj.search(cr, uid, [('contact_id', '=', contact), ('address_id', 'in', partner_addresses)])
             if job_ids:
-                data['email_from'] = self.pool.get('res.partner.job').browse(cr, uid, job_ids[0]).email
-        d = self.onchange_badge_name(cr, uid, ids, data['badge_name'])
-        data.update(d['value'])
-
+                data['email_from'] = job_obj.browse(cr, uid, job_ids[0]).email
         return {'value': data}
 
     def onchange_event(self, cr, uid, ids, event_id, partner_invoice_id):
-        context={}
+        """This function returns value of Product Name, Unit Price based on Event.
+        @param self: The object pointer
+        @param cr: the current row, from the database cursor,
+        @param uid: the current user’s ID for security checks,
+        @param ids: List of Registration IDs
+        @param event_id: Event ID
+        @param partner_invoice_id: Partner Invoice ID
+        """
+        context = {}
         if not event_id:
-            return {'value': {'unit_price': False , 'invoice_label': False }}
-        data_event =  self.pool.get('event.event').browse(cr, uid, event_id)
+            return {'value': {'unit_price': False, 'event_product': False}}
+
+        event_obj = self.pool.get('event.event')
+        prod_obj = self.pool.get('product.product')
+        res_obj = self.pool.get('res.partner')
+
+        data_event =  event_obj.browse(cr, uid, event_id)
+        res = {'value': {'unit_price': False,
+                         'event_product': False,
+                         'user_id': False,
+                         'date': data_event.date_begin,
+                         'date_deadline': data_event.date_end,
+                         'description': data_event.note,
+                         'name': data_event.name,
+                         'section_id': data_event.section_id and data_event.section_id.id or False,
+                        }}
+        if data_event.user_id.id:
+            res['value'].update({'user_id': data_event.user_id.id})
         if data_event.product_id:
-            if not partner_invoice_id:
-                unit_price=self.pool.get('product.product').price_get(cr, uid, [data_event.product_id.id], context=context)[data_event.product_id.id]
-                return {'value': {'unit_price': unit_price , 'invoice_label': data_event.product_id.name}}
-            data_partner = self.pool.get('res.partner').browse(cr, uid, partner_invoice_id)
-            context.update({'partner_id': data_partner})
-            unit_price = self.pool.get('product.product')._product_price(cr, uid, [data_event.product_id.id], False, False, {'pricelist': data_partner.property_product_pricelist.id})[data_event.product_id.id]
-            return {'value': {'unit_price': unit_price , 'invoice_label': data_event.product_id.name}}
-        return {'value': {'unit_price': False, 'invoice_label': False}}
-
+            pricelist_id = data_event.pricelist_id and data_event.pricelist_id.id or False
+            if partner_invoice_id:
+                partner = res_obj.browse(cr, uid, partner_invoice_id, context=context)
+                pricelist_id = pricelist_id or partner.property_product_pricelist.id
+            unit_price = prod_obj._product_price(cr, uid, [data_event.product_id.id], False, False, {'pricelist': pricelist_id})[data_event.product_id.id]
+            if not unit_price:
+                unit_price = data_event.unit_price
+            res['value'].update({'unit_price': unit_price, 'event_product': data_event.product_id.name})
+        return res
 
     def onchange_partner_id(self, cr, uid, ids, part, event_id, email=False):
-        data={}
-        data['badge_partner'] = data['contact_id'] = data['partner_invoice_id'] = data['email_from'] = data['badge_title'] = data['badge_name'] = False
+        """This function returns value of Patner Invoice id, Unit Price, badget title based on partner and Event.
+        @param self: The object pointer
+        @param cr: the current row, from the database cursor,
+        @param uid: the current user’s ID for security checks,
+        @param ids: List of Registration IDs
+        @param event_id: Event ID
+        @param partner_invoice_id: Partner Invoice ID
+        """
+        job_obj = self.pool.get('res.partner.job')
+        res_obj = self.pool.get('res.partner')
+
+        data = {}
+        data['contact_id'], data['partner_invoice_id'], data['email_from'] = (False, False, False)
         if not part:
             return {'value': data}
-        data['partner_invoice_id']=part
+        data['partner_invoice_id'] = part
         # this calls onchange_partner_invoice_id
         d = self.onchange_partner_invoice_id(cr, uid, ids, event_id, part)
         # this updates the dictionary
         data.update(d['value'])
-        addr = self.pool.get('res.partner').address_get(cr, uid, [part])
+        addr = res_obj.address_get(cr, uid, [part])
         if addr:
             if addr.has_key('default'):
-                job_ids = self.pool.get('res.partner.job').search(cr, uid, [('address_id', '=', addr['default'])])
+                job_ids = job_obj.search(cr, uid, [('address_id', '=', addr['default'])])
                 if job_ids:
-                    data['contact_id'] = self.pool.get('res.partner.job').browse(cr, uid, job_ids[0]).contact_id.id
+                    data['contact_id'] = job_obj.browse(cr, uid, job_ids[0]).contact_id.id
                     d = self.onchange_contact_id(cr, uid, ids, data['contact_id'], part)
                     data.update(d['value'])
-        partner_data = self.pool.get('res.partner').browse(cr, uid, part)
-        data['badge_partner'] = partner_data.name
         return {'value': data}
 
     def onchange_partner_invoice_id(self, cr, uid, ids, event_id, partner_invoice_id):
-        data={}
-        context={}
+        """This function returns value of Product unit Price based on Invoiced partner.
+        @param self: The object pointer
+        @param cr: the current row, from the database cursor,
+        @param uid: the current user’s ID for security checks,
+        @param ids: List of Registration IDs
+        @param event_id: Event ID
+        @param partner_invoice_id: Partner Invoice ID
+        """
+        data = {}
+        context = {}
+        event_obj = self.pool.get('event.event')
+        prod_obj = self.pool.get('product.product')
+        res_obj = self.pool.get('res.partner')
+
         data['unit_price']=False
         if not event_id:
             return {'value': data}
-        data_event =  self.pool.get('event.event').browse(cr, uid, event_id)
-
+        data_event =  event_obj.browse(cr, uid, event_id, context=context)
         if data_event.product_id:
-            if not partner_invoice_id:
-                data['unit_price']=self.pool.get('product.product').price_get(cr, uid, [data_event.product_id.id], context=context)[data_event.product_id.id]
-                return {'value': data}
-            data_partner = self.pool.get('res.partner').browse(cr, uid, partner_invoice_id)
-            context.update({'partner_id': data_partner})
-            data['unit_price'] = self.pool.get('product.product')._product_price(cr, uid, [data_event.product_id.id], False, False, {'pricelist': data_partner.property_product_pricelist.id})[data_event.product_id.id]
-            return {'value': data}
+            data['event_product'] = data_event.product_id.name
+            pricelist_id = data_event.pricelist_id and data_event.pricelist_id.id or False
+            if partner_invoice_id:
+                partner = res_obj.browse(cr, uid, partner_invoice_id, context=context)
+                pricelist_id = pricelist_id or partner.property_product_pricelist.id
+            unit_price = prod_obj._product_price(cr, uid, [data_event.product_id.id], False, False, {'pricelist': pricelist_id})[data_event.product_id.id]
+            if not unit_price:
+                unit_price = data_event.unit_price
+            data['unit_price'] = unit_price
         return {'value': data}
 
-    def onchange_categ_id(self, cr, uid, ids, categ, context={}):
-        if not categ:
-            return {'value': {}}
-        cat = self.pool.get('crm.case.categ').browse(cr, uid, categ, context).probability
-        return {'value': {'probability': cat}}
-
 event_registration()
 
-
-
-class report_event_registration(osv.osv):
-    _name = "report.event.registration"
-    _description = "Events on registrations"
-    _auto = False
+class event_registration_badge(osv.osv):
+    _name = 'event.registration.badge'
+    _description = __doc__
     _columns = {
-        'name': fields.char('Event', size=20), 
-        'date_begin': fields.datetime('Beginning date', required=True), 
-        'date_end': fields.datetime('Ending date', required=True), 
-        'draft_state': fields.integer('Draft Registration', size=20), 
-        'confirm_state': fields.integer('Confirm Registration', size=20), 
-        'register_max': fields.integer('Maximum Registrations'), 
+        "registration_id": fields.many2one('event.registration', 'Registration', required=True),
+        "title": fields.char('Title', size=128),
+        "name": fields.char('Name', size=128, required=True),
+        "address_id": fields.many2one('res.partner.address', 'Address'),
     }
-    def init(self, cr):
-        cr.execute("""
-            create or replace view report_event_registration as (
-                select
-                e.id as id,
-                c.name as name,
-                e.date_begin as date_begin,
-                e.date_end as date_end,
-                (SELECT sum(c.nb_register) FROM event_registration  c  WHERE c.section_id=e.section_id and state in ('draft')) as draft_state,
-                (SELECT sum(c.nb_register) FROM event_registration  c  WHERE c.section_id=e.section_id and state in ('open')) as confirm_state,
-                e.register_max as register_max
-                from
-                event_event e,crm_case_section c
-                where
-                e.section_id=c.id
-                )""")
-
-report_event_registration()
-
-class report_event_type_registration(osv.osv):
-    _name = "report.event.type.registration"
-    _description = "Event type on registration"
-    _auto = False
-    _columns = {
-        'name': fields.char('Event Type', size=20), 
-        'nbevent': fields.integer('Number Of Events'), 
-        'draft_state': fields.integer('Draft Registrations', size=20), 
-        'confirm_state': fields.integer('Confirm Registrations', size=20), 
-        }
-        
-        
-    def init(self, cr):
-        cr.execute("""
-            create or replace view report_event_type_registration as (
-                select
-                count(t.id) as id,
-                t.name as name,
-                (select sum(c.nb_register) from event_registration c, event_event e  where c.section_id=e.section_id and c.state='draft' and e.type=t.id ) as draft_state ,
-                (select sum(c.nb_register) from event_registration c, event_event e  where c.section_id=e.section_id and c.state='open' and e.type=t.id ) as  confirm_state,
-                count(t.id) as nbevent
-                from
-                    event_event e
-                inner join
-                    crm_case_section c1 on (e.section_id=c1.id)
-                inner join
-                    event_type t on (e.type=t.id)
-                group by
-                    t.name,t.id
-
-            )""")
-report_event_type_registration()
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
+event_registration_badge()
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
\ No newline at end of file