[ADD][WIP]Coworking weekly creation wizard
This commit is contained in:
parent
16758eec6d
commit
8a62f38159
@ -1,3 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import models, wizard
|
||||
|
@ -28,6 +28,7 @@
|
||||
'data': ['security/ir.model.access.csv',
|
||||
'views/event_menu.xml',
|
||||
'views/event_views.xml',
|
||||
'views/coworker_views.xml'],
|
||||
'views/coworker_views.xml',
|
||||
'wizard/coworking_event_weekly_views.xml'],
|
||||
'depends': ['coworking_coworker']
|
||||
}
|
||||
|
2
coworking_event/wizard/__init__.py
Normal file
2
coworking_event/wizard/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import coworking_event_weekly
|
10
coworking_event/wizard/coworking_event_weekly.py
Normal file
10
coworking_event/wizard/coworking_event_weekly.py
Normal file
@ -0,0 +1,10 @@
|
||||
# -*- 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'
|
4
coworking_event/wizard/coworking_event_weekly_views.xml
Normal file
4
coworking_event/wizard/coworking_event_weekly_views.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<odoo>
|
||||
</odoo>
|
Loading…
Reference in New Issue
Block a user