11 lines
290 B
Python
11 lines
290 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
""" Weekly massive event creation module """
|
|
|
|
from odoo import models, fields, api
|
|
|
|
class CoworkingEventWeekly(models.TransientModel):
|
|
""" Weekly massive event creation """
|
|
_name = 'coworking.event.weekly'
|
|
_description = 'Weekly massive event creation'
|