-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
51 lines (45 loc) · 1.36 KB
/
__manifest__.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
50
51
# -*- coding: utf-8 -*-
{
'name': "DJBC IT Inventory",
'summary': """
Laporan IT Inventory DJBC""",
'description': """
Laporan IT Inventory DJBC untuk fasilitas TPB (KB, PLB, GB), KITE dan Non Fasilitas (Umum).
""",
'author': "Oktovan Rezman",
'website': 'https://www.prune.id',
'license': 'AGPL-3',
'images': [
# 'images/ptp.png',
# 'images/tes.png',
'images/main_screenshot.png'
],
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/12.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Extra Tools',
'version': '15.0.1.0.0',
# any module necessary for this one to work correctly
'depends': ['stock','product'],
# always loaded
'data': [
'views/stock_location.xml',
'views/stock_picking.xml',
#'views/stock_picking_type.xml',
'security/security.xml',
'security/ir.model.access.csv',
'views/doctype.xml',
'views/docs.xml',
'views/hscode.xml',
'views/categs.xml',
#'views/stock_move.xml',
'views/menu.xml',
#'views/stock_inventory.xml',
'views/product_template.xml',
'views/container.xml',
],
# only loaded in demonstration mode
'demo': [
],
'application' : True
}