diff --git a/app_account_superbar_chinese/static/description/index.html b/app_account_superbar_chinese/static/description/index.html
index f81f19e2..a25ecce0 100644
--- a/app_account_superbar_chinese/static/description/index.html
+++ b/app_account_superbar_chinese/static/description/index.html
@@ -136,14 +136,14 @@
diff --git a/app_base_superbar/__init__.py b/app_base_superbar/__init__.py
new file mode 100644
index 00000000..86764a0e
--- /dev/null
+++ b/app_base_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_base_superbar/__manifest__.py b/app_base_superbar/__manifest__.py
new file mode 100644
index 00000000..3c3be3b7
--- /dev/null
+++ b/app_base_superbar/__manifest__.py
@@ -0,0 +1,71 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-08-15
+# author: 广州尚鹏,https://www.sunpop.cn
+# email: 300883@qq.com
+# resource of Sunpop
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.sunpop.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.sunpop.cn/odoo10_developer_document_offline/
+# description:
+
+{
+ 'name': "Easy Admin navigator, quick search filter",
+ 'version': '12.19.05.11',
+ 'author': 'Sunpop.cn',
+ 'category': 'Base',
+ 'website': 'https://www.sunpop.cn',
+ 'license': 'LGPL-3',
+ 'sequence': 10,
+ 'summary': """
+ menu admin, fields admin, action admin, views easy admin and search, quick admin navigator by all kind of category. Use for parent children tree list kanban navigator.
+ 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': [
+ 'web',
+ ],
+ 'images': ['static/description/banner.png'],
+ 'data': [
+ 'views/ir_actions_act_window_views.xml',
+ 'views/ir_actions_actions_views.xml',
+ 'views/ir_actions_report_views.xml',
+ 'views/ir_actions_server_views.xml',
+ 'views/ir_attachment_views.xml',
+ 'views/ir_default_views.xml',
+ 'views/ir_model_access_views.xml',
+ 'views/ir_model_constraint_views.xml',
+ 'views/ir_model_fields_views.xml',
+ 'views/ir_ui_menu_views.xml',
+ 'views/ir_ui_view_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_base_superbar/hooks.py b/app_base_superbar/hooks.py
new file mode 100644
index 00000000..7edef364
--- /dev/null
+++ b/app_base_superbar/hooks.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-10-12
+# author: 广州尚鹏,https://www.sunpop.cn
+# email: 300883@qq.com
+# resource of Sunpop
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.sunpop.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.sunpop.cn/odoo10_developer_document_offline/
+# description:
+
+def post_init_hook(cr, pool):
+ pass
+ # cr.execute("")
diff --git a/app_base_superbar/i18n/zh_CN.po b/app_base_superbar/i18n/zh_CN.po
new file mode 100644
index 00000000..f1e36e3e
--- /dev/null
+++ b/app_base_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_base_superbar/models/__init__.py b/app_base_superbar/models/__init__.py
new file mode 100644
index 00000000..40a96afc
--- /dev/null
+++ b/app_base_superbar/models/__init__.py
@@ -0,0 +1 @@
+# -*- coding: utf-8 -*-
diff --git a/app_base_superbar/report/__init__.py b/app_base_superbar/report/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_base_superbar/report/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_base_superbar/static/description/account1.jpg b/app_base_superbar/static/description/account1.jpg
new file mode 100644
index 00000000..28307428
Binary files /dev/null and b/app_base_superbar/static/description/account1.jpg differ
diff --git a/app_base_superbar/static/description/banner.gif b/app_base_superbar/static/description/banner.gif
new file mode 100644
index 00000000..9ac0a25e
Binary files /dev/null and b/app_base_superbar/static/description/banner.gif differ
diff --git a/app_base_superbar/static/description/banner.png b/app_base_superbar/static/description/banner.png
new file mode 100644
index 00000000..448eb9f0
Binary files /dev/null and b/app_base_superbar/static/description/banner.png differ
diff --git a/app_base_superbar/static/description/base1.jpg b/app_base_superbar/static/description/base1.jpg
new file mode 100644
index 00000000..ce29abcb
Binary files /dev/null and b/app_base_superbar/static/description/base1.jpg differ
diff --git a/app_base_superbar/static/description/base2.jpg b/app_base_superbar/static/description/base2.jpg
new file mode 100644
index 00000000..7046a959
Binary files /dev/null and b/app_base_superbar/static/description/base2.jpg differ
diff --git a/app_base_superbar/static/description/base3.jpg b/app_base_superbar/static/description/base3.jpg
new file mode 100644
index 00000000..b3c9406e
Binary files /dev/null and b/app_base_superbar/static/description/base3.jpg differ
diff --git a/app_base_superbar/static/description/base4.jpg b/app_base_superbar/static/description/base4.jpg
new file mode 100644
index 00000000..6315e2e3
Binary files /dev/null and b/app_base_superbar/static/description/base4.jpg differ
diff --git a/app_base_superbar/static/description/base5.jpg b/app_base_superbar/static/description/base5.jpg
new file mode 100644
index 00000000..c7358473
Binary files /dev/null and b/app_base_superbar/static/description/base5.jpg differ
diff --git a/app_base_superbar/static/description/base6.jpg b/app_base_superbar/static/description/base6.jpg
new file mode 100644
index 00000000..8df592e5
Binary files /dev/null and b/app_base_superbar/static/description/base6.jpg differ
diff --git a/app_base_superbar/static/description/base7.jpg b/app_base_superbar/static/description/base7.jpg
new file mode 100644
index 00000000..6aacf102
Binary files /dev/null and b/app_base_superbar/static/description/base7.jpg differ
diff --git a/app_base_superbar/static/description/base8.jpg b/app_base_superbar/static/description/base8.jpg
new file mode 100644
index 00000000..1da1a2c1
Binary files /dev/null and b/app_base_superbar/static/description/base8.jpg differ
diff --git a/app_base_superbar/static/description/base9.jpg b/app_base_superbar/static/description/base9.jpg
new file mode 100644
index 00000000..1238a9d5
Binary files /dev/null and b/app_base_superbar/static/description/base9.jpg differ
diff --git a/app_base_superbar/static/description/contacts1.jpg b/app_base_superbar/static/description/contacts1.jpg
new file mode 100644
index 00000000..4ac551a5
Binary files /dev/null and b/app_base_superbar/static/description/contacts1.jpg differ
diff --git a/app_base_superbar/static/description/crm1.jpg b/app_base_superbar/static/description/crm1.jpg
new file mode 100644
index 00000000..2d53c641
Binary files /dev/null and b/app_base_superbar/static/description/crm1.jpg differ
diff --git a/app_base_superbar/static/description/demo2.jpg b/app_base_superbar/static/description/demo2.jpg
new file mode 100644
index 00000000..c34083e0
Binary files /dev/null and b/app_base_superbar/static/description/demo2.jpg differ
diff --git a/app_base_superbar/static/description/demo_module1.jpg b/app_base_superbar/static/description/demo_module1.jpg
new file mode 100644
index 00000000..1fc270fc
Binary files /dev/null and b/app_base_superbar/static/description/demo_module1.jpg differ
diff --git a/app_base_superbar/static/description/demo_module2.jpg b/app_base_superbar/static/description/demo_module2.jpg
new file mode 100644
index 00000000..f06f79fd
Binary files /dev/null and b/app_base_superbar/static/description/demo_module2.jpg differ
diff --git a/app_base_superbar/static/description/hr1.jpg b/app_base_superbar/static/description/hr1.jpg
new file mode 100644
index 00000000..19913106
Binary files /dev/null and b/app_base_superbar/static/description/hr1.jpg differ
diff --git a/app_base_superbar/static/description/hr2.gif b/app_base_superbar/static/description/hr2.gif
new file mode 100644
index 00000000..6690e747
Binary files /dev/null and b/app_base_superbar/static/description/hr2.gif differ
diff --git a/app_base_superbar/static/description/icon.png b/app_base_superbar/static/description/icon.png
new file mode 100644
index 00000000..23ac0bd7
Binary files /dev/null and b/app_base_superbar/static/description/icon.png differ
diff --git a/app_base_superbar/static/description/index.html b/app_base_superbar/static/description/index.html
new file mode 100644
index 00000000..5a59ec05
--- /dev/null
+++ b/app_base_superbar/static/description/index.html
@@ -0,0 +1,482 @@
+
+
+
Quick Admin navigator, Superbar with Parent Children Tree
+
+
Menu admin by menu category
+
+

+
+
Actions admin by type and model
+
+

+
+
+

+
+
+

+
+
Report admin by type and model
+
+

+
+
Views admin by type and model
+
+

+
+
Model Constraints admin by module and model
+
+

+
+
Attachment admin by type and creator
+
+

+
+
The following is the feather of extra paid Apps, which support this apps.
+
+
+
+
+
+
App Advance Search Sidebar with Hierarchy Parent Children Tree
+
+
+
+
+
+

+
+
Advance Search, Advance Filter with Parent Children Tree.
+
+
Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.
+
What you see is what you get.
+ Online demo user/password: demo/demo
+
+ Click to get demo.
+
+
+
+
+
+
+
+
+
+
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
+
+

+
+
+
+
+
+
+
Free to Use in product category.
+
+

+
+
+
+
+
+
+
Use in HR employee.
+
+

+
+
+
+
+
+
+
Use in Account.
+
+

+
+
+
+
+
+
+
Use in Sale.
+
+

+
+
+
+
+
+
+
Use in CRM.
+
+

+
+
+
+
+
+
+
Use in purchase.
+
+

+
+
+
+
+
+
+
Use in MRP.
+
+

+
+
+
+
+
+
+
Use in stock.
+
+

+
+
+
+
+
+
+
Use in contacts.
+
+

+
+
+
+
+
+
+
Apps Navigator by Category, Module Navigator is ready.
+
+

+
+
+

+
+
+
+
+
+
+
Buy this apps, get Extra bonus apps, App zTree widget, Hierarchy Parent tree in m2o select
+
Ready for product category Hierarchy Parent tree in m2o select
+
+

+
+
Ready for Stock Location Hierarchy Parent tree in m2o select
+
+

+
+
Ready for Hr Department Hierarchy Parent tree in m2o select
+
+

+
+
+
+
+
+
+
+
How to use! This app do need extra module. The price already included
+
+
+
+
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:
+
+
+

+
+
+ - In search view xml, Write the <superbar> tag,
+ - position: [left, right]
+ - view_mode: [kanban,tree, pivot, graph view.]
+ - parent_key: key field name of parent child relation. leave blank would auto set.
+ - level: how many level to expend the tree for initialize. Default is 2
+ - limit: how many record to show ztree. Default is 16
+ - order: the field name to order by
+ - domain: set the domain for data, eg: [[('is_company', '=', 1)]]
+ - --
+ - Or you can set dynamic domain in .py file.
+ - use param: search_superbar_domain_xxx , xxx is a field name.
+
+
+
+
+
+
+
+
+
+
Technical Help & Support
+
+
+
+
+
diff --git a/app_base_superbar/static/description/mail1.jpg b/app_base_superbar/static/description/mail1.jpg
new file mode 100644
index 00000000..1595fe83
Binary files /dev/null and b/app_base_superbar/static/description/mail1.jpg differ
diff --git a/app_base_superbar/static/description/mail2.jpg b/app_base_superbar/static/description/mail2.jpg
new file mode 100644
index 00000000..ba7a9711
Binary files /dev/null and b/app_base_superbar/static/description/mail2.jpg differ
diff --git a/app_base_superbar/static/description/mail3.jpg b/app_base_superbar/static/description/mail3.jpg
new file mode 100644
index 00000000..908f028a
Binary files /dev/null and b/app_base_superbar/static/description/mail3.jpg differ
diff --git a/app_base_superbar/static/description/mail4.jpg b/app_base_superbar/static/description/mail4.jpg
new file mode 100644
index 00000000..049623f8
Binary files /dev/null and b/app_base_superbar/static/description/mail4.jpg differ
diff --git a/app_base_superbar/static/description/mrp1.gif b/app_base_superbar/static/description/mrp1.gif
new file mode 100644
index 00000000..f19e76cb
Binary files /dev/null and b/app_base_superbar/static/description/mrp1.gif differ
diff --git a/app_base_superbar/static/description/mrp1.jpg b/app_base_superbar/static/description/mrp1.jpg
new file mode 100644
index 00000000..f2fce20d
Binary files /dev/null and b/app_base_superbar/static/description/mrp1.jpg differ
diff --git a/app_base_superbar/static/description/product1.jpg b/app_base_superbar/static/description/product1.jpg
new file mode 100644
index 00000000..be4dfe7d
Binary files /dev/null and b/app_base_superbar/static/description/product1.jpg differ
diff --git a/app_base_superbar/static/description/purchase1.jpg b/app_base_superbar/static/description/purchase1.jpg
new file mode 100644
index 00000000..65a5d63a
Binary files /dev/null and b/app_base_superbar/static/description/purchase1.jpg differ
diff --git a/app_base_superbar/static/description/sale1.jpg b/app_base_superbar/static/description/sale1.jpg
new file mode 100644
index 00000000..92555d06
Binary files /dev/null and b/app_base_superbar/static/description/sale1.jpg differ
diff --git a/app_base_superbar/static/description/searchmore.jpg b/app_base_superbar/static/description/searchmore.jpg
new file mode 100644
index 00000000..d37c652d
Binary files /dev/null and b/app_base_superbar/static/description/searchmore.jpg differ
diff --git a/app_base_superbar/static/description/stock1.jpg b/app_base_superbar/static/description/stock1.jpg
new file mode 100644
index 00000000..0aeb92ff
Binary files /dev/null and b/app_base_superbar/static/description/stock1.jpg differ
diff --git a/app_base_superbar/static/description/superbar_use.gif b/app_base_superbar/static/description/superbar_use.gif
new file mode 100644
index 00000000..2ec5abde
Binary files /dev/null and b/app_base_superbar/static/description/superbar_use.gif differ
diff --git a/app_base_superbar/static/description/superbar_use.png b/app_base_superbar/static/description/superbar_use.png
new file mode 100644
index 00000000..d5ffc980
Binary files /dev/null and b/app_base_superbar/static/description/superbar_use.png differ
diff --git a/app_base_superbar/static/description/use.jpg b/app_base_superbar/static/description/use.jpg
new file mode 100644
index 00000000..5b0e661b
Binary files /dev/null and b/app_base_superbar/static/description/use.jpg differ
diff --git a/app_base_superbar/static/description/use1.jpg b/app_base_superbar/static/description/use1.jpg
new file mode 100644
index 00000000..ed3334d2
Binary files /dev/null and b/app_base_superbar/static/description/use1.jpg differ
diff --git a/app_base_superbar/static/description/use2.jpg b/app_base_superbar/static/description/use2.jpg
new file mode 100644
index 00000000..4d46d705
Binary files /dev/null and b/app_base_superbar/static/description/use2.jpg differ
diff --git a/app_base_superbar/static/description/use3.jpg b/app_base_superbar/static/description/use3.jpg
new file mode 100644
index 00000000..fe8b7ef7
Binary files /dev/null and b/app_base_superbar/static/description/use3.jpg differ
diff --git a/app_base_superbar/static/description/use4.jpg b/app_base_superbar/static/description/use4.jpg
new file mode 100644
index 00000000..606a5ce6
Binary files /dev/null and b/app_base_superbar/static/description/use4.jpg differ
diff --git a/app_base_superbar/static/description/use5.jpg b/app_base_superbar/static/description/use5.jpg
new file mode 100644
index 00000000..493769c2
Binary files /dev/null and b/app_base_superbar/static/description/use5.jpg differ
diff --git a/app_base_superbar/static/description/use6.jpg b/app_base_superbar/static/description/use6.jpg
new file mode 100644
index 00000000..da80eb13
Binary files /dev/null and b/app_base_superbar/static/description/use6.jpg differ
diff --git a/app_base_superbar/static/description/use7.jpg b/app_base_superbar/static/description/use7.jpg
new file mode 100644
index 00000000..c5a43a60
Binary files /dev/null and b/app_base_superbar/static/description/use7.jpg differ
diff --git a/app_base_superbar/static/description/use8.jpg b/app_base_superbar/static/description/use8.jpg
new file mode 100644
index 00000000..ebc595fe
Binary files /dev/null and b/app_base_superbar/static/description/use8.jpg differ
diff --git a/app_base_superbar/static/description/use9.jpg b/app_base_superbar/static/description/use9.jpg
new file mode 100644
index 00000000..9d7175bc
Binary files /dev/null and b/app_base_superbar/static/description/use9.jpg differ
diff --git a/app_base_superbar/static/description/usea.jpg b/app_base_superbar/static/description/usea.jpg
new file mode 100644
index 00000000..5edddb90
Binary files /dev/null and b/app_base_superbar/static/description/usea.jpg differ
diff --git a/app_base_superbar/static/description/z_hr1.gif b/app_base_superbar/static/description/z_hr1.gif
new file mode 100644
index 00000000..6d232374
Binary files /dev/null and b/app_base_superbar/static/description/z_hr1.gif differ
diff --git a/app_base_superbar/static/description/z_product1.gif b/app_base_superbar/static/description/z_product1.gif
new file mode 100644
index 00000000..4580fa53
Binary files /dev/null and b/app_base_superbar/static/description/z_product1.gif differ
diff --git a/app_base_superbar/static/description/z_stock1.gif b/app_base_superbar/static/description/z_stock1.gif
new file mode 100644
index 00000000..14e9c101
Binary files /dev/null and b/app_base_superbar/static/description/z_stock1.gif differ
diff --git a/app_base_superbar/views/ir_actions_act_window_views.xml b/app_base_superbar/views/ir_actions_act_window_views.xml
new file mode 100644
index 00000000..734081c4
--- /dev/null
+++ b/app_base_superbar/views/ir_actions_act_window_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.actions.windows.search
+ ir.actions.act_window
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_actions_actions_views.xml b/app_base_superbar/views/ir_actions_actions_views.xml
new file mode 100644
index 00000000..68b0df3c
--- /dev/null
+++ b/app_base_superbar/views/ir_actions_actions_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.actions.actions.search
+ ir.actions.actions
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_actions_report_views.xml b/app_base_superbar/views/ir_actions_report_views.xml
new file mode 100644
index 00000000..d162ce65
--- /dev/null
+++ b/app_base_superbar/views/ir_actions_report_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.actions.report.search
+ ir.actions.report
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_actions_server_views.xml b/app_base_superbar/views/ir_actions_server_views.xml
new file mode 100644
index 00000000..9e9da0ec
--- /dev/null
+++ b/app_base_superbar/views/ir_actions_server_views.xml
@@ -0,0 +1,18 @@
+
+
+
+ app.ir.actions.server.search
+ ir.actions.server
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_attachment_views.xml b/app_base_superbar/views/ir_attachment_views.xml
new file mode 100644
index 00000000..cacc9879
--- /dev/null
+++ b/app_base_superbar/views/ir_attachment_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.attachment.search
+ ir.attachment
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_default_views.xml b/app_base_superbar/views/ir_default_views.xml
new file mode 100644
index 00000000..81b10fe0
--- /dev/null
+++ b/app_base_superbar/views/ir_default_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.default.search
+ ir.default
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_model_access_views.xml b/app_base_superbar/views/ir_model_access_views.xml
new file mode 100644
index 00000000..33e16c26
--- /dev/null
+++ b/app_base_superbar/views/ir_model_access_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.model.access.search
+ ir.model.access
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_model_constraint_views.xml b/app_base_superbar/views/ir_model_constraint_views.xml
new file mode 100644
index 00000000..7a9db8ed
--- /dev/null
+++ b/app_base_superbar/views/ir_model_constraint_views.xml
@@ -0,0 +1,18 @@
+
+
+
+ app.ir.model.constraint.search
+ ir.model.constraint
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_model_fields_views.xml b/app_base_superbar/views/ir_model_fields_views.xml
new file mode 100644
index 00000000..fc5d2e77
--- /dev/null
+++ b/app_base_superbar/views/ir_model_fields_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.model.fields.search
+ ir.model.fields
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_ui_menu_views.xml b/app_base_superbar/views/ir_ui_menu_views.xml
new file mode 100644
index 00000000..7e0127a0
--- /dev/null
+++ b/app_base_superbar/views/ir_ui_menu_views.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app_base_superbar/views/ir_ui_view_views.xml b/app_base_superbar/views/ir_ui_view_views.xml
new file mode 100644
index 00000000..3a45dab7
--- /dev/null
+++ b/app_base_superbar/views/ir_ui_view_views.xml
@@ -0,0 +1,17 @@
+
+
+
+ app.ir.ui.menu.search
+ ir.ui.view
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_contacts_superbar/static/description/index.html b/app_contacts_superbar/static/description/index.html
index bf65aab6..dbb7dd63 100644
--- a/app_contacts_superbar/static/description/index.html
+++ b/app_contacts_superbar/static/description/index.html
@@ -136,14 +136,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_crm_superbar/static/description/index.html b/app_crm_superbar/static/description/index.html
index 7af109f7..4fd3b048 100644
--- a/app_crm_superbar/static/description/index.html
+++ b/app_crm_superbar/static/description/index.html
@@ -148,14 +148,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_hr_superbar/static/description/index.html b/app_hr_superbar/static/description/index.html
index b7fd79b2..13ae3416 100644
--- a/app_hr_superbar/static/description/index.html
+++ b/app_hr_superbar/static/description/index.html
@@ -174,14 +174,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_mail_superbar/static/description/index.html b/app_mail_superbar/static/description/index.html
index ba0d1e69..2a385c24 100644
--- a/app_mail_superbar/static/description/index.html
+++ b/app_mail_superbar/static/description/index.html
@@ -325,14 +325,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_module_superbar/static/description/index.html b/app_module_superbar/static/description/index.html
index 13dad3ca..b825d1eb 100644
--- a/app_module_superbar/static/description/index.html
+++ b/app_module_superbar/static/description/index.html
@@ -192,14 +192,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_mrp_superbar/static/description/index.html b/app_mrp_superbar/static/description/index.html
index f124021d..7f689cc5 100644
--- a/app_mrp_superbar/static/description/index.html
+++ b/app_mrp_superbar/static/description/index.html
@@ -248,14 +248,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html
index 0d762357..dd19c68c 100644
--- a/app_product_superbar/static/description/index.html
+++ b/app_product_superbar/static/description/index.html
@@ -248,14 +248,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_purchase_superbar/static/description/index.html b/app_purchase_superbar/static/description/index.html
index 9629d6c1..753a9618 100644
--- a/app_purchase_superbar/static/description/index.html
+++ b/app_purchase_superbar/static/description/index.html
@@ -136,14 +136,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_sale_superbar/static/description/index.html b/app_sale_superbar/static/description/index.html
index 2a699cff..47a7ef3a 100644
--- a/app_sale_superbar/static/description/index.html
+++ b/app_sale_superbar/static/description/index.html
@@ -136,14 +136,14 @@
How to use! This app do need extra module. The price already included
-
1. Install zTree widget.
+
-
2. Install app_web_superbar. Important! Reboot odoo after installed.
+ 2. Buy and Install app_web_superbar. Important! Reboot odoo after installed.
diff --git a/app_stock_location_capacity/__manifest__.py b/app_stock_location_capacity/__manifest__.py
index c5090d4e..6b0686dc 100644
--- a/app_stock_location_capacity/__manifest__.py
+++ b/app_stock_location_capacity/__manifest__.py
@@ -59,5 +59,5 @@
],
'installable': True,
'application': True,
- 'auto_install': True,
+ 'auto_install': False,
}