Merge branch 'V3' of fabien/michel_coworking into V3
This commit is contained in:
commit
5e0cd006d5
@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from . import models
|
from . import models, wizard
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
'data': ['security/ir.model.access.csv',
|
'data': ['security/ir.model.access.csv',
|
||||||
'views/event_menu.xml',
|
'views/event_menu.xml',
|
||||||
'views/event_views.xml',
|
'views/event_views.xml',
|
||||||
'views/coworker_views.xml'],
|
'views/coworker_views.xml',
|
||||||
|
'wizard/coworking_event_weekly_views.xml'],
|
||||||
'depends': ['coworking_coworker']
|
'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