__manifest__.py
1.04 KB
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
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'E-OFFICE LETTER',
'version': '0.1',
'summary': 'Letter Office Management',
'sequence': 11,
'description': """
E-OFFICE
=================
Memudahkan dalam mengelola surat menyurat
""",
'category': 'IDG OFFICE',
'website': 'https://opensipkd.com',
'images': [],
'depends': ['mail','hr', 'id_gov'],
'data': [
'security/account_security.xml',
'security/ir.model.access.csv',
'security/ir_rule.xml',
'data/sequence.xml',
'data/category.xml',
'data/type.xml',
'views/menus.xml',
'views/idg_letter_category.xml',
'views/idg_letter_type.xml',
'views/idg_letter.xml',
'views/task_letter.xml',
],
'demo': [
# 'security/ir_rule.xml',
# 'data/res_user.xml',
],
'qweb': [],
'installable': True,
'application': True,
'auto_install': False,
'license': 'LGPL-3',
'module': 'idg-letter'
}