How to achieve the following scenario in Odoo?
问题 Trying to create an calendar event on the click of a button in my custom module. python code is as follows: class mom_meeting(osv.Model): _name = "mom.meeting" _rec_name = 'meet_ref' _inherit = 'mail.thread' STATUS_SELECTION=[ ('Block A - Board Room', 'Block A - Board Room'), ('Block B - Board Room', 'Block B - Board Room'), ('Block B - Discussion Room - 1', 'Block B - Discussion Room - 1'), ('Block B - Discussion Room - 2', 'Block B - Discussion Room - 2'), ] _columns = { 'ch_prsn': fields