diff --git a/app_module_superbar/__init__.py b/app_module_superbar/__init__.py
new file mode 100644
index 00000000..86764a0e
--- /dev/null
+++ b/app_module_superbar/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+
+from . import models
+from .hooks import post_init_hook
\ No newline at end of file
diff --git a/app_module_superbar/__manifest__.py b/app_module_superbar/__manifest__.py
new file mode 100644
index 00000000..a9c7fc42
--- /dev/null
+++ b/app_module_superbar/__manifest__.py
@@ -0,0 +1,62 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-08-15
+# author: 广州尚鹏,http://www.sunpop.cn
+# email: 300883@qq.com
+# resource of Sunpop
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# http://www.sunpop.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# http://www.sunpop.cn/odoo10_developer_document_offline/
+# description:
+
+{
+ 'name': "Apps Navigator by Category, Module Navigator",
+ 'version': '12.19.01.14',
+ 'author': 'Sunpop.cn',
+ 'category': 'Base',
+ 'website': 'http://www.sunpop.cn',
+ 'license': 'LGPL-3',
+ 'sequence': 2,
+ 'summary': """
+ Browse Apps by category tree. Browse Module by category. Use for parent children tree list kanban navigator.
+ Easy to navigator and browse any data. Support Search more list, kanban, pivot, graph view.
+ ztree widget.Hierarchy Tree.Parent Children relation tree..
+ """,
+ 'description': """
+ Superbar, zTree widget.
+ Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree,
+ eg: Product category tree ,Department tree, stock location tree.
+ 超级方便的查询,树状视图。
+ """,
+ 'price': 0.00,
+ 'currency': 'EUR',
+ 'depends': [
+ 'base',
+ ],
+ 'images': ['static/description/banner.gif'],
+ 'data': [
+ 'views/module_views.xml',
+ ],
+ 'demo': [
+ ],
+ 'test': [
+ ],
+ 'css': [
+ ],
+ 'qweb': [
+ 'static/src/xml/*.xml',
+ ],
+ 'js': [
+ ],
+ 'post_load': None,
+ 'post_init_hook': 'post_init_hook',
+ 'installable': True,
+ 'application': True,
+ 'auto_install': False,
+}
diff --git a/app_module_superbar/hooks.py b/app_module_superbar/hooks.py
new file mode 100644
index 00000000..3f9582b9
--- /dev/null
+++ b/app_module_superbar/hooks.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-10-12
+# author: 广州尚鹏,http://www.sunpop.cn
+# email: 300883@qq.com
+# resource of Sunpop
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# http://www.sunpop.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# http://www.sunpop.cn/odoo10_developer_document_offline/
+# description:
+
+def post_init_hook(cr, pool):
+ pass
+ # cr.execute("")
diff --git a/app_module_superbar/i18n/zh_CN.po b/app_module_superbar/i18n/zh_CN.po
new file mode 100644
index 00000000..f1e36e3e
--- /dev/null
+++ b/app_module_superbar/i18n/zh_CN.po
@@ -0,0 +1,14 @@
+# Translation of Odoo Server.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-01-08 14:28+0000\n"
+"PO-Revision-Date: 2018-01-08 14:28+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
diff --git a/app_module_superbar/models/__init__.py b/app_module_superbar/models/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_module_superbar/models/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_module_superbar/report/__init__.py b/app_module_superbar/report/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_module_superbar/report/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_module_superbar/static/description/account1.jpg b/app_module_superbar/static/description/account1.jpg
new file mode 100644
index 00000000..ace8d54a
Binary files /dev/null and b/app_module_superbar/static/description/account1.jpg differ
diff --git a/app_module_superbar/static/description/banner.gif b/app_module_superbar/static/description/banner.gif
new file mode 100644
index 00000000..48f55f93
Binary files /dev/null and b/app_module_superbar/static/description/banner.gif differ
diff --git a/app_module_superbar/static/description/banner.png b/app_module_superbar/static/description/banner.png
new file mode 100644
index 00000000..1f96341d
Binary files /dev/null and b/app_module_superbar/static/description/banner.png differ
diff --git a/app_module_superbar/static/description/contacts1.jpg b/app_module_superbar/static/description/contacts1.jpg
new file mode 100644
index 00000000..252f83d8
Binary files /dev/null and b/app_module_superbar/static/description/contacts1.jpg differ
diff --git a/app_module_superbar/static/description/demo2.jpg b/app_module_superbar/static/description/demo2.jpg
new file mode 100644
index 00000000..b856e71d
Binary files /dev/null and b/app_module_superbar/static/description/demo2.jpg differ
diff --git a/app_module_superbar/static/description/demo_module1.jpg b/app_module_superbar/static/description/demo_module1.jpg
new file mode 100644
index 00000000..1fc270fc
Binary files /dev/null and b/app_module_superbar/static/description/demo_module1.jpg differ
diff --git a/app_module_superbar/static/description/demo_module2.jpg b/app_module_superbar/static/description/demo_module2.jpg
new file mode 100644
index 00000000..f06f79fd
Binary files /dev/null and b/app_module_superbar/static/description/demo_module2.jpg differ
diff --git a/app_module_superbar/static/description/hr2.gif b/app_module_superbar/static/description/hr2.gif
new file mode 100644
index 00000000..6690e747
Binary files /dev/null and b/app_module_superbar/static/description/hr2.gif differ
diff --git a/app_module_superbar/static/description/icon.png b/app_module_superbar/static/description/icon.png
new file mode 100644
index 00000000..4c57f611
Binary files /dev/null and b/app_module_superbar/static/description/icon.png differ
diff --git a/app_module_superbar/static/description/index.html b/app_module_superbar/static/description/index.html
new file mode 100644
index 00000000..2bf3e38c
--- /dev/null
+++ b/app_module_superbar/static/description/index.html
@@ -0,0 +1,332 @@
+Apps Navigator by Category, Module Navigator
+
+ !This moduld Do Need extra paid Apps
+
+ Click to download.
+
+ Advance Search, Advance Filter with Parent Children Tree.
+ Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.
+ Online demo user/password: demo/demo
+
+ Click to get demo.
+
+
+
+ Apps Navigator by Category, Module Navigator is ready.
+
+
+
+ So Easy to navigator and search any data.
+ Product by category or type in kanban view
+
+
+ Filter product or any data in search more windows
+
+ Use in product category.
+
+ Use in HR emploee.
+
+ Use in Account.
+
+ Use in Sale.
+
+ Use in purchase.
+
+ Use in contacts.
+
+
+ How to use! This app do need extra module. The price already included
+ 1. Install zTree widget.
+
+ Click to download.
+
+
+ 2. Install app_web_superbar. Important! Reboot odoo after installed.
+
+ 3. Easy use of superbar
+ Show superbar in list view.
+
+ Show superbar in kanban view.
+
+ Show superbar in pivot view.
+
+ Show superbar in graph view.
+
+ Click switch to show or hide superbar.
+
+ Click checkbox to set whether to show child nodes data.
+
+ Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes
+
+ Set multi field to search or filter
+
+ Set super bar position, left or right.
+
+ 4. If you want to customize, Use follow param to setup widget:
+
+
+
+ Technical Help & Support
+
+ For any type of technical help & support requests, Feel free to contact us
+
+
+ Via QQ: 300883
+
+
+ Visit our website for more support.
+
+
+
+