[ADD][WIP]Coworking weekly creation wizard

This commit is contained in:
Fabien BOURGEOIS 2017-11-21 14:03:36 +01:00
parent 16758eec6d
commit 8a62f38159
5 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
from . import models
from . import models, wizard

View File

@ -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']
}

View File

@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
from . import coworking_event_weekly

View 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'

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
</odoo>