You may also like these free Apps for odoo.
diff --git a/app_stock_superbar/__init__.py b/app_stock_superbar/__init__.py
new file mode 100644
index 00000000..86764a0e
--- /dev/null
+++ b/app_stock_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_stock_superbar/__manifest__.py b/app_stock_superbar/__manifest__.py
new file mode 100644
index 00000000..f56dd205
--- /dev/null
+++ b/app_stock_superbar/__manifest__.py
@@ -0,0 +1,71 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-08-15
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+{
+ 'name': "Stock Superbar ztree, parent children tree",
+ 'version': '24.07.18',
+ 'author': 'odooai.cn',
+ 'category': 'Warehouse',
+ 'website': 'https://www.odooai.cn',
+ 'live_test_url': 'https://demo.odooapp.cn',
+ 'license': 'LGPL-3',
+ 'sequence': 2,
+ 'summary': """
+ Use for parent children tree list select navigator. stock location tree, filter by parent location.
+ ztree widget.
+ """,
+ 'description': """
+ zTree widget.
+ Advance search with real parent children tree, ListView or KanbanView ,
+ eg: Product category tree ,Department tree, stock location tree.
+ 超级方便的查询,树状视图。
+ """,
+ 'price': 0.00,
+ 'currency': 'EUR',
+ 'depends': [
+ 'stock',
+ 'stock_picking_batch',
+ ],
+ 'images': ['static/description/banner.gif'],
+ 'data': [
+ 'views/stock_location_views.xml',
+ 'views/stock_picking_views.xml',
+ 'views/stock_picking_batch_views.xml',
+ 'views/stock_picking_type_views.xml',
+ 'views/stock_warehouse_orderpoint_views.xml',
+ 'views/stock_rule_views.xml',
+ 'views/stock_lot_views.xml',
+ # todo: 以下两个模型调整了
+ # 'views/stock_location_route_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_stock_superbar/hooks.py b/app_stock_superbar/hooks.py
new file mode 100644
index 00000000..10ec1e29
--- /dev/null
+++ b/app_stock_superbar/hooks.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-10-12
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+def post_init_hook(env):
+ pass
+ # cr.execute("")
diff --git a/app_stock_superbar/i18n/zh_CN.po b/app_stock_superbar/i18n/zh_CN.po
new file mode 100644
index 00000000..f1e36e3e
--- /dev/null
+++ b/app_stock_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_stock_superbar/models/__init__.py b/app_stock_superbar/models/__init__.py
new file mode 100644
index 00000000..40a96afc
--- /dev/null
+++ b/app_stock_superbar/models/__init__.py
@@ -0,0 +1 @@
+# -*- coding: utf-8 -*-
diff --git a/app_stock_superbar/report/__init__.py b/app_stock_superbar/report/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_stock_superbar/report/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_stock_superbar/static/description/account1.jpg b/app_stock_superbar/static/description/account1.jpg
new file mode 100644
index 00000000..28307428
Binary files /dev/null and b/app_stock_superbar/static/description/account1.jpg differ
diff --git a/app_stock_superbar/static/description/banner.gif b/app_stock_superbar/static/description/banner.gif
new file mode 100644
index 00000000..ac3c0327
Binary files /dev/null and b/app_stock_superbar/static/description/banner.gif differ
diff --git a/app_stock_superbar/static/description/banner.png b/app_stock_superbar/static/description/banner.png
new file mode 100644
index 00000000..e3491918
Binary files /dev/null and b/app_stock_superbar/static/description/banner.png differ
diff --git a/app_stock_superbar/static/description/base1.jpg b/app_stock_superbar/static/description/base1.jpg
new file mode 100644
index 00000000..ffda9f17
Binary files /dev/null and b/app_stock_superbar/static/description/base1.jpg differ
diff --git a/app_stock_superbar/static/description/base2.jpg b/app_stock_superbar/static/description/base2.jpg
new file mode 100644
index 00000000..81a64eec
Binary files /dev/null and b/app_stock_superbar/static/description/base2.jpg differ
diff --git a/app_stock_superbar/static/description/base3.jpg b/app_stock_superbar/static/description/base3.jpg
new file mode 100644
index 00000000..4d5a5938
Binary files /dev/null and b/app_stock_superbar/static/description/base3.jpg differ
diff --git a/app_stock_superbar/static/description/base4.jpg b/app_stock_superbar/static/description/base4.jpg
new file mode 100644
index 00000000..ed7155a0
Binary files /dev/null and b/app_stock_superbar/static/description/base4.jpg differ
diff --git a/app_stock_superbar/static/description/base5.jpg b/app_stock_superbar/static/description/base5.jpg
new file mode 100644
index 00000000..d33631bd
Binary files /dev/null and b/app_stock_superbar/static/description/base5.jpg differ
diff --git a/app_stock_superbar/static/description/base6.jpg b/app_stock_superbar/static/description/base6.jpg
new file mode 100644
index 00000000..8fcb48f3
Binary files /dev/null and b/app_stock_superbar/static/description/base6.jpg differ
diff --git a/app_stock_superbar/static/description/base7.jpg b/app_stock_superbar/static/description/base7.jpg
new file mode 100644
index 00000000..7c7d76f6
Binary files /dev/null and b/app_stock_superbar/static/description/base7.jpg differ
diff --git a/app_stock_superbar/static/description/base8.jpg b/app_stock_superbar/static/description/base8.jpg
new file mode 100644
index 00000000..a002c442
Binary files /dev/null and b/app_stock_superbar/static/description/base8.jpg differ
diff --git a/app_stock_superbar/static/description/base9.jpg b/app_stock_superbar/static/description/base9.jpg
new file mode 100644
index 00000000..cb98e140
Binary files /dev/null and b/app_stock_superbar/static/description/base9.jpg differ
diff --git a/app_stock_superbar/static/description/contacts1.jpg b/app_stock_superbar/static/description/contacts1.jpg
new file mode 100644
index 00000000..4ac551a5
Binary files /dev/null and b/app_stock_superbar/static/description/contacts1.jpg differ
diff --git a/app_stock_superbar/static/description/crm1.jpg b/app_stock_superbar/static/description/crm1.jpg
new file mode 100644
index 00000000..2d53c641
Binary files /dev/null and b/app_stock_superbar/static/description/crm1.jpg differ
diff --git a/app_stock_superbar/static/description/demo1.jpg b/app_stock_superbar/static/description/demo1.jpg
new file mode 100644
index 00000000..fd538628
Binary files /dev/null and b/app_stock_superbar/static/description/demo1.jpg differ
diff --git a/app_stock_superbar/static/description/demo11.jpg b/app_stock_superbar/static/description/demo11.jpg
new file mode 100644
index 00000000..72ad356b
Binary files /dev/null and b/app_stock_superbar/static/description/demo11.jpg differ
diff --git a/app_stock_superbar/static/description/demo12.jpg b/app_stock_superbar/static/description/demo12.jpg
new file mode 100644
index 00000000..ecc58186
Binary files /dev/null and b/app_stock_superbar/static/description/demo12.jpg differ
diff --git a/app_stock_superbar/static/description/demo2.jpg b/app_stock_superbar/static/description/demo2.jpg
new file mode 100644
index 00000000..c34083e0
Binary files /dev/null and b/app_stock_superbar/static/description/demo2.jpg differ
diff --git a/app_stock_superbar/static/description/demo3.jpg b/app_stock_superbar/static/description/demo3.jpg
new file mode 100644
index 00000000..e82b0990
Binary files /dev/null and b/app_stock_superbar/static/description/demo3.jpg differ
diff --git a/app_stock_superbar/static/description/demo4.jpg b/app_stock_superbar/static/description/demo4.jpg
new file mode 100644
index 00000000..4a4abce1
Binary files /dev/null and b/app_stock_superbar/static/description/demo4.jpg differ
diff --git a/app_stock_superbar/static/description/demo5.jpg b/app_stock_superbar/static/description/demo5.jpg
new file mode 100644
index 00000000..849b7841
Binary files /dev/null and b/app_stock_superbar/static/description/demo5.jpg differ
diff --git a/app_stock_superbar/static/description/demo_module1.jpg b/app_stock_superbar/static/description/demo_module1.jpg
new file mode 100644
index 00000000..1fc270fc
Binary files /dev/null and b/app_stock_superbar/static/description/demo_module1.jpg differ
diff --git a/app_stock_superbar/static/description/demo_module2.jpg b/app_stock_superbar/static/description/demo_module2.jpg
new file mode 100644
index 00000000..f06f79fd
Binary files /dev/null and b/app_stock_superbar/static/description/demo_module2.jpg differ
diff --git a/app_stock_superbar/static/description/hr1.jpg b/app_stock_superbar/static/description/hr1.jpg
new file mode 100644
index 00000000..19913106
Binary files /dev/null and b/app_stock_superbar/static/description/hr1.jpg differ
diff --git a/app_stock_superbar/static/description/hr2.gif b/app_stock_superbar/static/description/hr2.gif
new file mode 100644
index 00000000..6690e747
Binary files /dev/null and b/app_stock_superbar/static/description/hr2.gif differ
diff --git a/app_stock_superbar/static/description/icon.png b/app_stock_superbar/static/description/icon.png
new file mode 100644
index 00000000..23ac0bd7
Binary files /dev/null and b/app_stock_superbar/static/description/icon.png differ
diff --git a/app_stock_superbar/static/description/index.html b/app_stock_superbar/static/description/index.html
new file mode 100644
index 00000000..69296aa0
--- /dev/null
+++ b/app_stock_superbar/static/description/index.html
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
Key features:
+
+ -
+
+ Easy to make custom parent children tree.
+
+ -
+
+ Free to Use in product category.
+
+ -
+
+ Free to Use in stock location.
+
+ -
+
+ Free to Use in hr department, employee.
+
+ -
+
+ It's a widget, you can use it in anywhere in odoo.
+
+
+
+
+
+
+
+
+
+
+
+
Free to Use in stock location.
+
+

+
+
+
+
+
+
+
Use in product.
+
+

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

+
+
+
+
+
+
+
+
Use in hr department.
+
+

+
+
+
+
+
+
+
Use in hr employee.
+
+

+
+
+
+
+
+
+
+
+
(!Need extra module and pay, release soon)Easy to navigator.
+
Product, employee in kanban view
+
+

+
+
+
+
+
+
+
(!Need extra module and pay, release soon)List view
+
+

+
+
+
+
+
+
+
Easy to setup just use widget='widget_select'. like this
+
+

+
+
Use follow param to setup widget:
+
ztree_parent_key: --the key field of parent children relation.
+
ztree_expend_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 to order by
+
+
+
+
+
+
Technical Help & Support
+
+
+
+
+ For any type of technical help & support requests, Feel free to contact us
+
+ odoo@china.com
+
+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)
+
+ 300883@qq.com
+
+
+
+ Visit our website for more support.
+https://www.odooai.cn
+
+
+
+
+
diff --git a/app_stock_superbar/static/description/mrp1.gif b/app_stock_superbar/static/description/mrp1.gif
new file mode 100644
index 00000000..f19e76cb
Binary files /dev/null and b/app_stock_superbar/static/description/mrp1.gif differ
diff --git a/app_stock_superbar/static/description/mrp1.jpg b/app_stock_superbar/static/description/mrp1.jpg
new file mode 100644
index 00000000..f2fce20d
Binary files /dev/null and b/app_stock_superbar/static/description/mrp1.jpg differ
diff --git a/app_stock_superbar/static/description/pos1.jpg b/app_stock_superbar/static/description/pos1.jpg
new file mode 100644
index 00000000..32aaf5f4
Binary files /dev/null and b/app_stock_superbar/static/description/pos1.jpg differ
diff --git a/app_stock_superbar/static/description/pos2.jpg b/app_stock_superbar/static/description/pos2.jpg
new file mode 100644
index 00000000..19471a7e
Binary files /dev/null and b/app_stock_superbar/static/description/pos2.jpg differ
diff --git a/app_stock_superbar/static/description/pos3.jpg b/app_stock_superbar/static/description/pos3.jpg
new file mode 100644
index 00000000..8e63e208
Binary files /dev/null and b/app_stock_superbar/static/description/pos3.jpg differ
diff --git a/app_stock_superbar/static/description/product1.jpg b/app_stock_superbar/static/description/product1.jpg
new file mode 100644
index 00000000..efa649a3
Binary files /dev/null and b/app_stock_superbar/static/description/product1.jpg differ
diff --git a/app_stock_superbar/static/description/purchase1.jpg b/app_stock_superbar/static/description/purchase1.jpg
new file mode 100644
index 00000000..65a5d63a
Binary files /dev/null and b/app_stock_superbar/static/description/purchase1.jpg differ
diff --git a/app_stock_superbar/static/description/sale1.jpg b/app_stock_superbar/static/description/sale1.jpg
new file mode 100644
index 00000000..92555d06
Binary files /dev/null and b/app_stock_superbar/static/description/sale1.jpg differ
diff --git a/app_stock_superbar/static/description/searchmore.jpg b/app_stock_superbar/static/description/searchmore.jpg
new file mode 100644
index 00000000..d37c652d
Binary files /dev/null and b/app_stock_superbar/static/description/searchmore.jpg differ
diff --git a/app_stock_superbar/static/description/setup1.jpg b/app_stock_superbar/static/description/setup1.jpg
new file mode 100644
index 00000000..d5ade2b1
Binary files /dev/null and b/app_stock_superbar/static/description/setup1.jpg differ
diff --git a/app_stock_superbar/static/description/stock1.jpg b/app_stock_superbar/static/description/stock1.jpg
new file mode 100644
index 00000000..0aeb92ff
Binary files /dev/null and b/app_stock_superbar/static/description/stock1.jpg differ
diff --git a/app_stock_superbar/static/description/superbar.gif b/app_stock_superbar/static/description/superbar.gif
new file mode 100644
index 00000000..6e7318a5
Binary files /dev/null and b/app_stock_superbar/static/description/superbar.gif differ
diff --git a/app_stock_superbar/static/description/superbar_use.gif b/app_stock_superbar/static/description/superbar_use.gif
new file mode 100644
index 00000000..2ec5abde
Binary files /dev/null and b/app_stock_superbar/static/description/superbar_use.gif differ
diff --git a/app_stock_superbar/static/description/use.jpg b/app_stock_superbar/static/description/use.jpg
new file mode 100644
index 00000000..5b0e661b
Binary files /dev/null and b/app_stock_superbar/static/description/use.jpg differ
diff --git a/app_stock_superbar/static/description/use1.jpg b/app_stock_superbar/static/description/use1.jpg
new file mode 100644
index 00000000..d9c726da
Binary files /dev/null and b/app_stock_superbar/static/description/use1.jpg differ
diff --git a/app_stock_superbar/static/description/use2.jpg b/app_stock_superbar/static/description/use2.jpg
new file mode 100644
index 00000000..4d46d705
Binary files /dev/null and b/app_stock_superbar/static/description/use2.jpg differ
diff --git a/app_stock_superbar/static/description/use3.jpg b/app_stock_superbar/static/description/use3.jpg
new file mode 100644
index 00000000..fe8b7ef7
Binary files /dev/null and b/app_stock_superbar/static/description/use3.jpg differ
diff --git a/app_stock_superbar/static/description/use4.jpg b/app_stock_superbar/static/description/use4.jpg
new file mode 100644
index 00000000..606a5ce6
Binary files /dev/null and b/app_stock_superbar/static/description/use4.jpg differ
diff --git a/app_stock_superbar/static/description/use5.jpg b/app_stock_superbar/static/description/use5.jpg
new file mode 100644
index 00000000..493769c2
Binary files /dev/null and b/app_stock_superbar/static/description/use5.jpg differ
diff --git a/app_stock_superbar/static/description/use6.jpg b/app_stock_superbar/static/description/use6.jpg
new file mode 100644
index 00000000..da80eb13
Binary files /dev/null and b/app_stock_superbar/static/description/use6.jpg differ
diff --git a/app_stock_superbar/static/description/use7.jpg b/app_stock_superbar/static/description/use7.jpg
new file mode 100644
index 00000000..e43b1b21
Binary files /dev/null and b/app_stock_superbar/static/description/use7.jpg differ
diff --git a/app_stock_superbar/static/description/use8.jpg b/app_stock_superbar/static/description/use8.jpg
new file mode 100644
index 00000000..732cc71a
Binary files /dev/null and b/app_stock_superbar/static/description/use8.jpg differ
diff --git a/app_stock_superbar/static/description/use9.jpg b/app_stock_superbar/static/description/use9.jpg
new file mode 100644
index 00000000..9d7175bc
Binary files /dev/null and b/app_stock_superbar/static/description/use9.jpg differ
diff --git a/app_stock_superbar/static/description/usea.jpg b/app_stock_superbar/static/description/usea.jpg
new file mode 100644
index 00000000..b6279faa
Binary files /dev/null and b/app_stock_superbar/static/description/usea.jpg differ
diff --git a/app_stock_superbar/static/description/z_hr1.gif b/app_stock_superbar/static/description/z_hr1.gif
new file mode 100644
index 00000000..6d232374
Binary files /dev/null and b/app_stock_superbar/static/description/z_hr1.gif differ
diff --git a/app_stock_superbar/static/description/z_product1.gif b/app_stock_superbar/static/description/z_product1.gif
new file mode 100644
index 00000000..e471a66c
Binary files /dev/null and b/app_stock_superbar/static/description/z_product1.gif differ
diff --git a/app_stock_superbar/static/description/z_stock1.gif b/app_stock_superbar/static/description/z_stock1.gif
new file mode 100644
index 00000000..14e9c101
Binary files /dev/null and b/app_stock_superbar/static/description/z_stock1.gif differ
diff --git a/app_stock_superbar/static/img/icon_sunpop.png b/app_stock_superbar/static/img/icon_sunpop.png
new file mode 100644
index 00000000..aa490954
Binary files /dev/null and b/app_stock_superbar/static/img/icon_sunpop.png differ
diff --git a/app_stock_superbar/static/img/logo_sunpop.png b/app_stock_superbar/static/img/logo_sunpop.png
new file mode 100644
index 00000000..90cbe0e2
Binary files /dev/null and b/app_stock_superbar/static/img/logo_sunpop.png differ
diff --git a/app_stock_superbar/views/stock_location_route_views.xml b/app_stock_superbar/views/stock_location_route_views.xml
new file mode 100644
index 00000000..0421b08f
--- /dev/null
+++ b/app_stock_superbar/views/stock_location_route_views.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_location_views.xml b/app_stock_superbar/views/stock_location_views.xml
new file mode 100644
index 00000000..6c4f6a97
--- /dev/null
+++ b/app_stock_superbar/views/stock_location_views.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ stock.location.search.superbar
+ stock.location
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_lot_views.xml b/app_stock_superbar/views/stock_lot_views.xml
new file mode 100644
index 00000000..b9c79778
--- /dev/null
+++ b/app_stock_superbar/views/stock_lot_views.xml
@@ -0,0 +1,21 @@
+
+
+
+
+ Production Lots Filter superbar
+ stock.lot
+
+
+
+
+
+
+
+
+
+
+
+ {'display_complete': True, 'default_company_id': allowed_company_ids[0]}
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_picking_batch_views.xml b/app_stock_superbar/views/stock_picking_batch_views.xml
new file mode 100644
index 00000000..27a7f150
--- /dev/null
+++ b/app_stock_superbar/views/stock_picking_batch_views.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ stock.picking.batch.search.superbar
+ stock.picking.batch
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_picking_type_views.xml b/app_stock_superbar/views/stock_picking_type_views.xml
new file mode 100644
index 00000000..db1b29ca
--- /dev/null
+++ b/app_stock_superbar/views/stock_picking_type_views.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ stock.picking.type.filter.superbar
+ stock.picking.type
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_picking_views.xml b/app_stock_superbar/views/stock_picking_views.xml
new file mode 100644
index 00000000..b59c39ab
--- /dev/null
+++ b/app_stock_superbar/views/stock_picking_views.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ stock.picking.internal.search.superbar
+ stock.picking
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_rule_views.xml b/app_stock_superbar/views/stock_rule_views.xml
new file mode 100644
index 00000000..e297762d
--- /dev/null
+++ b/app_stock_superbar/views/stock_rule_views.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ stock.rule.select.superbar
+ stock.rule
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml b/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml
new file mode 100644
index 00000000..d9212b4f
--- /dev/null
+++ b/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ stock.warehouse.orderpoint.search.superbar
+ stock.warehouse.orderpoint
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app_website_blog_superbar/__init__.py b/app_website_blog_superbar/__init__.py
new file mode 100644
index 00000000..9ea74431
--- /dev/null
+++ b/app_website_blog_superbar/__init__.py
@@ -0,0 +1,7 @@
+# -*- coding: utf-8 -*-
+
+from . import models
+from . import controllers
+from .hooks import pre_init_hook
+from .hooks import post_init_hook
+from .hooks import uninstall_hook
\ No newline at end of file
diff --git a/app_website_blog_superbar/__manifest__.py b/app_website_blog_superbar/__manifest__.py
new file mode 100644
index 00000000..5eaaad90
--- /dev/null
+++ b/app_website_blog_superbar/__manifest__.py
@@ -0,0 +1,85 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2022-09-01
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+# Odoo16在线用户手册(长期更新)
+# https://www.odooai.cn/documentation/16.0/zh_CN/index.html
+
+# Odoo16在线开发者手册(长期更新)
+# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html
+
+# Odoo13在线用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html
+
+# Odoo13在线开发者手册(长期更新)
+# https://www.odooai.cn/documentation/13.0/index.html
+
+# Odoo10在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+
+##############################################################################
+# Copyright (C) 2009-TODAY odooai.cn Ltd. https://www.odooai.cn
+# Author: Ivan Deng,300883@qq.com
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+# See
.
+#
+# It is forbidden to publish, distribute, sublicense, or sell copies
+# of the Software or modified copies of the Software.
+##############################################################################
+
+{
+ 'name': "Website Blogs Search Enhance",
+ 'version': '24.07.18',
+ 'author': 'odooai.cn',
+ 'category': 'Website',
+ 'website': 'https://www.odooai.cn',
+ 'live_test_url': 'https://demo.odooapp.cn',
+ 'license': 'LGPL-3',
+ 'sequence': 2,
+ 'price': 0.00,
+ 'currency': 'EUR',
+ 'images': ['static/description/banner.png'],
+ 'depends': [
+ 'website_blog',
+ 'app_base_superbar',
+ ],
+ 'summary': '''
+ Odoo App of odooai.cn
+ ''',
+ 'description': '''
+ Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition
+ 1.
+ 2.
+ 11. Multi-language Support. Multi-Company Support.
+ 12. Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition.
+ 13. Full Open Source.
+ ==========
+ 1.
+ 2.
+ 11. 多语言支持,多公司支持
+ 12. Odoo 17,16,15,14,13,12, 企业版,社区版,在线SaaS.sh版,等全版本支持
+ 13. 代码完全开源
+ ''',
+ 'data': [
+ 'views/blog_post_views.xml',
+ 'views/ir_attachment_views.xml',
+ # 'report/.xml',
+ ],
+ 'demo': [],
+ # 'pre_init_hook': 'pre_init_hook',
+ # 'post_init_hook': 'post_init_hook',
+ # 'uninstall_hook': 'uninstall_hook',
+ 'installable': True,
+ 'application': True,
+ 'auto_install': False,
+}
diff --git a/app_website_blog_superbar/controllers/__init__.py b/app_website_blog_superbar/controllers/__init__.py
new file mode 100644
index 00000000..a4325e1f
--- /dev/null
+++ b/app_website_blog_superbar/controllers/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+# from . import main
diff --git a/app_website_blog_superbar/hooks.py b/app_website_blog_superbar/hooks.py
new file mode 100644
index 00000000..40a5ccf5
--- /dev/null
+++ b/app_website_blog_superbar/hooks.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-10-12
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+from odoo import api, SUPERUSER_ID, _
+
+
+def pre_init_hook(cr):
+ pass
+ # cr.execute("")
+
+def post_init_hook(cr, registry):
+ pass
+ # cr.execute("")
+
+def uninstall_hook(cr, registry):
+ pass
+ # cr.execute("")
+
diff --git a/app_website_blog_superbar/i18n/zh_CN.po b/app_website_blog_superbar/i18n/zh_CN.po
new file mode 100644
index 00000000..0f6f3ace
--- /dev/null
+++ b/app_website_blog_superbar/i18n/zh_CN.po
@@ -0,0 +1,21 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * app_website_blog_editor
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 16.0-20230320\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-04-10 17:30+0000\n"
+"PO-Revision-Date: 2023-04-10 17:30+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"
+
+#. module: app_website_blog_editor
+#: model_terms:ir.ui.view,arch_db:app_website_blog_editor.app_view_blog_post_form
+msgid "Content"
+msgstr "博客图文"
diff --git a/app_website_blog_superbar/models/__init__.py b/app_website_blog_superbar/models/__init__.py
new file mode 100644
index 00000000..1c412ced
--- /dev/null
+++ b/app_website_blog_superbar/models/__init__.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+# Part of odooai.cn. See LICENSE file for full copyright and licensing details.
+
+# Created on 2019-04-20
+# author: 欧度智能,http://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo12在线用户手册(长期更新)
+# http://www.odooai.cn/documentation/user/12.0/en/index.html
+
+# Odoo12在线开发者手册(长期更新)
+# http://www.odooai.cn/documentation/12.0/index.html
+
+# Odoo10在线中文用户手册(长期更新)
+# http://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# http://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# http://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
diff --git a/app_website_blog_superbar/report/__init__.py b/app_website_blog_superbar/report/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_website_blog_superbar/report/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_website_blog_superbar/security/app_security.xml b/app_website_blog_superbar/security/app_security.xml
new file mode 100644
index 00000000..a4b85605
--- /dev/null
+++ b/app_website_blog_superbar/security/app_security.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+ acc_module_user
+
+
+
+
+
+
+
+
+
+ App...
+ Helps you manage your ...
+ 8
+
+
+
+
+ App User
+
+
+ The user will be able to ...
+
+
+
+
+ App Admin
+
+
+ The user will be able to config ...
+
+
+
+
+
+
+
+
+
+ Users are allowed to access their own m///
+
+ ['|', ('partner_id', 'in', [user.partner_id.id]), ('user_id.id', '=', user.id)]
+
+
+
+
+
diff --git a/app_website_blog_superbar/security/ir.model.access.csv b/app_website_blog_superbar/security/ir.model.access.csv
new file mode 100644
index 00000000..58262d44
--- /dev/null
+++ b/app_website_blog_superbar/security/ir.model.access.csv
@@ -0,0 +1 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
\ No newline at end of file
diff --git a/app_website_blog_superbar/static/description/banner.png b/app_website_blog_superbar/static/description/banner.png
new file mode 100644
index 00000000..e3491918
Binary files /dev/null and b/app_website_blog_superbar/static/description/banner.png differ
diff --git a/app_website_blog_superbar/static/description/icon.png b/app_website_blog_superbar/static/description/icon.png
new file mode 100644
index 00000000..91a539ca
Binary files /dev/null and b/app_website_blog_superbar/static/description/icon.png differ
diff --git a/app_website_blog_superbar/static/description/index.html b/app_website_blog_superbar/static/description/index.html
new file mode 100644
index 00000000..f71c8c9f
--- /dev/null
+++ b/app_website_blog_superbar/static/description/index.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
Latest update: v13.23.03.23
+
+

+
+
+
+
Key features:
+
+ -
+
+ Put key function here.
+
+ -
+
+ 1.
+
+ -
+
+ 11. Multi-language Support. Multi-Company Support.
+
+ -
+
+ 12. Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition.
+
+
+
+
+
+
+
+
+
+
+
+
So Easy to navigator and search any data.
+
+
+

+
+
+
+
+
+
+
Multi-language Support..
+
+
+

+
+
+
+
+
+
+
+
Technical Help & Support
+
+
+
+
+ For any type of technical help & support requests, Feel free to contact us
+
+ odoo@china.com
+
+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)
+
+ 300883@qq.com
+
+
+
+
+
+
More Powerful addons, Make your odoo very easy to use, easy customize:
+ odooai.cn Odoo Addons
+
+
+
+
diff --git a/app_website_blog_superbar/static/img/icon_sunpop.png b/app_website_blog_superbar/static/img/icon_sunpop.png
new file mode 100644
index 00000000..aa490954
Binary files /dev/null and b/app_website_blog_superbar/static/img/icon_sunpop.png differ
diff --git a/app_website_blog_superbar/static/img/logo_sunpop.png b/app_website_blog_superbar/static/img/logo_sunpop.png
new file mode 100644
index 00000000..bc32c24e
Binary files /dev/null and b/app_website_blog_superbar/static/img/logo_sunpop.png differ
diff --git a/app_website_blog_superbar/static/src/js/sunpop.cn b/app_website_blog_superbar/static/src/js/sunpop.cn
new file mode 100644
index 00000000..e69de29b
diff --git a/app_website_blog_superbar/static/src/scss/sunpop.cn b/app_website_blog_superbar/static/src/scss/sunpop.cn
new file mode 100644
index 00000000..e69de29b
diff --git a/app_website_blog_superbar/static/src/xml/sunpop.cn b/app_website_blog_superbar/static/src/xml/sunpop.cn
new file mode 100644
index 00000000..e69de29b
diff --git a/app_website_blog_superbar/views/blog_post_views.xml b/app_website_blog_superbar/views/blog_post_views.xml
new file mode 100644
index 00000000..8a7d9ac8
--- /dev/null
+++ b/app_website_blog_superbar/views/blog_post_views.xml
@@ -0,0 +1,18 @@
+
+
+
+ app.blog.post.search
+ blog.post
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app_website_blog_superbar/views/ir_attachment_views.xml b/app_website_blog_superbar/views/ir_attachment_views.xml
new file mode 100644
index 00000000..7419762a
--- /dev/null
+++ b/app_website_blog_superbar/views/ir_attachment_views.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ app.ir.attachment search
+ ir.attachment
+
+
+
+
+
+
+
+
+
+
diff --git a/app_website_blog_superbar/wizard/sunpop.cn b/app_website_blog_superbar/wizard/sunpop.cn
new file mode 100644
index 00000000..e69de29b
diff --git a/app_website_product_superbar/__init__.py b/app_website_product_superbar/__init__.py
new file mode 100644
index 00000000..86764a0e
--- /dev/null
+++ b/app_website_product_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_website_product_superbar/__manifest__.py b/app_website_product_superbar/__manifest__.py
new file mode 100644
index 00000000..38b87d94
--- /dev/null
+++ b/app_website_product_superbar/__manifest__.py
@@ -0,0 +1,64 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-08-15
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+{
+ 'name': "App Website Product browse by category navigator",
+ 'version': '24.07.18',
+ 'author': 'odooai.cn',
+ 'category': 'Extra tools',
+ 'website': 'https://www.odooai.cn',
+ 'live_test_url': 'https://demo.odooapp.cn',
+ 'license': 'LGPL-3',
+ 'sequence': 2,
+ 'summary': """
+ Browse Product by website category tree. Use for parent children tree list kanban navigator.
+ Easy to navigator and browse any data. Support 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,
+ Product category tree ,Department tree, stock location tree.
+ 超级方便的查询,树状视图
+ """,
+ 'price': 0.00,
+ 'currency': 'EUR',
+ 'depends': [
+ 'website_sale',
+ 'app_product_superbar',
+ ],
+ 'images': ['static/description/banner.gif'],
+ 'data': [
+ 'views/product_template_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_website_product_superbar/hooks.py b/app_website_product_superbar/hooks.py
new file mode 100644
index 00000000..10ec1e29
--- /dev/null
+++ b/app_website_product_superbar/hooks.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2018-10-12
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+def post_init_hook(env):
+ pass
+ # cr.execute("")
diff --git a/app_website_product_superbar/i18n/zh_CN.po b/app_website_product_superbar/i18n/zh_CN.po
new file mode 100644
index 00000000..f1e36e3e
--- /dev/null
+++ b/app_website_product_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_website_product_superbar/models/__init__.py b/app_website_product_superbar/models/__init__.py
new file mode 100644
index 00000000..cfc06edc
--- /dev/null
+++ b/app_website_product_superbar/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+
+# from . import product_category
+
diff --git a/app_website_product_superbar/models/product_category.py b/app_website_product_superbar/models/product_category.py
new file mode 100644
index 00000000..952cbd98
--- /dev/null
+++ b/app_website_product_superbar/models/product_category.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+
+# Created on 2017-11-28
+# author: 欧度智能,https://www.odooai.cn
+# email: 300883@qq.com
+# resource of odooai
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+# Odoo在线中文用户手册(长期更新)
+# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
+
+# Odoo10离线中文用户手册下载
+# https://www.odooai.cn/odoo10_user_manual_document_offline/
+# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
+# https://www.odooai.cn/odoo10_developer_document_offline/
+# description:
+
+from odoo import api, fields, models, exceptions, _
+
+class ProductCategory(models.Model):
+ _inherit = 'product.category'
+
+ # 更新 complete_name 算法,当有context: show_short =1 时,只显示短名
+ def name_get(self):
+ if self._context.get('show_short'):
+ new_res = []
+ for category in self:
+ name = category.name
+ new_res.append((category.id, name))
+ return new_res
+ else:
+ return super(ProductCategory, self).name_get()
diff --git a/app_website_product_superbar/report/__init__.py b/app_website_product_superbar/report/__init__.py
new file mode 100644
index 00000000..633f8661
--- /dev/null
+++ b/app_website_product_superbar/report/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+
diff --git a/app_website_product_superbar/static/description/account1.jpg b/app_website_product_superbar/static/description/account1.jpg
new file mode 100644
index 00000000..28307428
Binary files /dev/null and b/app_website_product_superbar/static/description/account1.jpg differ
diff --git a/app_website_product_superbar/static/description/banner.gif b/app_website_product_superbar/static/description/banner.gif
new file mode 100644
index 00000000..3fa07c7f
Binary files /dev/null and b/app_website_product_superbar/static/description/banner.gif differ
diff --git a/app_website_product_superbar/static/description/banner.png b/app_website_product_superbar/static/description/banner.png
new file mode 100644
index 00000000..e3491918
Binary files /dev/null and b/app_website_product_superbar/static/description/banner.png differ
diff --git a/app_website_product_superbar/static/description/base1.jpg b/app_website_product_superbar/static/description/base1.jpg
new file mode 100644
index 00000000..ffda9f17
Binary files /dev/null and b/app_website_product_superbar/static/description/base1.jpg differ
diff --git a/app_website_product_superbar/static/description/base2.jpg b/app_website_product_superbar/static/description/base2.jpg
new file mode 100644
index 00000000..81a64eec
Binary files /dev/null and b/app_website_product_superbar/static/description/base2.jpg differ
diff --git a/app_website_product_superbar/static/description/base3.jpg b/app_website_product_superbar/static/description/base3.jpg
new file mode 100644
index 00000000..4d5a5938
Binary files /dev/null and b/app_website_product_superbar/static/description/base3.jpg differ
diff --git a/app_website_product_superbar/static/description/base4.jpg b/app_website_product_superbar/static/description/base4.jpg
new file mode 100644
index 00000000..ed7155a0
Binary files /dev/null and b/app_website_product_superbar/static/description/base4.jpg differ
diff --git a/app_website_product_superbar/static/description/base5.jpg b/app_website_product_superbar/static/description/base5.jpg
new file mode 100644
index 00000000..d33631bd
Binary files /dev/null and b/app_website_product_superbar/static/description/base5.jpg differ
diff --git a/app_website_product_superbar/static/description/base6.jpg b/app_website_product_superbar/static/description/base6.jpg
new file mode 100644
index 00000000..8fcb48f3
Binary files /dev/null and b/app_website_product_superbar/static/description/base6.jpg differ
diff --git a/app_website_product_superbar/static/description/base7.jpg b/app_website_product_superbar/static/description/base7.jpg
new file mode 100644
index 00000000..7c7d76f6
Binary files /dev/null and b/app_website_product_superbar/static/description/base7.jpg differ
diff --git a/app_website_product_superbar/static/description/base8.jpg b/app_website_product_superbar/static/description/base8.jpg
new file mode 100644
index 00000000..a002c442
Binary files /dev/null and b/app_website_product_superbar/static/description/base8.jpg differ
diff --git a/app_website_product_superbar/static/description/base9.jpg b/app_website_product_superbar/static/description/base9.jpg
new file mode 100644
index 00000000..cb98e140
Binary files /dev/null and b/app_website_product_superbar/static/description/base9.jpg differ
diff --git a/app_website_product_superbar/static/description/contacts1.jpg b/app_website_product_superbar/static/description/contacts1.jpg
new file mode 100644
index 00000000..4ac551a5
Binary files /dev/null and b/app_website_product_superbar/static/description/contacts1.jpg differ
diff --git a/app_website_product_superbar/static/description/crm1.jpg b/app_website_product_superbar/static/description/crm1.jpg
new file mode 100644
index 00000000..2d53c641
Binary files /dev/null and b/app_website_product_superbar/static/description/crm1.jpg differ
diff --git a/app_website_product_superbar/static/description/demo2.jpg b/app_website_product_superbar/static/description/demo2.jpg
new file mode 100644
index 00000000..c34083e0
Binary files /dev/null and b/app_website_product_superbar/static/description/demo2.jpg differ
diff --git a/app_website_product_superbar/static/description/demo_module1.jpg b/app_website_product_superbar/static/description/demo_module1.jpg
new file mode 100644
index 00000000..1fc270fc
Binary files /dev/null and b/app_website_product_superbar/static/description/demo_module1.jpg differ
diff --git a/app_website_product_superbar/static/description/demo_module2.jpg b/app_website_product_superbar/static/description/demo_module2.jpg
new file mode 100644
index 00000000..f06f79fd
Binary files /dev/null and b/app_website_product_superbar/static/description/demo_module2.jpg differ
diff --git a/app_website_product_superbar/static/description/hr1.jpg b/app_website_product_superbar/static/description/hr1.jpg
new file mode 100644
index 00000000..19913106
Binary files /dev/null and b/app_website_product_superbar/static/description/hr1.jpg differ
diff --git a/app_website_product_superbar/static/description/hr2.gif b/app_website_product_superbar/static/description/hr2.gif
new file mode 100644
index 00000000..6690e747
Binary files /dev/null and b/app_website_product_superbar/static/description/hr2.gif differ
diff --git a/app_website_product_superbar/static/description/icon.png b/app_website_product_superbar/static/description/icon.png
new file mode 100644
index 00000000..23ac0bd7
Binary files /dev/null and b/app_website_product_superbar/static/description/icon.png differ
diff --git a/app_website_product_superbar/static/description/index.html b/app_website_product_superbar/static/description/index.html
new file mode 100644
index 00000000..639be051
--- /dev/null
+++ b/app_website_product_superbar/static/description/index.html
@@ -0,0 +1,432 @@
+
+
+
+
+
+
+
+

+
+
Advance Search, Advance Filter with Parent Children Tree.
+
+
Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.
+
+
+
+
Key features:
+
+ -
+
+ Update: v12.19.05.23, Enhance UI. Add Pos Function.
+
+ -
+
+ Easy to show parent children tree for tree, kanban, pivot, graph view.(Note that there would be little different in UI between odoo12,11,10)
+
+ -
+
+ Filter product of any data in "Search More..." popup windows.
+
+ -
+
+ Responsive UI.Only show when width > 992px;
+
+ -
+
+ Product navigate by category or type is ready.
+
+ Click to download.
+
+
+ -
+
+ Pos navigate by category or store is ready.
+
+ Click to download.
+
+
+ -
+
+ Account chart navigate by type is ready.
+
+ Click to download.
+
+
+ -
+
+ Contacts navigate by company is ready.
+
+ Click to download.
+
+
+ -
+
+ Sale order navigate by partner and channel is ready.
+
+ Click to download.
+
+
+ -
+
+ CRM browse by stage and team is ready.
+
+ Click to download.
+
+
+ -
+
+ Purchase order navigate by partner is ready.
+
+ Click to download.
+
+
+ -
+
+ Stock location navigate by parent, Picking by type is ready.
+
+ Click to download.
+
+
+ -
+
+ HR employee navigate by department is ready.
+
+ Click to download.
+
+
+ -
+
+ MRP manufacture order navigate by state workcenter is ready.
+
+ Click to download.
+
+
+ -
+
+ Apps Navigator by Category, Module Navigator is ready.
+
+ Click to download.
+
+
+ -
+
+ It is so easy to customize, you can use it in anywhere in odoo
.
+
+
+
+
+
+
+
+
+
+
+
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.
+
+

+
+
+
+
+
+
+
Free to Use in POS point of sale.
+
+

+
+
POS product and order.
+
+

+
+
POS report.
+
+

+
+
+
+
+
+
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.
+
+

+
+
+

+
+
+
+
+
+
+
+
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: searchpanel_domain_xxx , xxx is a field name.
+
+
+
+
+
+
+
+
+
+
Technical Help & Support
+
+
+
+
+ For any type of technical help & support requests, Feel free to contact us
+
+ odoo@china.com
+
+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)
+
+ 300883@qq.com
+
+
+
+ Visit our website for more support.
+https://www.odooai.cn
+
+
+
+
+
diff --git a/app_website_product_superbar/static/description/mrp1.gif b/app_website_product_superbar/static/description/mrp1.gif
new file mode 100644
index 00000000..f19e76cb
Binary files /dev/null and b/app_website_product_superbar/static/description/mrp1.gif differ
diff --git a/app_website_product_superbar/static/description/mrp1.jpg b/app_website_product_superbar/static/description/mrp1.jpg
new file mode 100644
index 00000000..f2fce20d
Binary files /dev/null and b/app_website_product_superbar/static/description/mrp1.jpg differ
diff --git a/app_website_product_superbar/static/description/pos1.jpg b/app_website_product_superbar/static/description/pos1.jpg
new file mode 100644
index 00000000..32aaf5f4
Binary files /dev/null and b/app_website_product_superbar/static/description/pos1.jpg differ
diff --git a/app_website_product_superbar/static/description/pos2.jpg b/app_website_product_superbar/static/description/pos2.jpg
new file mode 100644
index 00000000..19471a7e
Binary files /dev/null and b/app_website_product_superbar/static/description/pos2.jpg differ
diff --git a/app_website_product_superbar/static/description/pos3.jpg b/app_website_product_superbar/static/description/pos3.jpg
new file mode 100644
index 00000000..8e63e208
Binary files /dev/null and b/app_website_product_superbar/static/description/pos3.jpg differ
diff --git a/app_website_product_superbar/static/description/product1.jpg b/app_website_product_superbar/static/description/product1.jpg
new file mode 100644
index 00000000..efa649a3
Binary files /dev/null and b/app_website_product_superbar/static/description/product1.jpg differ
diff --git a/app_website_product_superbar/static/description/purchase1.jpg b/app_website_product_superbar/static/description/purchase1.jpg
new file mode 100644
index 00000000..65a5d63a
Binary files /dev/null and b/app_website_product_superbar/static/description/purchase1.jpg differ
diff --git a/app_website_product_superbar/static/description/sale1.jpg b/app_website_product_superbar/static/description/sale1.jpg
new file mode 100644
index 00000000..92555d06
Binary files /dev/null and b/app_website_product_superbar/static/description/sale1.jpg differ
diff --git a/app_website_product_superbar/static/description/searchmore.jpg b/app_website_product_superbar/static/description/searchmore.jpg
new file mode 100644
index 00000000..d37c652d
Binary files /dev/null and b/app_website_product_superbar/static/description/searchmore.jpg differ
diff --git a/app_website_product_superbar/static/description/stock1.jpg b/app_website_product_superbar/static/description/stock1.jpg
new file mode 100644
index 00000000..0aeb92ff
Binary files /dev/null and b/app_website_product_superbar/static/description/stock1.jpg differ
diff --git a/app_website_product_superbar/static/description/superbar.gif b/app_website_product_superbar/static/description/superbar.gif
new file mode 100644
index 00000000..6e7318a5
Binary files /dev/null and b/app_website_product_superbar/static/description/superbar.gif differ
diff --git a/app_website_product_superbar/static/description/superbar_use.gif b/app_website_product_superbar/static/description/superbar_use.gif
new file mode 100644
index 00000000..2ec5abde
Binary files /dev/null and b/app_website_product_superbar/static/description/superbar_use.gif differ
diff --git a/app_website_product_superbar/static/description/use.jpg b/app_website_product_superbar/static/description/use.jpg
new file mode 100644
index 00000000..5b0e661b
Binary files /dev/null and b/app_website_product_superbar/static/description/use.jpg differ
diff --git a/app_website_product_superbar/static/description/use1.jpg b/app_website_product_superbar/static/description/use1.jpg
new file mode 100644
index 00000000..d9c726da
Binary files /dev/null and b/app_website_product_superbar/static/description/use1.jpg differ
diff --git a/app_website_product_superbar/static/description/use2.jpg b/app_website_product_superbar/static/description/use2.jpg
new file mode 100644
index 00000000..4d46d705
Binary files /dev/null and b/app_website_product_superbar/static/description/use2.jpg differ
diff --git a/app_website_product_superbar/static/description/use3.jpg b/app_website_product_superbar/static/description/use3.jpg
new file mode 100644
index 00000000..fe8b7ef7
Binary files /dev/null and b/app_website_product_superbar/static/description/use3.jpg differ
diff --git a/app_website_product_superbar/static/description/use4.jpg b/app_website_product_superbar/static/description/use4.jpg
new file mode 100644
index 00000000..606a5ce6
Binary files /dev/null and b/app_website_product_superbar/static/description/use4.jpg differ
diff --git a/app_website_product_superbar/static/description/use5.jpg b/app_website_product_superbar/static/description/use5.jpg
new file mode 100644
index 00000000..493769c2
Binary files /dev/null and b/app_website_product_superbar/static/description/use5.jpg differ
diff --git a/app_website_product_superbar/static/description/use6.jpg b/app_website_product_superbar/static/description/use6.jpg
new file mode 100644
index 00000000..da80eb13
Binary files /dev/null and b/app_website_product_superbar/static/description/use6.jpg differ
diff --git a/app_website_product_superbar/static/description/use7.jpg b/app_website_product_superbar/static/description/use7.jpg
new file mode 100644
index 00000000..e43b1b21
Binary files /dev/null and b/app_website_product_superbar/static/description/use7.jpg differ
diff --git a/app_website_product_superbar/static/description/use8.jpg b/app_website_product_superbar/static/description/use8.jpg
new file mode 100644
index 00000000..732cc71a
Binary files /dev/null and b/app_website_product_superbar/static/description/use8.jpg differ
diff --git a/app_website_product_superbar/static/description/use9.jpg b/app_website_product_superbar/static/description/use9.jpg
new file mode 100644
index 00000000..9d7175bc
Binary files /dev/null and b/app_website_product_superbar/static/description/use9.jpg differ
diff --git a/app_website_product_superbar/static/description/usea.jpg b/app_website_product_superbar/static/description/usea.jpg
new file mode 100644
index 00000000..b6279faa
Binary files /dev/null and b/app_website_product_superbar/static/description/usea.jpg differ
diff --git a/app_website_product_superbar/static/description/z_hr1.gif b/app_website_product_superbar/static/description/z_hr1.gif
new file mode 100644
index 00000000..6d232374
Binary files /dev/null and b/app_website_product_superbar/static/description/z_hr1.gif differ
diff --git a/app_website_product_superbar/static/description/z_product1.gif b/app_website_product_superbar/static/description/z_product1.gif
new file mode 100644
index 00000000..e471a66c
Binary files /dev/null and b/app_website_product_superbar/static/description/z_product1.gif differ
diff --git a/app_website_product_superbar/static/description/z_stock1.gif b/app_website_product_superbar/static/description/z_stock1.gif
new file mode 100644
index 00000000..14e9c101
Binary files /dev/null and b/app_website_product_superbar/static/description/z_stock1.gif differ
diff --git a/app_website_product_superbar/views/product_template_views.xml b/app_website_product_superbar/views/product_template_views.xml
new file mode 100644
index 00000000..74fccf7b
--- /dev/null
+++ b/app_website_product_superbar/views/product_template_views.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ app.product.template.search
+ product.template
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file