-
Notifications
You must be signed in to change notification settings - Fork 9
/
__openerp__.py
49 lines (43 loc) · 1.07 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
{
'name' : 'Booking management',
'version' : '1.2',
'author' : 'Alicia FLOREZ & Sébastien CHAZALLET',
'category': 'Sales Management',
'summary': 'Management of house, guestroom or hotel bookings.',
'description' : """
Manage your bookings
====================
This module is used by :
- hotels
- guest houses
- guest rooms
Manage rental schedule, bookings, arrivals and departure.
Use it with its WebSite App and allow your customers to rent online !
In further versions, will manage quotations, invoices, and seasons.
""",
'website': 'http://www.inspyration.fr',
'images' : [],
'depends' : ['base', 'mail', 'crm'],
'data': [
'security/booking_security.xml',
'security/ir.model.access.csv',
'views/res_config_view.xml',
'views/booking_view.xml',
'report/voucher.xml',
'views/email.xml',
],
'js': [
],
'qweb' : [
],
'css':[
],
'demo': [
],
'test': [
],
'installable': True,
'auto_install': False,
'application': True,
}