diff --git a/app_account_superbar/__init__.py b/app_account_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_account_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_account_superbar/__manifest__.py b/app_account_superbar/__manifest__.py new file mode 100644 index 00000000..8eb37045 --- /dev/null +++ b/app_account_superbar/__manifest__.py @@ -0,0 +1,62 @@ +# -*- 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 account superbar 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 journal by account chart... 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': [ + 'account', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/account_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_account_superbar/hooks.py b/app_account_superbar/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_account_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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_account_superbar/i18n/zh_CN.po b/app_account_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_account_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_account_superbar/models/__init__.py b/app_account_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_superbar/report/__init__.py b/app_account_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_account_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_account_superbar/static/description/account1.jpg b/app_account_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_account_superbar/static/description/account1.jpg differ diff --git a/app_account_superbar/static/description/banner.png b/app_account_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_account_superbar/static/description/banner.png differ diff --git a/app_account_superbar/static/description/base1.jpg b/app_account_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_account_superbar/static/description/base1.jpg differ diff --git a/app_account_superbar/static/description/base2.jpg b/app_account_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_account_superbar/static/description/base2.jpg differ diff --git a/app_account_superbar/static/description/base3.jpg b/app_account_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_account_superbar/static/description/base3.jpg differ diff --git a/app_account_superbar/static/description/base4.jpg b/app_account_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_account_superbar/static/description/base4.jpg differ diff --git a/app_account_superbar/static/description/base5.jpg b/app_account_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_account_superbar/static/description/base5.jpg differ diff --git a/app_account_superbar/static/description/base6.jpg b/app_account_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_account_superbar/static/description/base6.jpg differ diff --git a/app_account_superbar/static/description/base7.jpg b/app_account_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_account_superbar/static/description/base7.jpg differ diff --git a/app_account_superbar/static/description/base8.jpg b/app_account_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_account_superbar/static/description/base8.jpg differ diff --git a/app_account_superbar/static/description/base9.jpg b/app_account_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_account_superbar/static/description/base9.jpg differ diff --git a/app_account_superbar/static/description/contacts1.jpg b/app_account_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_account_superbar/static/description/contacts1.jpg differ diff --git a/app_account_superbar/static/description/crm1.jpg b/app_account_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_account_superbar/static/description/crm1.jpg differ diff --git a/app_account_superbar/static/description/demo2.jpg b/app_account_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_account_superbar/static/description/demo2.jpg differ diff --git a/app_account_superbar/static/description/demo_module1.jpg b/app_account_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_account_superbar/static/description/demo_module1.jpg differ diff --git a/app_account_superbar/static/description/demo_module2.jpg b/app_account_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_account_superbar/static/description/demo_module2.jpg differ diff --git a/app_account_superbar/static/description/hr1.jpg b/app_account_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_account_superbar/static/description/hr1.jpg differ diff --git a/app_account_superbar/static/description/hr2.gif b/app_account_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_account_superbar/static/description/hr2.gif differ diff --git a/app_account_superbar/static/description/icon.png b/app_account_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_account_superbar/static/description/icon.png differ diff --git a/app_account_superbar/static/description/index.html b/app_account_superbar/static/description/index.html new file mode 100644 index 00000000..909fc5b7 --- /dev/null +++ b/app_account_superbar/static/description/index.html @@ -0,0 +1,307 @@ +
+
+

Account addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_account_superbar/static/description/mrp1.gif b/app_account_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_account_superbar/static/description/mrp1.gif differ diff --git a/app_account_superbar/static/description/mrp1.jpg b/app_account_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_account_superbar/static/description/mrp1.jpg differ diff --git a/app_account_superbar/static/description/pos1.jpg b/app_account_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_account_superbar/static/description/pos1.jpg differ diff --git a/app_account_superbar/static/description/pos2.jpg b/app_account_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_account_superbar/static/description/pos2.jpg differ diff --git a/app_account_superbar/static/description/pos3.jpg b/app_account_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_account_superbar/static/description/pos3.jpg differ diff --git a/app_account_superbar/static/description/product1.jpg b/app_account_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_account_superbar/static/description/product1.jpg differ diff --git a/app_account_superbar/static/description/purchase1.jpg b/app_account_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_account_superbar/static/description/purchase1.jpg differ diff --git a/app_account_superbar/static/description/sale1.jpg b/app_account_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_account_superbar/static/description/sale1.jpg differ diff --git a/app_account_superbar/static/description/searchmore.jpg b/app_account_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_account_superbar/static/description/searchmore.jpg differ diff --git a/app_account_superbar/static/description/stock1.jpg b/app_account_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_account_superbar/static/description/stock1.jpg differ diff --git a/app_account_superbar/static/description/superbar.gif b/app_account_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_account_superbar/static/description/superbar.gif differ diff --git a/app_account_superbar/static/description/superbar_use.gif b/app_account_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_account_superbar/static/description/superbar_use.gif differ diff --git a/app_account_superbar/static/description/superbar_use.png b/app_account_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_account_superbar/static/description/superbar_use.png differ diff --git a/app_account_superbar/static/description/use.jpg b/app_account_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_account_superbar/static/description/use.jpg differ diff --git a/app_account_superbar/static/description/use1.jpg b/app_account_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_account_superbar/static/description/use1.jpg differ diff --git a/app_account_superbar/static/description/use2.jpg b/app_account_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_account_superbar/static/description/use2.jpg differ diff --git a/app_account_superbar/static/description/use3.jpg b/app_account_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_account_superbar/static/description/use3.jpg differ diff --git a/app_account_superbar/static/description/use4.jpg b/app_account_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_account_superbar/static/description/use4.jpg differ diff --git a/app_account_superbar/static/description/use5.jpg b/app_account_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_account_superbar/static/description/use5.jpg differ diff --git a/app_account_superbar/static/description/use6.jpg b/app_account_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_account_superbar/static/description/use6.jpg differ diff --git a/app_account_superbar/static/description/use7.jpg b/app_account_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_account_superbar/static/description/use7.jpg differ diff --git a/app_account_superbar/static/description/use8.jpg b/app_account_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_account_superbar/static/description/use8.jpg differ diff --git a/app_account_superbar/static/description/use9.jpg b/app_account_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_account_superbar/static/description/use9.jpg differ diff --git a/app_account_superbar/static/description/usea.jpg b/app_account_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_account_superbar/static/description/usea.jpg differ diff --git a/app_account_superbar/static/description/z_hr1.gif b/app_account_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_account_superbar/static/description/z_hr1.gif differ diff --git a/app_account_superbar/static/description/z_product1.gif b/app_account_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_account_superbar/static/description/z_product1.gif differ diff --git a/app_account_superbar/static/description/z_stock1.gif b/app_account_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_account_superbar/static/description/z_stock1.gif differ diff --git a/app_account_superbar/views/account_views.xml b/app_account_superbar/views/account_views.xml new file mode 100644 index 00000000..2a7eb237 --- /dev/null +++ b/app_account_superbar/views/account_views.xml @@ -0,0 +1,67 @@ + + + + + account.account.search.superbar + account.account + + + + + + + + + + + + + account.invoice.select.superbar + account.move + + + + + + + + + + + + + + account.move.select.superbar + account.move + + + + + + + + + + + + + + Journal Items superbar + account.move.line + + + + list,kanban,pivot,graph + + + + + + + + + + + + + \ No newline at end of file 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..10eb4cd5 --- /dev/null +++ b/app_base_superbar/__manifest__.py @@ -0,0 +1,73 @@ +# -*- 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': "Easy Admin navigator, quick search filter", + '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': 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.gif'], + 'data': [ + # 'views/res_groups_views.xml', + '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..9a5420a8 --- /dev/null +++ b/app_base_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 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: + +def post_init_hook(env): + 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..61fd49d2 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..e3491918 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..ffda9f17 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..81a64eec 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..4d5a5938 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..ed7155a0 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..d33631bd 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..8fcb48f3 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..7c7d76f6 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..a002c442 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..cb98e140 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..dbe4d7df --- /dev/null +++ b/app_base_superbar/static/description/index.html @@ -0,0 +1,495 @@ +
+
+

Quick Admin navigator addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+

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.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20 related apps. + +

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

What you see is what you get. + Online demo user/password: demo/demo + + Click to get demo. + +

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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.

+
+ +
+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_types: [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_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/pos1.jpg b/app_base_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_base_superbar/static/description/pos1.jpg differ diff --git a/app_base_superbar/static/description/pos2.jpg b/app_base_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_base_superbar/static/description/pos2.jpg differ diff --git a/app_base_superbar/static/description/pos3.jpg b/app_base_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_base_superbar/static/description/pos3.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..efa649a3 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.gif b/app_base_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_base_superbar/static/description/superbar.gif 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..d9c726da 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..e43b1b21 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..732cc71a 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..b6279faa 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..e471a66c 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..3428c94e --- /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..209adf80 --- /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..911429c1 --- /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..7072431d --- /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..f4ef0823 --- /dev/null +++ b/app_base_superbar/views/ir_attachment_views.xml @@ -0,0 +1,14 @@ + + + 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..1d9d0083 --- /dev/null +++ b/app_base_superbar/views/ir_default_views.xml @@ -0,0 +1,16 @@ + + + + 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..4af8b6ed --- /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..780559b8 --- /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..3efed01c --- /dev/null +++ b/app_base_superbar/views/ir_model_fields_views.xml @@ -0,0 +1,18 @@ + + + + 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..e98421fc --- /dev/null +++ b/app_base_superbar/views/ir_ui_menu_views.xml @@ -0,0 +1,16 @@ + + + + app.ir.ui.menu.search + ir.ui.menu + + + + + + + + + + + \ 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..86a35e08 --- /dev/null +++ b/app_base_superbar/views/ir_ui_view_views.xml @@ -0,0 +1,16 @@ + + + + app.ir.ui.menu.search + ir.ui.view + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/res_groups_views.xml b/app_base_superbar/views/res_groups_views.xml new file mode 100644 index 00000000..0f22dc5d --- /dev/null +++ b/app_base_superbar/views/res_groups_views.xml @@ -0,0 +1,16 @@ + + + + app.res.groups.search + res.groups + + + + + + + + + + + \ No newline at end of file diff --git a/app_contacts_superbar/__init__.py b/app_contacts_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_contacts_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_contacts_superbar/__manifest__.py b/app_contacts_superbar/__manifest__.py new file mode 100644 index 00000000..af0b3c5f --- /dev/null +++ b/app_contacts_superbar/__manifest__.py @@ -0,0 +1,62 @@ +# -*- 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': "App contacts by category company superbar", + '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 contacts by company. 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': [ + 'contacts', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/res_partner_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_contacts_superbar/hooks.py b/app_contacts_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_contacts_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_contacts_superbar/i18n/zh_CN.po b/app_contacts_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_contacts_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_contacts_superbar/models/__init__.py b/app_contacts_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_contacts_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_contacts_superbar/report/__init__.py b/app_contacts_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_contacts_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_contacts_superbar/static/description/account1.jpg b/app_contacts_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_contacts_superbar/static/description/account1.jpg differ diff --git a/app_contacts_superbar/static/description/banner.png b/app_contacts_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_contacts_superbar/static/description/banner.png differ diff --git a/app_contacts_superbar/static/description/base1.jpg b/app_contacts_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_contacts_superbar/static/description/base1.jpg differ diff --git a/app_contacts_superbar/static/description/base2.jpg b/app_contacts_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_contacts_superbar/static/description/base2.jpg differ diff --git a/app_contacts_superbar/static/description/base3.jpg b/app_contacts_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_contacts_superbar/static/description/base3.jpg differ diff --git a/app_contacts_superbar/static/description/base4.jpg b/app_contacts_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_contacts_superbar/static/description/base4.jpg differ diff --git a/app_contacts_superbar/static/description/base5.jpg b/app_contacts_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_contacts_superbar/static/description/base5.jpg differ diff --git a/app_contacts_superbar/static/description/base6.jpg b/app_contacts_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_contacts_superbar/static/description/base6.jpg differ diff --git a/app_contacts_superbar/static/description/base7.jpg b/app_contacts_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_contacts_superbar/static/description/base7.jpg differ diff --git a/app_contacts_superbar/static/description/base8.jpg b/app_contacts_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_contacts_superbar/static/description/base8.jpg differ diff --git a/app_contacts_superbar/static/description/base9.jpg b/app_contacts_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_contacts_superbar/static/description/base9.jpg differ diff --git a/app_contacts_superbar/static/description/contacts1.jpg b/app_contacts_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_contacts_superbar/static/description/contacts1.jpg differ diff --git a/app_contacts_superbar/static/description/crm1.jpg b/app_contacts_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_contacts_superbar/static/description/crm1.jpg differ diff --git a/app_contacts_superbar/static/description/demo2.jpg b/app_contacts_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_contacts_superbar/static/description/demo2.jpg differ diff --git a/app_contacts_superbar/static/description/demo_module1.jpg b/app_contacts_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_contacts_superbar/static/description/demo_module1.jpg differ diff --git a/app_contacts_superbar/static/description/demo_module2.jpg b/app_contacts_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_contacts_superbar/static/description/demo_module2.jpg differ diff --git a/app_contacts_superbar/static/description/hr1.jpg b/app_contacts_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_contacts_superbar/static/description/hr1.jpg differ diff --git a/app_contacts_superbar/static/description/hr2.gif b/app_contacts_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_contacts_superbar/static/description/hr2.gif differ diff --git a/app_contacts_superbar/static/description/icon.png b/app_contacts_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_contacts_superbar/static/description/icon.png differ diff --git a/app_contacts_superbar/static/description/index.html b/app_contacts_superbar/static/description/index.html new file mode 100644 index 00000000..085c8ce1 --- /dev/null +++ b/app_contacts_superbar/static/description/index.html @@ -0,0 +1,306 @@ +
+
+

Contacts Partner Customer addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_contacts_superbar/static/description/mrp1.gif b/app_contacts_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_contacts_superbar/static/description/mrp1.gif differ diff --git a/app_contacts_superbar/static/description/mrp1.jpg b/app_contacts_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_contacts_superbar/static/description/mrp1.jpg differ diff --git a/app_contacts_superbar/static/description/pos1.jpg b/app_contacts_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_contacts_superbar/static/description/pos1.jpg differ diff --git a/app_contacts_superbar/static/description/pos2.jpg b/app_contacts_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_contacts_superbar/static/description/pos2.jpg differ diff --git a/app_contacts_superbar/static/description/pos3.jpg b/app_contacts_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_contacts_superbar/static/description/pos3.jpg differ diff --git a/app_contacts_superbar/static/description/product1.jpg b/app_contacts_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_contacts_superbar/static/description/product1.jpg differ diff --git a/app_contacts_superbar/static/description/purchase1.jpg b/app_contacts_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_contacts_superbar/static/description/purchase1.jpg differ diff --git a/app_contacts_superbar/static/description/sale1.jpg b/app_contacts_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_contacts_superbar/static/description/sale1.jpg differ diff --git a/app_contacts_superbar/static/description/searchmore.jpg b/app_contacts_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_contacts_superbar/static/description/searchmore.jpg differ diff --git a/app_contacts_superbar/static/description/stock1.jpg b/app_contacts_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_contacts_superbar/static/description/stock1.jpg differ diff --git a/app_contacts_superbar/static/description/superbar.gif b/app_contacts_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_contacts_superbar/static/description/superbar.gif differ diff --git a/app_contacts_superbar/static/description/superbar_use.gif b/app_contacts_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_contacts_superbar/static/description/superbar_use.gif differ diff --git a/app_contacts_superbar/static/description/superbar_use.png b/app_contacts_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_contacts_superbar/static/description/superbar_use.png differ diff --git a/app_contacts_superbar/static/description/use.jpg b/app_contacts_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_contacts_superbar/static/description/use.jpg differ diff --git a/app_contacts_superbar/static/description/use1.jpg b/app_contacts_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_contacts_superbar/static/description/use1.jpg differ diff --git a/app_contacts_superbar/static/description/use2.jpg b/app_contacts_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_contacts_superbar/static/description/use2.jpg differ diff --git a/app_contacts_superbar/static/description/use3.jpg b/app_contacts_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_contacts_superbar/static/description/use3.jpg differ diff --git a/app_contacts_superbar/static/description/use4.jpg b/app_contacts_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_contacts_superbar/static/description/use4.jpg differ diff --git a/app_contacts_superbar/static/description/use5.jpg b/app_contacts_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_contacts_superbar/static/description/use5.jpg differ diff --git a/app_contacts_superbar/static/description/use6.jpg b/app_contacts_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_contacts_superbar/static/description/use6.jpg differ diff --git a/app_contacts_superbar/static/description/use7.jpg b/app_contacts_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_contacts_superbar/static/description/use7.jpg differ diff --git a/app_contacts_superbar/static/description/use8.jpg b/app_contacts_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_contacts_superbar/static/description/use8.jpg differ diff --git a/app_contacts_superbar/static/description/use9.jpg b/app_contacts_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_contacts_superbar/static/description/use9.jpg differ diff --git a/app_contacts_superbar/static/description/usea.jpg b/app_contacts_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_contacts_superbar/static/description/usea.jpg differ diff --git a/app_contacts_superbar/static/description/z_hr1.gif b/app_contacts_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_contacts_superbar/static/description/z_hr1.gif differ diff --git a/app_contacts_superbar/static/description/z_product1.gif b/app_contacts_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_contacts_superbar/static/description/z_product1.gif differ diff --git a/app_contacts_superbar/static/description/z_stock1.gif b/app_contacts_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_contacts_superbar/static/description/z_stock1.gif differ diff --git a/app_contacts_superbar/views/res_partner_views.xml b/app_contacts_superbar/views/res_partner_views.xml new file mode 100644 index 00000000..42f981ae --- /dev/null +++ b/app_contacts_superbar/views/res_partner_views.xml @@ -0,0 +1,27 @@ + + + + + res.partner.select.superbar + res.partner + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_contacts_superbar_pro/__init__.py b/app_contacts_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_contacts_superbar_pro/__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_contacts_superbar_pro/__manifest__.py b/app_contacts_superbar_pro/__manifest__.py new file mode 100644 index 00000000..4d4ec563 --- /dev/null +++ b/app_contacts_superbar_pro/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "Contacts Customer Supplier Quick Search by superbar", + '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 contacts by company. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + Add date range search. + """, + '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': [ + 'app_contacts_superbar', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/res_partner_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_contacts_superbar_pro/hooks.py b/app_contacts_superbar_pro/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_contacts_superbar_pro/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_contacts_superbar_pro/i18n/zh_CN.po b/app_contacts_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_contacts_superbar_pro/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_contacts_superbar_pro/models/__init__.py b/app_contacts_superbar_pro/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_contacts_superbar_pro/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_contacts_superbar_pro/report/__init__.py b/app_contacts_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_contacts_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_contacts_superbar_pro/static/description/account1.jpg b/app_contacts_superbar_pro/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/account1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/banner.png b/app_contacts_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/banner.png differ diff --git a/app_contacts_superbar_pro/static/description/base1.jpg b/app_contacts_superbar_pro/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base2.jpg b/app_contacts_superbar_pro/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base2.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base3.jpg b/app_contacts_superbar_pro/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base3.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base4.jpg b/app_contacts_superbar_pro/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base4.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base5.jpg b/app_contacts_superbar_pro/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base5.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base6.jpg b/app_contacts_superbar_pro/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base6.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base7.jpg b/app_contacts_superbar_pro/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base7.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base8.jpg b/app_contacts_superbar_pro/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base8.jpg differ diff --git a/app_contacts_superbar_pro/static/description/base9.jpg b/app_contacts_superbar_pro/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/base9.jpg differ diff --git a/app_contacts_superbar_pro/static/description/contacts1.jpg b/app_contacts_superbar_pro/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/contacts1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/crm1.jpg b/app_contacts_superbar_pro/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/crm1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/demo2.jpg b/app_contacts_superbar_pro/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/demo2.jpg differ diff --git a/app_contacts_superbar_pro/static/description/demo_module1.jpg b/app_contacts_superbar_pro/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_contacts_superbar_pro/static/description/demo_module1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/demo_module2.jpg b/app_contacts_superbar_pro/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_contacts_superbar_pro/static/description/demo_module2.jpg differ diff --git a/app_contacts_superbar_pro/static/description/hr1.jpg b/app_contacts_superbar_pro/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/hr1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/hr2.gif b/app_contacts_superbar_pro/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/hr2.gif differ diff --git a/app_contacts_superbar_pro/static/description/icon.png b/app_contacts_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/icon.png differ diff --git a/app_contacts_superbar_pro/static/description/index.html b/app_contacts_superbar_pro/static/description/index.html new file mode 100644 index 00000000..085c8ce1 --- /dev/null +++ b/app_contacts_superbar_pro/static/description/index.html @@ -0,0 +1,306 @@ +
+
+

Contacts Partner Customer addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_contacts_superbar_pro/static/description/mrp1.gif b/app_contacts_superbar_pro/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_contacts_superbar_pro/static/description/mrp1.gif differ diff --git a/app_contacts_superbar_pro/static/description/mrp1.jpg b/app_contacts_superbar_pro/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_contacts_superbar_pro/static/description/mrp1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/pos1.jpg b/app_contacts_superbar_pro/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/pos1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/pos2.jpg b/app_contacts_superbar_pro/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_contacts_superbar_pro/static/description/pos2.jpg differ diff --git a/app_contacts_superbar_pro/static/description/pos3.jpg b/app_contacts_superbar_pro/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/pos3.jpg differ diff --git a/app_contacts_superbar_pro/static/description/product1.jpg b/app_contacts_superbar_pro/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/product1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/purchase1.jpg b/app_contacts_superbar_pro/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_contacts_superbar_pro/static/description/purchase1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/sale1.jpg b/app_contacts_superbar_pro/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/sale1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/searchmore.jpg b/app_contacts_superbar_pro/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_contacts_superbar_pro/static/description/searchmore.jpg differ diff --git a/app_contacts_superbar_pro/static/description/stock1.jpg b/app_contacts_superbar_pro/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_contacts_superbar_pro/static/description/stock1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/superbar.gif b/app_contacts_superbar_pro/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/superbar.gif differ diff --git a/app_contacts_superbar_pro/static/description/superbar_use.gif b/app_contacts_superbar_pro/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_contacts_superbar_pro/static/description/superbar_use.gif differ diff --git a/app_contacts_superbar_pro/static/description/superbar_use.png b/app_contacts_superbar_pro/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/superbar_use.png differ diff --git a/app_contacts_superbar_pro/static/description/use.jpg b/app_contacts_superbar_pro/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use1.jpg b/app_contacts_superbar_pro/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use1.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use2.jpg b/app_contacts_superbar_pro/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use2.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use3.jpg b/app_contacts_superbar_pro/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use3.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use4.jpg b/app_contacts_superbar_pro/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use4.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use5.jpg b/app_contacts_superbar_pro/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use5.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use6.jpg b/app_contacts_superbar_pro/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use6.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use7.jpg b/app_contacts_superbar_pro/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use7.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use8.jpg b/app_contacts_superbar_pro/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use8.jpg differ diff --git a/app_contacts_superbar_pro/static/description/use9.jpg b/app_contacts_superbar_pro/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_contacts_superbar_pro/static/description/use9.jpg differ diff --git a/app_contacts_superbar_pro/static/description/usea.jpg b/app_contacts_superbar_pro/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_contacts_superbar_pro/static/description/usea.jpg differ diff --git a/app_contacts_superbar_pro/static/description/z_hr1.gif b/app_contacts_superbar_pro/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/z_hr1.gif differ diff --git a/app_contacts_superbar_pro/static/description/z_product1.gif b/app_contacts_superbar_pro/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_contacts_superbar_pro/static/description/z_product1.gif differ diff --git a/app_contacts_superbar_pro/static/description/z_stock1.gif b/app_contacts_superbar_pro/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_contacts_superbar_pro/static/description/z_stock1.gif differ diff --git a/app_contacts_superbar_pro/views/res_partner_views.xml b/app_contacts_superbar_pro/views/res_partner_views.xml new file mode 100644 index 00000000..f213a5fe --- /dev/null +++ b/app_contacts_superbar_pro/views/res_partner_views.xml @@ -0,0 +1,16 @@ + + + + + res.partner.select.superbar + res.partner + + + + + + + + + + \ No newline at end of file diff --git a/app_crm_superbar/__init__.py b/app_crm_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_crm_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_crm_superbar/__manifest__.py b/app_crm_superbar/__manifest__.py new file mode 100644 index 00000000..a59d793b --- /dev/null +++ b/app_crm_superbar/__manifest__.py @@ -0,0 +1,86 @@ +# -*- 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). + +# 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 + +# 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': 'Crm Advance search, Navigator by stage and team', + 'version': '24.07.18', + 'author': 'odooai.cn', + 'category': 'Extra tools', + 'website': 'https://www.odooai.cn', + 'license': 'LGPL-3', + 'sequence': 10, + 'summary': """ + CRM Superbar. + odoo Seo Advance Search, Advance Filter for Date search. date range search. Datetime search. + M2M, selection, boolean, number search. Quick search in header. + Support list, kanban, pivot, graph, search more view. + """, + 'description': """ + Crm free app for app_web_superbar. + Advance quick search for various field in all odoo app. Support list, kanban, pivot, graph, search more views. + Search with Hierarchy Parent Children Tree. seo search. + odoo高级搜索,日期搜索,时间搜索,字符串搜索,数字搜索,下拉搜索. 列表快速搜索。 + 超级方便的查询,树状视图导航。可用在任何模块中。 + 1. Quick Advance Search and navigator for all app data. 20+ free odoo app search in box. + 2. Quick search in tree list header. Date range, Datetime, selection, number supported. + 3. Advance search sidebar for many2one, many2many field. m2o search, m2m search for multi select. + 4. Advance sidebar for date range search, datetime search, boolean search, selection search, number search. + 5. Search sidebar for list, kanban.Add more pivot, graph views than origin odoo. + 6. Support navigate in search more. Quick filter and search for m2o or m2m field. + 7. Easy customize for any app. any module. Use extra param for searchpanel of odoo. Para: view_types, class, name_field, icon, groups, filter_domain + 8. Advance search in box: Product, CRM, Sales, Purchase, MRP, Stock, Accounting, HR, Project, Etc. + Extra param for searchpanel. view_types, class, name_field, icon, groups, filter_domain. + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'crm', + 'utm', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/crm_lead_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_crm_superbar/hooks.py b/app_crm_superbar/hooks.py new file mode 100644 index 00000000..de5d5f5c --- /dev/null +++ b/app_crm_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). + +# 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 + +# 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_crm_superbar/i18n/zh_CN.po b/app_crm_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_crm_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_crm_superbar/models/__init__.py b/app_crm_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_crm_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_crm_superbar/report/__init__.py b/app_crm_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_crm_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_crm_superbar/static/description/banner.png b/app_crm_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_crm_superbar/static/description/banner.png differ diff --git a/app_crm_superbar/static/description/icon.png b/app_crm_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_crm_superbar/static/description/icon.png differ diff --git a/app_crm_superbar/static/description/index.html b/app_crm_superbar/static/description/index.html new file mode 100644 index 00000000..151a2f86 --- /dev/null +++ b/app_crm_superbar/static/description/index.html @@ -0,0 +1,506 @@ + + + + +
+

Crm Advance search, Navigator by stage and team

+

Free to use. Get extra paid Apps for more powerful.

+

Advance quick search for various field in all odoo app.Support list, kanban, pivot, graph, search more views.

+
+ + + +
+

+ - Get + app_web_super + for more Features - +

+
+
+
+
+
+
+ +
+ 1 +
+

Quick Advance Search and navigator for all app data.

+

30+ free odoo app search in box.

+
+
+ 2 +
+

Quick search in tree list header. 

+

Date range, Datetime, selection, number supported.

+
+
+
+ 3 +
+

Advance search sidebar for many2one, many2many field.

+

m2o search, m2m search for multi select.

+
+
+ 4 +
+

Advance siderbar for date range search, datetime search.

+

Extra for boolean search, selection search, number search.

+
+ + +
+
+
+
+ +
+ 5 +
+

Search sidebar for list, kanban.

+

Add more pivot, graph views than origin odoo.

+
+
+ 6 +
+

Support navigate in search more.

+

Quick filter and search for m2o or m2m field.

+
+
+ 7 +
+

Easy customize for any app. any module. 

+

Extra param for searchpanel. view_types, class, name_field, icon

+
+
+
+ 8 +
+

All app Advance search Out-of-Box.

+

Product, CRM, Sales, Purchase, MRP, Stock, Accounting, HR, Project, Etc.

+
+
+
+
+
+
+ + + +
+
+

- Demo Video -

+
+
+
+
+
+
+
+ +
+


+
+
+ Click above to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+

Demo Gif Animation if you can not get video

+ +
+
+ + + +
+
+

- Feature Guide -

+
+
+
+
+
+ +
+
+

All in One Search

+

Quick Advance Search and navigator for all app data.

+
+ +
+

Quick search in tree list header.

+
+ +
+

Search sidebar for M2O M2M, date range, boolean search, selection search, number search.

+
+ +
+

Filter any data like product in search more windows

+
+ +
+
+
+

Product Search

+

Use in product and Category.

+
+ +
+

Filter product or any data in search more windows

+
+ +
+
+
+

Sale Search with list header

+
+ +
+

Sale Search with sidebar

+
+ +
+
+
+

Purchase Search with sidebar and list header

+
+ +
+

Vender Price Search

+
+ +
+

Purchase report Search

+
+ +
+
+
+

Stock Inventory Search

+
+ +
+

Operation Type Search

+
+ +
+

Lot Serial Search

+
+ +
+
+
+

CRM Search

+
+ +
+

Leads Report Search

+
+ +
+
+
+

MRP Search

+
+ +
+

Work Order

+
+ +
+
+
+

POS point of sale Search

+
+ +
+

POS Report

+
+ +
+
+
+

HR employee Search

+
+ +
+
+
+

Account Search

+
+ +
+

Customer Invoice, Vendor Bill, Journal Entries Search

+
+ +
+

Journal Item Search

+
+ +
+
+
+

Project Search

+
+ +
+

Task Report Search

+
+ +
+
+
+

Partner contacts Search

+
+ +
+
+
+

Admin Search

+

Menu Quick Search

+
+ +
+

Action Search

+
+ +
+

Report Search

+
+ +
+

Views Search

+
+ +
+

Attachment Search

+
+ +
+
+
+
+
+
+ + + +
+

Get + + free 20+ Free related apps. + +

+

Visit to get our [app_web_superbar] Demo

+

https://demo.odooapp.cn

+
+
+
+ Free download: + +
+
+ + +
+

- How to setup and use -

+

This app need no extra module. The price already included

+
+
+
+

+ 1. Buy and Install app_web_superbar. +

+

2. Easy use of superbar

+
+

Show superbar in list view.

+
+ +
+

Show superbar in kanban view.

+
+ +
+

Show superbar in pivot view.

+
+ +
+

Show superbar in graph view.

+
+ +
+
+

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

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

+
+
+
+
+ + \ No newline at end of file diff --git a/app_crm_superbar/views/crm_lead_views.xml b/app_crm_superbar/views/crm_lead_views.xml new file mode 100644 index 00000000..5f796de8 --- /dev/null +++ b/app_crm_superbar/views/crm_lead_views.xml @@ -0,0 +1,52 @@ + + + + app.crm.lead.search.opportunity + crm.lead + + + + + + + + + + + + + + app.crm.lead.search.lead + crm.lead + + + + + + + + + + + + + + + + app.crm.lead.search + crm.lead + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_documents_superbar/__init__.py b/app_documents_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_documents_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_documents_superbar/__manifest__.py b/app_documents_superbar/__manifest__.py new file mode 100644 index 00000000..ab8391e7 --- /dev/null +++ b/app_documents_superbar/__manifest__.py @@ -0,0 +1,55 @@ +# -*- 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 Documents search browse by workspace", + '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 documents and folder by folder. Use for parent children tree list kanban navigator. + ztree widget. + """, + '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': [ + 'documents', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/documents_folder_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_documents_superbar/hooks.py b/app_documents_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_documents_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_documents_superbar/i18n/zh_CN.po b/app_documents_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f45db9f9 --- /dev/null +++ b/app_documents_superbar/i18n/zh_CN.po @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * felive_home +# +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_documents_superbar/models/__init__.py b/app_documents_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_documents_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_documents_superbar/report/__init__.py b/app_documents_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_documents_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_documents_superbar/static/description/account1.jpg b/app_documents_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_documents_superbar/static/description/account1.jpg differ diff --git a/app_documents_superbar/static/description/banner.png b/app_documents_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_documents_superbar/static/description/banner.png differ diff --git a/app_documents_superbar/static/description/base1.jpg b/app_documents_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_documents_superbar/static/description/base1.jpg differ diff --git a/app_documents_superbar/static/description/base2.jpg b/app_documents_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_documents_superbar/static/description/base2.jpg differ diff --git a/app_documents_superbar/static/description/base3.jpg b/app_documents_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_documents_superbar/static/description/base3.jpg differ diff --git a/app_documents_superbar/static/description/base4.jpg b/app_documents_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_documents_superbar/static/description/base4.jpg differ diff --git a/app_documents_superbar/static/description/base5.jpg b/app_documents_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_documents_superbar/static/description/base5.jpg differ diff --git a/app_documents_superbar/static/description/base6.jpg b/app_documents_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_documents_superbar/static/description/base6.jpg differ diff --git a/app_documents_superbar/static/description/base7.jpg b/app_documents_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_documents_superbar/static/description/base7.jpg differ diff --git a/app_documents_superbar/static/description/base8.jpg b/app_documents_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_documents_superbar/static/description/base8.jpg differ diff --git a/app_documents_superbar/static/description/base9.jpg b/app_documents_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_documents_superbar/static/description/base9.jpg differ diff --git a/app_documents_superbar/static/description/contacts1.jpg b/app_documents_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_documents_superbar/static/description/contacts1.jpg differ diff --git a/app_documents_superbar/static/description/crm1.jpg b/app_documents_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_documents_superbar/static/description/crm1.jpg differ diff --git a/app_documents_superbar/static/description/demo2.jpg b/app_documents_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_documents_superbar/static/description/demo2.jpg differ diff --git a/app_documents_superbar/static/description/demo_module1.jpg b/app_documents_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_documents_superbar/static/description/demo_module1.jpg differ diff --git a/app_documents_superbar/static/description/demo_module2.jpg b/app_documents_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_documents_superbar/static/description/demo_module2.jpg differ diff --git a/app_documents_superbar/static/description/hr1.jpg b/app_documents_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_documents_superbar/static/description/hr1.jpg differ diff --git a/app_documents_superbar/static/description/hr2.gif b/app_documents_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_documents_superbar/static/description/hr2.gif differ diff --git a/app_documents_superbar/static/description/icon.png b/app_documents_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_documents_superbar/static/description/icon.png differ diff --git a/app_documents_superbar/static/description/index.html b/app_documents_superbar/static/description/index.html new file mode 100644 index 00000000..577c2613 --- /dev/null +++ b/app_documents_superbar/static/description/index.html @@ -0,0 +1,307 @@ +
+
+

Purchase addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_documents_superbar/static/description/mrp1.gif b/app_documents_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_documents_superbar/static/description/mrp1.gif differ diff --git a/app_documents_superbar/static/description/mrp1.jpg b/app_documents_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_documents_superbar/static/description/mrp1.jpg differ diff --git a/app_documents_superbar/static/description/pos1.jpg b/app_documents_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_documents_superbar/static/description/pos1.jpg differ diff --git a/app_documents_superbar/static/description/pos2.jpg b/app_documents_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_documents_superbar/static/description/pos2.jpg differ diff --git a/app_documents_superbar/static/description/pos3.jpg b/app_documents_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_documents_superbar/static/description/pos3.jpg differ diff --git a/app_documents_superbar/static/description/product1.jpg b/app_documents_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_documents_superbar/static/description/product1.jpg differ diff --git a/app_documents_superbar/static/description/purchase1.jpg b/app_documents_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_documents_superbar/static/description/purchase1.jpg differ diff --git a/app_documents_superbar/static/description/sale1.jpg b/app_documents_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_documents_superbar/static/description/sale1.jpg differ diff --git a/app_documents_superbar/static/description/searchmore.jpg b/app_documents_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_documents_superbar/static/description/searchmore.jpg differ diff --git a/app_documents_superbar/static/description/stock1.jpg b/app_documents_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_documents_superbar/static/description/stock1.jpg differ diff --git a/app_documents_superbar/static/description/superbar.gif b/app_documents_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_documents_superbar/static/description/superbar.gif differ diff --git a/app_documents_superbar/static/description/superbar_use.gif b/app_documents_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_documents_superbar/static/description/superbar_use.gif differ diff --git a/app_documents_superbar/static/description/superbar_use.png b/app_documents_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_documents_superbar/static/description/superbar_use.png differ diff --git a/app_documents_superbar/static/description/use.jpg b/app_documents_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_documents_superbar/static/description/use.jpg differ diff --git a/app_documents_superbar/static/description/use1.jpg b/app_documents_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_documents_superbar/static/description/use1.jpg differ diff --git a/app_documents_superbar/static/description/use2.jpg b/app_documents_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_documents_superbar/static/description/use2.jpg differ diff --git a/app_documents_superbar/static/description/use3.jpg b/app_documents_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_documents_superbar/static/description/use3.jpg differ diff --git a/app_documents_superbar/static/description/use4.jpg b/app_documents_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_documents_superbar/static/description/use4.jpg differ diff --git a/app_documents_superbar/static/description/use5.jpg b/app_documents_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_documents_superbar/static/description/use5.jpg differ diff --git a/app_documents_superbar/static/description/use6.jpg b/app_documents_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_documents_superbar/static/description/use6.jpg differ diff --git a/app_documents_superbar/static/description/use7.jpg b/app_documents_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_documents_superbar/static/description/use7.jpg differ diff --git a/app_documents_superbar/static/description/use8.jpg b/app_documents_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_documents_superbar/static/description/use8.jpg differ diff --git a/app_documents_superbar/static/description/use9.jpg b/app_documents_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_documents_superbar/static/description/use9.jpg differ diff --git a/app_documents_superbar/static/description/usea.jpg b/app_documents_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_documents_superbar/static/description/usea.jpg differ diff --git a/app_documents_superbar/static/description/z_hr1.gif b/app_documents_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_documents_superbar/static/description/z_hr1.gif differ diff --git a/app_documents_superbar/static/description/z_product1.gif b/app_documents_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_documents_superbar/static/description/z_product1.gif differ diff --git a/app_documents_superbar/static/description/z_stock1.gif b/app_documents_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_documents_superbar/static/description/z_stock1.gif differ diff --git a/app_documents_superbar/views/documents_folder_views.xml b/app_documents_superbar/views/documents_folder_views.xml new file mode 100644 index 00000000..31344fa4 --- /dev/null +++ b/app_documents_superbar/views/documents_folder_views.xml @@ -0,0 +1,14 @@ + + + documents.folder.search + documents.folder + + + + + + + + + + \ No newline at end of file diff --git a/app_event_superbar/__init__.py b/app_event_superbar/__init__.py new file mode 100644 index 00000000..cf79d668 --- /dev/null +++ b/app_event_superbar/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +# please comment follow for produce +from . import models +from . import controllers + +# hook form install and uninstall + +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_event_superbar/__manifest__.py b/app_event_superbar/__manifest__.py new file mode 100644 index 00000000..843de5c5 --- /dev/null +++ b/app_event_superbar/__manifest__.py @@ -0,0 +1,110 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-06 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# Copyright (C) 2009~2023 odooAi.cn + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +############################################################################## +# 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': 'App Event browse by stage and starting date', + 'version': '24.07.18', + 'author': 'odooai.cn', + 'category': 'Extra tools', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'OPL-1', + 'sequence': 2, + 'price': 0.00, + 'currency': 'EUR', + 'images': ['static/description/banner.gif'], + 'summary': ''' + Odoo module template. module sample with 170+ widget list. Clone this sample to your name to quick create your odoo addons. + Developer reference guides, Developer Tutorials. + Sample manifest, .py, .xml views and data. report, action, menu.. + ''', + 'description': ''' + Just Rename the sample app to your name to quick create new module. + All file follow odoo rule with comments. + Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition + Odoo Developr rule from here + https://www.odooai.cn/documentation/16.0/developer.html + 1. A full Sample module app of odoo addons. All the code, views, data ,banner, icon and description sample follow the odoo rule. + 2. Sample manifest file. Including structure and name and description etc, all field sample. Security xml and csv file for role group access rule. + Sample icon, banner, index.html, install/uninstall hooks. + Follow most odoo rule follow + https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html + 3. Sample .py models file, for new model and inherit model + 4. Sample .xml views file for models, with list, kanban, form, search + 5. Sample controllers file for website data publish and api developer. including how inherit odoo portal home. + 6. Sample report design file. .py file with how sql define. .xml file for graph and pivot. + 7. Sample action and menu file. Root menu and menu group and action menu. + 8. Ui misc sample. Alert like info and special field setup. + 9. Odoo Widget sample. 170+ widget list document and Frequently Used Sample. + 10. Quick access odoo developer Tutorials online. Document online for chinese and english. Fast visit in China. + 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. 一个完整的odoo插件模块应用程序示例,所有代码、视图和数据都遵循odoo规则 + 2. Manifest示例清单文件。包括结构、名称和描述等所有字段样例。安全xml和csv文件用于控制访问规则 + 全部遵循odoo规则 https://www.odooai.cn/documentation/16.0/zh_CN/developer/reference/backend/module.html#reference-module-manifest + 3. .py 示例文件,包括新模型和继承模型的示例 + 4. .xml 示例视图文件,包括列表、看板、表单、搜索等 + 5. controllers 示例文件,用于门户网站对外数据发布及 api 接口开发。例子包含对 odoo portal 门户的继承处理 + 6. report报告设计文件示例。包括如何定义 sql 生成视图的.py文件,用于 graph 和 pivot的.xml文件。 + 7. action 动作 和 menu 菜单文件示例。 + 8. 特殊Ui样例,包括 Alert role 信息及特殊字段展现设置。 + 9. Odoo Widget 使用指导,包括 170+小部件清单,常用 widget 用法。 + 10.快速访问在线Odoo开发人员教程。 + 11. 多语言支持,多公司支持 + 12. Odoo 17,16,15,14,13,12, 企业版,社区版,在线SaaS.sh版,等全版本支持 + 13. 代码完全开源 + ''', + 'depends': [ + 'event', + 'app_web_superbar_pro' + ], + 'data': [ + # please add your file + # please comment follow on ur produce odoo + # 'security/app_security.xml', + # 'security/ir.model.access.csv', + 'views/event_event_views.xml', + # 'views/menu_views.xml', + # 'views/website_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + # 'app_/static/src/scss/style.scss', + ], + 'web.assets_backend': [ + # 'app_/static/src/js/*.js', + ], + }, + 'demo': [ + # 'views/website_templates.xml', + ], + # '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_event_superbar/controllers/__init__.py b/app_event_superbar/controllers/__init__.py new file mode 100644 index 00000000..83118e09 --- /dev/null +++ b/app_event_superbar/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +# from . import main diff --git a/app_event_superbar/controllers/main.py b/app_event_superbar/controllers/main.py new file mode 100644 index 00000000..af262e56 --- /dev/null +++ b/app_event_superbar/controllers/main.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- + +from odoo import http +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class appCustomerPortal(CustomerPortal): + + # Controler sample + @http.route('/my/webclient/locale/', type='http', auth="none") + def index(self, **kw): + return "Hello, world" + + @http.route('/default/default/objects/', auth='public') + def list(self, **kw): + return http.request.render('default.listing', { + 'root': '/default/default', + 'objects': http.request.env['default.default'].search([]), + }) + + @http.route('/default/default/objects//', auth='public') + def object(self, obj, **kw): + return http.request.render('default.object', { + 'object': obj + }) diff --git a/app_event_superbar/hooks.py b/app_event_superbar/hooks.py new file mode 100644 index 00000000..59dde92e --- /dev/null +++ b/app_event_superbar/hooks.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-06 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# Copyright (C) 2009~2023 odooAi.cn + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +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_event_superbar/i18n/README.txt b/app_event_superbar/i18n/README.txt new file mode 100644 index 00000000..222b84cd --- /dev/null +++ b/app_event_superbar/i18n/README.txt @@ -0,0 +1,2 @@ +Please follow this tutorial for more guides: +https://www.odoo.com/documentation/master/developer/misc/i18n/translations.html \ No newline at end of file diff --git a/app_event_superbar/i18n/zh_CN.po b/app_event_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..dbf751e2 --- /dev/null +++ b/app_event_superbar/i18n/zh_CN.po @@ -0,0 +1,15 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e-20231124\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-11-28 09:01+0000\n" +"PO-Revision-Date: 2023-11-28 09:01+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_event_superbar/models/__init__.py b/app_event_superbar/models/__init__.py new file mode 100644 index 00000000..13aa9e49 --- /dev/null +++ b/app_event_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of odooAi.cn. See LICENSE file for full copyright and licensing details. + +# from . import product_template diff --git a/app_event_superbar/models/product_template.py b/app_event_superbar/models/product_template.py new file mode 100644 index 00000000..136045ab --- /dev/null +++ b/app_event_superbar/models/product_template.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- + +############################################################################## +# 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. + +# Create on 2023-10-06 +############################################################################## + +from odoo import models, fields, api, _ +from odoo.tools.translate import html_translate + +import logging +_logger = logging.getLogger(__name__) + +# Template for model inherit +class ProductTemplate(models.Model): + _inherit = 'product.template' + + short_name = fields.Char(string='Short Name', translate=True, readonly=False, copy=True) \ No newline at end of file diff --git a/app_event_superbar/security/app_security.xml b/app_event_superbar/security/app_security.xml new file mode 100644 index 00000000..99b55a21 --- /dev/null +++ b/app_event_superbar/security/app_security.xml @@ -0,0 +1,41 @@ + + + + + + App... + Helps you manage your ... + 8 + + + + + App User + + + The user will be able to ... + + + + + App Admin + + + The user will be able to config ... + + + + + + + + + + + + + + + + + diff --git a/app_event_superbar/security/ir.model.access.csv b/app_event_superbar/security/ir.model.access.csv new file mode 100644 index 00000000..58262d44 --- /dev/null +++ b/app_event_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_event_superbar/static/description/banner.gif b/app_event_superbar/static/description/banner.gif new file mode 100644 index 00000000..43754cbf Binary files /dev/null and b/app_event_superbar/static/description/banner.gif differ diff --git a/app_event_superbar/static/description/banner.png b/app_event_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_event_superbar/static/description/banner.png differ diff --git a/app_event_superbar/static/description/banner1.png b/app_event_superbar/static/description/banner1.png new file mode 100644 index 00000000..91d450c8 Binary files /dev/null and b/app_event_superbar/static/description/banner1.png differ diff --git a/app_event_superbar/static/description/demo1.jpg b/app_event_superbar/static/description/demo1.jpg new file mode 100644 index 00000000..539bb88b Binary files /dev/null and b/app_event_superbar/static/description/demo1.jpg differ diff --git a/app_event_superbar/static/description/demo10.jpg b/app_event_superbar/static/description/demo10.jpg new file mode 100644 index 00000000..07d5f6c6 Binary files /dev/null and b/app_event_superbar/static/description/demo10.jpg differ diff --git a/app_event_superbar/static/description/demo2.jpg b/app_event_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..a54add90 Binary files /dev/null and b/app_event_superbar/static/description/demo2.jpg differ diff --git a/app_event_superbar/static/description/demo3.jpg b/app_event_superbar/static/description/demo3.jpg new file mode 100644 index 00000000..ffbc61e4 Binary files /dev/null and b/app_event_superbar/static/description/demo3.jpg differ diff --git a/app_event_superbar/static/description/demo_controler.jpg b/app_event_superbar/static/description/demo_controler.jpg new file mode 100644 index 00000000..a77011d7 Binary files /dev/null and b/app_event_superbar/static/description/demo_controler.jpg differ diff --git a/app_event_superbar/static/description/demo_form.jpg b/app_event_superbar/static/description/demo_form.jpg new file mode 100644 index 00000000..883d5460 Binary files /dev/null and b/app_event_superbar/static/description/demo_form.jpg differ diff --git a/app_event_superbar/static/description/demo_graph.jpg b/app_event_superbar/static/description/demo_graph.jpg new file mode 100644 index 00000000..5e506e95 Binary files /dev/null and b/app_event_superbar/static/description/demo_graph.jpg differ diff --git a/app_event_superbar/static/description/demo_kanban.jpg b/app_event_superbar/static/description/demo_kanban.jpg new file mode 100644 index 00000000..46470d09 Binary files /dev/null and b/app_event_superbar/static/description/demo_kanban.jpg differ diff --git a/app_event_superbar/static/description/demo_list.jpg b/app_event_superbar/static/description/demo_list.jpg new file mode 100644 index 00000000..6b5c1e34 Binary files /dev/null and b/app_event_superbar/static/description/demo_list.jpg differ diff --git a/app_event_superbar/static/description/demo_menu.jpg b/app_event_superbar/static/description/demo_menu.jpg new file mode 100644 index 00000000..666a29f4 Binary files /dev/null and b/app_event_superbar/static/description/demo_menu.jpg differ diff --git a/app_event_superbar/static/description/demo_pivot.jpg b/app_event_superbar/static/description/demo_pivot.jpg new file mode 100644 index 00000000..b546dc6b Binary files /dev/null and b/app_event_superbar/static/description/demo_pivot.jpg differ diff --git a/app_event_superbar/static/description/demo_report.jpg b/app_event_superbar/static/description/demo_report.jpg new file mode 100644 index 00000000..72af4d57 Binary files /dev/null and b/app_event_superbar/static/description/demo_report.jpg differ diff --git a/app_event_superbar/static/description/demo_search.jpg b/app_event_superbar/static/description/demo_search.jpg new file mode 100644 index 00000000..06efe6fa Binary files /dev/null and b/app_event_superbar/static/description/demo_search.jpg differ diff --git a/app_event_superbar/static/description/demo_ui.jpg b/app_event_superbar/static/description/demo_ui.jpg new file mode 100644 index 00000000..fb493811 Binary files /dev/null and b/app_event_superbar/static/description/demo_ui.jpg differ diff --git a/app_event_superbar/static/description/demo_use.jpg b/app_event_superbar/static/description/demo_use.jpg new file mode 100644 index 00000000..5a72fc16 Binary files /dev/null and b/app_event_superbar/static/description/demo_use.jpg differ diff --git a/app_event_superbar/static/description/demo_widget_list.jpg b/app_event_superbar/static/description/demo_widget_list.jpg new file mode 100644 index 00000000..bb2d794a Binary files /dev/null and b/app_event_superbar/static/description/demo_widget_list.jpg differ diff --git a/app_event_superbar/static/description/demo_widget_use.jpg b/app_event_superbar/static/description/demo_widget_use.jpg new file mode 100644 index 00000000..7f141573 Binary files /dev/null and b/app_event_superbar/static/description/demo_widget_use.jpg differ diff --git a/app_event_superbar/static/description/icon.png b/app_event_superbar/static/description/icon.png new file mode 100644 index 00000000..adc7a494 Binary files /dev/null and b/app_event_superbar/static/description/icon.png differ diff --git a/app_event_superbar/static/description/index.html b/app_event_superbar/static/description/index.html new file mode 100644 index 00000000..402e8df4 --- /dev/null +++ b/app_event_superbar/static/description/index.html @@ -0,0 +1,427 @@ + + + + +
+

Odoo Module Template. App sample with widget.

+

Odoo开发规范模板,Widget清单与使用样例

+

Sample Description of app. video and brief and detail demo snap and text

+
+ + + +
+
+

Just Clone this sample to your name to quick create your odoo addons

+

- Sample Local Video. Change to your video -

+
+ + +
+ +
+ +
+
+

- Sample Video on youtube remote. Change to your video -

+
+
+
+
+ +
+


+
+
+ Click above Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+

Demo Gif Animation if you can not get video

+ +
+
+ + + +
+

- Features -

+
+
+
+
+
+
+
+ 1 +
+

+ A full Sample module app of odoo addons. +

+

All the code, views, data ,banner, icon and description sample follow the odoo rule.

+
+
+
+ 2 +
+

+ Sample manifest file. +

+

Including structure and name and description etc, all field sample. Security xml and csv file for role group access rule. Follow most odoo rule follow

+

https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html

+
+
+
+ 3 +
+

+ Sample .py models file +

+

for new model and inherit model

+
+
+
+ 4 +
+

+ Sample .xml views file for models +

+

Sample xml views file for models, with list, kanban, form, search

+
+
+
+ 5 +
+

+ Sample controllers file +

+

for website data publish and api developer. including how inherit odoo portal home

+
+
+
+
+
+
+
+ 6 +
+

+ Sample report design file +

+

.py file with how sql define. .xml file for graph and pivot

+
+
+
+ 7 +
+

+ Sample action and menu file +

+

Root menu and menu group and action menu

+
+
+
+ 8 +
+

+ Ui misc sample +

+

Alert like info and special field setup.

+
+
+
+ 9 +
+

+ Odoo Widget sample +

+

170+ widget list document and Frequently Used Sample.

+
+
+
+ 10 +
+

+ Quick access odoo developer Tutorials online. +

+

Document online for chinese and english. Fast visit in China.

+
+
+
+ 11 +
+

+ Full Open Source.Multi-language Support. Multi-Company Support +

+

Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition.

+

代码完全开源,多语言支持,多公司支持。Odoo 17,16,15,14,13,12, 企业版,社区版,在线SaaS.sh版,等全版本支持

+
+
+
+
+
+
+
+ + + + +
+
+

So Easy to navigator and search any data.

+

+
+ +
+
+
+ + +
+
+

- Feature Guide -

+
+
+
+
+
+ +
+
+

+ A full Sample module app of odoo addons. +

+

All the code, views, data ,banner, icon and description sample follow the odoo rule.

+
+ +
+
+
+

+ Sample manifest file. +

+

Including structure and name and description etc, all field sample.

+

Security xml and csv file for role group access rule. + Sample icon, banner, index.html, install/uninstall hooks. + Follow most odoo rule follow

+

https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html

+
+ +
+
+
+

+ Sample .py models file, for new model and inherit model +

+

Please comment the inherit .py file of product_template.py in produce odoo.

+
+ +
+
+
+

+ Sample .xml views file for models, with list, kanban, form, search +

+

List

+
+ +
+

Kanban

+
+ +
+

Form

+
+ +
+

Search

+
+ +
+
+
+

+ Sample controllers file for website data publish and api developer +

+

including how inherit odoo portal home.

+
+ +
+
+
+

+ Sample report design file. +

+

.py file with how sql define.

+
+ +
+

.xml file for graph and pivot.

+
+ +
+
+ +
+
+
+

+ Sample action and menu file. +

+

Root menu and menu group and action menu.

+
+ +
+
+
+

+ Ui misc sample. Alert like info and special field setup. +

+
+ +
+
+
+

+ Odoo Widget sample. +

+

170+ widget list document

+
+ +
+

Frequently Used Sample.

+
+ +
+
+
+

+ Quick access odoo developer Tutorials online. +

+

Click alert info to visit. Document online for chinese and english. Fast visit in China.

+
+ +
+
+
+
+
+
+ + + + + + +
+

- How to setup and use -

+

This app need no extra module. The price already included

+
+
+
+

+ 1. Buy and Install +

+

+ 2. Clone this sample and rename to your module name to quick create your odoo addons. +

+

3. Check the demo we create

+
+
+ +
+
+

4. More information in our FAQ

+
+ https://www.odooai.cn/faq +
+
+
+ + + + + + +
+
+
+

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

+
+
+
+
+ + \ No newline at end of file diff --git a/app_event_superbar/static/description/qr.png b/app_event_superbar/static/description/qr.png new file mode 100644 index 00000000..959f15c0 Binary files /dev/null and b/app_event_superbar/static/description/qr.png differ diff --git a/app_event_superbar/static/img/icon_odooai.png b/app_event_superbar/static/img/icon_odooai.png new file mode 100644 index 00000000..a022f8d0 Binary files /dev/null and b/app_event_superbar/static/img/icon_odooai.png differ diff --git a/app_event_superbar/static/img/icon_odooapp.png b/app_event_superbar/static/img/icon_odooapp.png new file mode 100644 index 00000000..775a12ee Binary files /dev/null and b/app_event_superbar/static/img/icon_odooapp.png differ diff --git a/app_event_superbar/static/img/logo_odooai.png b/app_event_superbar/static/img/logo_odooai.png new file mode 100644 index 00000000..482f2a50 Binary files /dev/null and b/app_event_superbar/static/img/logo_odooai.png differ diff --git a/app_event_superbar/static/src/js/odooai.cn b/app_event_superbar/static/src/js/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/static/src/scss/odooai.cn b/app_event_superbar/static/src/scss/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/static/src/scss/style.scss b/app_event_superbar/static/src/scss/style.scss new file mode 100644 index 00000000..02d893e9 --- /dev/null +++ b/app_event_superbar/static/src/scss/style.scss @@ -0,0 +1,18 @@ +// scss sample, 样例navbar在下方的特殊处理 +.o_web_client { + //userMenu + .o_burger_menu { + width: 80%; + .o_burger_menu_topbar { + height: var(--o-navbar-height); + } + &.flex-column { + flex-direction: column-reverse!important; + } + .oi:before, .fa:before, .dropdown-toggle { + font-size: 2em; + line-height: var(--o-navbar-height); + } + } +} + diff --git a/app_event_superbar/static/src/xml/odooai.cn b/app_event_superbar/static/src/xml/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/views/event_event_views.xml b/app_event_superbar/views/event_event_views.xml new file mode 100644 index 00000000..4ce3c15d --- /dev/null +++ b/app_event_superbar/views/event_event_views.xml @@ -0,0 +1,17 @@ + + + + + app.event.event.search.superbar + event.event + + + + + + + + + + + diff --git a/app_event_superbar/views/menu_views.xml b/app_event_superbar/views/menu_views.xml new file mode 100644 index 00000000..042514a6 --- /dev/null +++ b/app_event_superbar/views/menu_views.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app_event_superbar/views/website_templates.xml b/app_event_superbar/views/website_templates.xml new file mode 100644 index 00000000..d733945b --- /dev/null +++ b/app_event_superbar/views/website_templates.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_event_superbar/wizard/odooai.cn b/app_event_superbar/wizard/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_hr_superbar/__init__.py b/app_hr_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_hr_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_hr_superbar/__manifest__.py b/app_hr_superbar/__manifest__.py new file mode 100644 index 00000000..9d1b6e44 --- /dev/null +++ b/app_hr_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 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': "Employee Navigator by department, hr superbar", + 'version': '24.07.18', + 'author': 'odooai.cn', + 'category': 'Human Resources', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse employees by departments tree. hr organization chart. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + ztree widget. hr Hierarchy organization chart 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': [ + 'hr', + ], + 'images': ['static/description/hr2.gif'], + 'data': [ + 'views/hr_views.xml', + 'views/hr_department_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_hr_superbar/hooks.py b/app_hr_superbar/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_hr_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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_hr_superbar/i18n/zh_CN.po b/app_hr_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_hr_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_hr_superbar/models/__init__.py b/app_hr_superbar/models/__init__.py new file mode 100644 index 00000000..fbc15372 --- /dev/null +++ b/app_hr_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + + + diff --git a/app_hr_superbar/report/__init__.py b/app_hr_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_hr_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_hr_superbar/static/description/account1.jpg b/app_hr_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_hr_superbar/static/description/account1.jpg differ diff --git a/app_hr_superbar/static/description/banner.gif b/app_hr_superbar/static/description/banner.gif new file mode 100644 index 00000000..48f55f93 Binary files /dev/null and b/app_hr_superbar/static/description/banner.gif differ diff --git a/app_hr_superbar/static/description/banner.png b/app_hr_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_hr_superbar/static/description/banner.png differ diff --git a/app_hr_superbar/static/description/base1.jpg b/app_hr_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_hr_superbar/static/description/base1.jpg differ diff --git a/app_hr_superbar/static/description/base2.jpg b/app_hr_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_hr_superbar/static/description/base2.jpg differ diff --git a/app_hr_superbar/static/description/base3.jpg b/app_hr_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_hr_superbar/static/description/base3.jpg differ diff --git a/app_hr_superbar/static/description/base4.jpg b/app_hr_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_hr_superbar/static/description/base4.jpg differ diff --git a/app_hr_superbar/static/description/base5.jpg b/app_hr_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_hr_superbar/static/description/base5.jpg differ diff --git a/app_hr_superbar/static/description/base6.jpg b/app_hr_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_hr_superbar/static/description/base6.jpg differ diff --git a/app_hr_superbar/static/description/base7.jpg b/app_hr_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_hr_superbar/static/description/base7.jpg differ diff --git a/app_hr_superbar/static/description/base8.jpg b/app_hr_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_hr_superbar/static/description/base8.jpg differ diff --git a/app_hr_superbar/static/description/base9.jpg b/app_hr_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_hr_superbar/static/description/base9.jpg differ diff --git a/app_hr_superbar/static/description/contacts1.jpg b/app_hr_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_hr_superbar/static/description/contacts1.jpg differ diff --git a/app_hr_superbar/static/description/crm1.jpg b/app_hr_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_hr_superbar/static/description/crm1.jpg differ diff --git a/app_hr_superbar/static/description/demo2.jpg b/app_hr_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_hr_superbar/static/description/demo2.jpg differ diff --git a/app_hr_superbar/static/description/demo_module1.jpg b/app_hr_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_hr_superbar/static/description/demo_module1.jpg differ diff --git a/app_hr_superbar/static/description/demo_module2.jpg b/app_hr_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_hr_superbar/static/description/demo_module2.jpg differ diff --git a/app_hr_superbar/static/description/hr.png b/app_hr_superbar/static/description/hr.png new file mode 100644 index 00000000..1e25e532 Binary files /dev/null and b/app_hr_superbar/static/description/hr.png differ diff --git a/app_hr_superbar/static/description/hr1.jpg b/app_hr_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_hr_superbar/static/description/hr1.jpg differ diff --git a/app_hr_superbar/static/description/hr2.gif b/app_hr_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_hr_superbar/static/description/hr2.gif differ diff --git a/app_hr_superbar/static/description/icon.png b/app_hr_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_hr_superbar/static/description/icon.png differ diff --git a/app_hr_superbar/static/description/index.html b/app_hr_superbar/static/description/index.html new file mode 100644 index 00000000..250c60c7 --- /dev/null +++ b/app_hr_superbar/static/description/index.html @@ -0,0 +1,329 @@ +
+
+

HR employee addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_hr_superbar/static/description/mrp1.gif b/app_hr_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_hr_superbar/static/description/mrp1.gif differ diff --git a/app_hr_superbar/static/description/mrp1.jpg b/app_hr_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_hr_superbar/static/description/mrp1.jpg differ diff --git a/app_hr_superbar/static/description/pos1.jpg b/app_hr_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_hr_superbar/static/description/pos1.jpg differ diff --git a/app_hr_superbar/static/description/pos2.jpg b/app_hr_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_hr_superbar/static/description/pos2.jpg differ diff --git a/app_hr_superbar/static/description/pos3.jpg b/app_hr_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_hr_superbar/static/description/pos3.jpg differ diff --git a/app_hr_superbar/static/description/product1.jpg b/app_hr_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_hr_superbar/static/description/product1.jpg differ diff --git a/app_hr_superbar/static/description/purchase1.jpg b/app_hr_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_hr_superbar/static/description/purchase1.jpg differ diff --git a/app_hr_superbar/static/description/sale1.jpg b/app_hr_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_hr_superbar/static/description/sale1.jpg differ diff --git a/app_hr_superbar/static/description/searchmore.jpg b/app_hr_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_hr_superbar/static/description/searchmore.jpg differ diff --git a/app_hr_superbar/static/description/stock1.jpg b/app_hr_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_hr_superbar/static/description/stock1.jpg differ diff --git a/app_hr_superbar/static/description/superbar.gif b/app_hr_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_hr_superbar/static/description/superbar.gif differ diff --git a/app_hr_superbar/static/description/superbar_use.gif b/app_hr_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_hr_superbar/static/description/superbar_use.gif differ diff --git a/app_hr_superbar/static/description/superbar_use.png b/app_hr_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_hr_superbar/static/description/superbar_use.png differ diff --git a/app_hr_superbar/static/description/use.jpg b/app_hr_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_hr_superbar/static/description/use.jpg differ diff --git a/app_hr_superbar/static/description/use1.jpg b/app_hr_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_hr_superbar/static/description/use1.jpg differ diff --git a/app_hr_superbar/static/description/use2.jpg b/app_hr_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_hr_superbar/static/description/use2.jpg differ diff --git a/app_hr_superbar/static/description/use3.jpg b/app_hr_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_hr_superbar/static/description/use3.jpg differ diff --git a/app_hr_superbar/static/description/use4.jpg b/app_hr_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_hr_superbar/static/description/use4.jpg differ diff --git a/app_hr_superbar/static/description/use5.jpg b/app_hr_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_hr_superbar/static/description/use5.jpg differ diff --git a/app_hr_superbar/static/description/use6.jpg b/app_hr_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_hr_superbar/static/description/use6.jpg differ diff --git a/app_hr_superbar/static/description/use7.jpg b/app_hr_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_hr_superbar/static/description/use7.jpg differ diff --git a/app_hr_superbar/static/description/use8.jpg b/app_hr_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_hr_superbar/static/description/use8.jpg differ diff --git a/app_hr_superbar/static/description/use9.jpg b/app_hr_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_hr_superbar/static/description/use9.jpg differ diff --git a/app_hr_superbar/static/description/usea.jpg b/app_hr_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_hr_superbar/static/description/usea.jpg differ diff --git a/app_hr_superbar/static/description/z_hr1.gif b/app_hr_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_hr_superbar/static/description/z_hr1.gif differ diff --git a/app_hr_superbar/static/description/z_product1.gif b/app_hr_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_hr_superbar/static/description/z_product1.gif differ diff --git a/app_hr_superbar/static/description/z_stock1.gif b/app_hr_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_hr_superbar/static/description/z_stock1.gif differ diff --git a/app_hr_superbar/views/hr_department_views.xml b/app_hr_superbar/views/hr_department_views.xml new file mode 100644 index 00000000..98bbcae3 --- /dev/null +++ b/app_hr_superbar/views/hr_department_views.xml @@ -0,0 +1,16 @@ + + + + app.hr.department.search + hr.department + + + + + + + + + + + diff --git a/app_hr_superbar/views/hr_views.xml b/app_hr_superbar/views/hr_views.xml new file mode 100644 index 00000000..d4c4a8bf --- /dev/null +++ b/app_hr_superbar/views/hr_views.xml @@ -0,0 +1,19 @@ + + + + + app.hr.employee.search + hr.employee + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/__init__.py b/app_mail_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_mail_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_mail_superbar/__manifest__.py b/app_mail_superbar/__manifest__.py new file mode 100644 index 00000000..53fe7bb4 --- /dev/null +++ b/app_mail_superbar/__manifest__.py @@ -0,0 +1,66 @@ +# -*- 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': "Mail quick navigator,mail filter", + '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': 10, + 'summary': """ + mail search, browse all mail 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', + 'mail', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/discuss_channel_member_views.xml', + 'views/mail_followers_views.xml', + 'views/mail_mail_views.xml', + 'views/mail_message_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_mail_superbar/hooks.py b/app_mail_superbar/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_mail_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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_mail_superbar/i18n/zh_CN.po b/app_mail_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_mail_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_mail_superbar/models/__init__.py b/app_mail_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mail_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mail_superbar/report/__init__.py b/app_mail_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_mail_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_mail_superbar/static/description/account1.jpg b/app_mail_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_mail_superbar/static/description/account1.jpg differ diff --git a/app_mail_superbar/static/description/banner.png b/app_mail_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_mail_superbar/static/description/banner.png differ diff --git a/app_mail_superbar/static/description/base1.jpg b/app_mail_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_mail_superbar/static/description/base1.jpg differ diff --git a/app_mail_superbar/static/description/base2.jpg b/app_mail_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_mail_superbar/static/description/base2.jpg differ diff --git a/app_mail_superbar/static/description/base3.jpg b/app_mail_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_mail_superbar/static/description/base3.jpg differ diff --git a/app_mail_superbar/static/description/base4.jpg b/app_mail_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_mail_superbar/static/description/base4.jpg differ diff --git a/app_mail_superbar/static/description/base5.jpg b/app_mail_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_mail_superbar/static/description/base5.jpg differ diff --git a/app_mail_superbar/static/description/base6.jpg b/app_mail_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_mail_superbar/static/description/base6.jpg differ diff --git a/app_mail_superbar/static/description/base7.jpg b/app_mail_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_mail_superbar/static/description/base7.jpg differ diff --git a/app_mail_superbar/static/description/base8.jpg b/app_mail_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_mail_superbar/static/description/base8.jpg differ diff --git a/app_mail_superbar/static/description/base9.jpg b/app_mail_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_mail_superbar/static/description/base9.jpg differ diff --git a/app_mail_superbar/static/description/contacts1.jpg b/app_mail_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_mail_superbar/static/description/contacts1.jpg differ diff --git a/app_mail_superbar/static/description/crm1.jpg b/app_mail_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_mail_superbar/static/description/crm1.jpg differ diff --git a/app_mail_superbar/static/description/demo2.jpg b/app_mail_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_mail_superbar/static/description/demo2.jpg differ diff --git a/app_mail_superbar/static/description/demo_module1.jpg b/app_mail_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_mail_superbar/static/description/demo_module1.jpg differ diff --git a/app_mail_superbar/static/description/demo_module2.jpg b/app_mail_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_mail_superbar/static/description/demo_module2.jpg differ diff --git a/app_mail_superbar/static/description/hr1.jpg b/app_mail_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_mail_superbar/static/description/hr1.jpg differ diff --git a/app_mail_superbar/static/description/hr2.gif b/app_mail_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_mail_superbar/static/description/hr2.gif differ diff --git a/app_mail_superbar/static/description/icon.png b/app_mail_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_mail_superbar/static/description/icon.png differ diff --git a/app_mail_superbar/static/description/index.html b/app_mail_superbar/static/description/index.html new file mode 100644 index 00000000..80079f7f --- /dev/null +++ b/app_mail_superbar/static/description/index.html @@ -0,0 +1,493 @@ +
+
+

Mail addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+

Message navigator

+
+ +
+

Mail navigator

+
+ +
+

Channels Partner navigator

+
+ +
+

Mail navigator

+
+ +
+

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.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20 related apps. + +

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

What you see is what you get. + Online demo user/password: demo/demo + + Click to get demo. + +

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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.

+
+ +
+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_types: [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_mail_superbar/static/description/mail1.jpg b/app_mail_superbar/static/description/mail1.jpg new file mode 100644 index 00000000..1595fe83 Binary files /dev/null and b/app_mail_superbar/static/description/mail1.jpg differ diff --git a/app_mail_superbar/static/description/mail2.jpg b/app_mail_superbar/static/description/mail2.jpg new file mode 100644 index 00000000..ba7a9711 Binary files /dev/null and b/app_mail_superbar/static/description/mail2.jpg differ diff --git a/app_mail_superbar/static/description/mail3.jpg b/app_mail_superbar/static/description/mail3.jpg new file mode 100644 index 00000000..908f028a Binary files /dev/null and b/app_mail_superbar/static/description/mail3.jpg differ diff --git a/app_mail_superbar/static/description/mail4.jpg b/app_mail_superbar/static/description/mail4.jpg new file mode 100644 index 00000000..049623f8 Binary files /dev/null and b/app_mail_superbar/static/description/mail4.jpg differ diff --git a/app_mail_superbar/static/description/mrp1.gif b/app_mail_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_mail_superbar/static/description/mrp1.gif differ diff --git a/app_mail_superbar/static/description/mrp1.jpg b/app_mail_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_mail_superbar/static/description/mrp1.jpg differ diff --git a/app_mail_superbar/static/description/pos1.jpg b/app_mail_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_mail_superbar/static/description/pos1.jpg differ diff --git a/app_mail_superbar/static/description/pos2.jpg b/app_mail_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_mail_superbar/static/description/pos2.jpg differ diff --git a/app_mail_superbar/static/description/pos3.jpg b/app_mail_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_mail_superbar/static/description/pos3.jpg differ diff --git a/app_mail_superbar/static/description/product1.jpg b/app_mail_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_mail_superbar/static/description/product1.jpg differ diff --git a/app_mail_superbar/static/description/purchase1.jpg b/app_mail_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_mail_superbar/static/description/purchase1.jpg differ diff --git a/app_mail_superbar/static/description/sale1.jpg b/app_mail_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_mail_superbar/static/description/sale1.jpg differ diff --git a/app_mail_superbar/static/description/searchmore.jpg b/app_mail_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_mail_superbar/static/description/searchmore.jpg differ diff --git a/app_mail_superbar/static/description/stock1.jpg b/app_mail_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_mail_superbar/static/description/stock1.jpg differ diff --git a/app_mail_superbar/static/description/superbar.gif b/app_mail_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_mail_superbar/static/description/superbar.gif differ diff --git a/app_mail_superbar/static/description/superbar_use.gif b/app_mail_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_mail_superbar/static/description/superbar_use.gif differ diff --git a/app_mail_superbar/static/description/superbar_use.png b/app_mail_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_mail_superbar/static/description/superbar_use.png differ diff --git a/app_mail_superbar/static/description/use.jpg b/app_mail_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_mail_superbar/static/description/use.jpg differ diff --git a/app_mail_superbar/static/description/use1.jpg b/app_mail_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_mail_superbar/static/description/use1.jpg differ diff --git a/app_mail_superbar/static/description/use2.jpg b/app_mail_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_mail_superbar/static/description/use2.jpg differ diff --git a/app_mail_superbar/static/description/use3.jpg b/app_mail_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_mail_superbar/static/description/use3.jpg differ diff --git a/app_mail_superbar/static/description/use4.jpg b/app_mail_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_mail_superbar/static/description/use4.jpg differ diff --git a/app_mail_superbar/static/description/use5.jpg b/app_mail_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_mail_superbar/static/description/use5.jpg differ diff --git a/app_mail_superbar/static/description/use6.jpg b/app_mail_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_mail_superbar/static/description/use6.jpg differ diff --git a/app_mail_superbar/static/description/use7.jpg b/app_mail_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_mail_superbar/static/description/use7.jpg differ diff --git a/app_mail_superbar/static/description/use8.jpg b/app_mail_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_mail_superbar/static/description/use8.jpg differ diff --git a/app_mail_superbar/static/description/use9.jpg b/app_mail_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_mail_superbar/static/description/use9.jpg differ diff --git a/app_mail_superbar/static/description/usea.jpg b/app_mail_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_mail_superbar/static/description/usea.jpg differ diff --git a/app_mail_superbar/static/description/z_hr1.gif b/app_mail_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_mail_superbar/static/description/z_hr1.gif differ diff --git a/app_mail_superbar/static/description/z_product1.gif b/app_mail_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_mail_superbar/static/description/z_product1.gif differ diff --git a/app_mail_superbar/static/description/z_stock1.gif b/app_mail_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_mail_superbar/static/description/z_stock1.gif differ diff --git a/app_mail_superbar/views/discuss_channel_member_views.xml b/app_mail_superbar/views/discuss_channel_member_views.xml new file mode 100644 index 00000000..32cffafe --- /dev/null +++ b/app_mail_superbar/views/discuss_channel_member_views.xml @@ -0,0 +1,17 @@ + + + + app.discuss.channel.member.search + discuss.channel.member + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_followers_views.xml b/app_mail_superbar/views/mail_followers_views.xml new file mode 100644 index 00000000..3ce3af54 --- /dev/null +++ b/app_mail_superbar/views/mail_followers_views.xml @@ -0,0 +1,18 @@ + + + + app.mail.followers.search + mail.followers + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_mail_views.xml b/app_mail_superbar/views/mail_mail_views.xml new file mode 100644 index 00000000..416c0950 --- /dev/null +++ b/app_mail_superbar/views/mail_mail_views.xml @@ -0,0 +1,17 @@ + + + + app.mail.mail.search + mail.mail + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_message_views.xml b/app_mail_superbar/views/mail_message_views.xml new file mode 100644 index 00000000..99b49620 --- /dev/null +++ b/app_mail_superbar/views/mail_message_views.xml @@ -0,0 +1,17 @@ + + + + app.mail.message.search + mail.message + + + + + + + + + + + + \ No newline at end of file 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..d13bcab9 --- /dev/null +++ b/app_module_superbar/__manifest__.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-23 +# 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 + +# 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': "Apps Navigator by Category, Module Navigator", + 'version': '23.10.23', + '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 Apps by category tree. Browse Module by category. Use for parent children tree list kanban navigator. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + """, + '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.png'], + '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..c48504e8 --- /dev/null +++ b/app_module_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 AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# 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 + +# 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_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..28307428 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..e3491918 Binary files /dev/null and b/app_module_superbar/static/description/banner.png differ diff --git a/app_module_superbar/static/description/base1.jpg b/app_module_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_module_superbar/static/description/base1.jpg differ diff --git a/app_module_superbar/static/description/base2.jpg b/app_module_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_module_superbar/static/description/base2.jpg differ diff --git a/app_module_superbar/static/description/base3.jpg b/app_module_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_module_superbar/static/description/base3.jpg differ diff --git a/app_module_superbar/static/description/base4.jpg b/app_module_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_module_superbar/static/description/base4.jpg differ diff --git a/app_module_superbar/static/description/base5.jpg b/app_module_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_module_superbar/static/description/base5.jpg differ diff --git a/app_module_superbar/static/description/base6.jpg b/app_module_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_module_superbar/static/description/base6.jpg differ diff --git a/app_module_superbar/static/description/base7.jpg b/app_module_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_module_superbar/static/description/base7.jpg differ diff --git a/app_module_superbar/static/description/base8.jpg b/app_module_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_module_superbar/static/description/base8.jpg differ diff --git a/app_module_superbar/static/description/base9.jpg b/app_module_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_module_superbar/static/description/base9.jpg 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..4ac551a5 Binary files /dev/null and b/app_module_superbar/static/description/contacts1.jpg differ diff --git a/app_module_superbar/static/description/crm1.jpg b/app_module_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_module_superbar/static/description/crm1.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..c34083e0 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/hr1.jpg b/app_module_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_module_superbar/static/description/hr1.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..23ac0bd7 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..f431fee7 --- /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. +

+
+

Apps Navigator by Category, Module Navigator is ready.

+
+ +
+
+ +
+
+

Advance Search, Advance Filter with Parent Children Tree.

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

Online demo user/password: demo/demo + + Click to get demo. +

+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

How to use! This app do need extra module. The price already included

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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(Extra pay for support):

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_types: [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)]]
  • +
+
+
+
+
+ +
+
+
+

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_module_superbar/static/description/mrp1.gif b/app_module_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_module_superbar/static/description/mrp1.gif differ diff --git a/app_module_superbar/static/description/mrp1.jpg b/app_module_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_module_superbar/static/description/mrp1.jpg differ diff --git a/app_module_superbar/static/description/pos1.jpg b/app_module_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_module_superbar/static/description/pos1.jpg differ diff --git a/app_module_superbar/static/description/pos2.jpg b/app_module_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_module_superbar/static/description/pos2.jpg differ diff --git a/app_module_superbar/static/description/pos3.jpg b/app_module_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_module_superbar/static/description/pos3.jpg differ diff --git a/app_module_superbar/static/description/product1.jpg b/app_module_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_module_superbar/static/description/product1.jpg differ diff --git a/app_module_superbar/static/description/purchase1.jpg b/app_module_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_module_superbar/static/description/purchase1.jpg differ diff --git a/app_module_superbar/static/description/sale1.jpg b/app_module_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_module_superbar/static/description/sale1.jpg differ diff --git a/app_module_superbar/static/description/searchmore.jpg b/app_module_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_module_superbar/static/description/searchmore.jpg differ diff --git a/app_module_superbar/static/description/stock1.jpg b/app_module_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_module_superbar/static/description/stock1.jpg differ diff --git a/app_module_superbar/static/description/superbar.gif b/app_module_superbar/static/description/superbar.gif new file mode 100644 index 00000000..07c2ff79 Binary files /dev/null and b/app_module_superbar/static/description/superbar.gif differ diff --git a/app_module_superbar/static/description/superbar_use.gif b/app_module_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.gif differ diff --git a/app_module_superbar/static/description/superbar_use.png b/app_module_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.png differ diff --git a/app_module_superbar/static/description/use.jpg b/app_module_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_module_superbar/static/description/use.jpg differ diff --git a/app_module_superbar/static/description/use1.jpg b/app_module_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_module_superbar/static/description/use1.jpg differ diff --git a/app_module_superbar/static/description/use2.jpg b/app_module_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_module_superbar/static/description/use2.jpg differ diff --git a/app_module_superbar/static/description/use3.jpg b/app_module_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_module_superbar/static/description/use3.jpg differ diff --git a/app_module_superbar/static/description/use4.jpg b/app_module_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_module_superbar/static/description/use4.jpg differ diff --git a/app_module_superbar/static/description/use5.jpg b/app_module_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_module_superbar/static/description/use5.jpg differ diff --git a/app_module_superbar/static/description/use6.jpg b/app_module_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_module_superbar/static/description/use6.jpg differ diff --git a/app_module_superbar/static/description/use7.jpg b/app_module_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_module_superbar/static/description/use7.jpg differ diff --git a/app_module_superbar/static/description/use8.jpg b/app_module_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_module_superbar/static/description/use8.jpg differ diff --git a/app_module_superbar/static/description/use9.jpg b/app_module_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_module_superbar/static/description/use9.jpg differ diff --git a/app_module_superbar/static/description/usea.jpg b/app_module_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_module_superbar/static/description/usea.jpg differ diff --git a/app_module_superbar/static/description/z_hr1.gif b/app_module_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_module_superbar/static/description/z_hr1.gif differ diff --git a/app_module_superbar/static/description/z_product1.gif b/app_module_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_module_superbar/static/description/z_product1.gif differ diff --git a/app_module_superbar/static/description/z_stock1.gif b/app_module_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_module_superbar/static/description/z_stock1.gif differ diff --git a/app_module_superbar/views/module_views.xml b/app_module_superbar/views/module_views.xml new file mode 100644 index 00000000..67124df2 --- /dev/null +++ b/app_module_superbar/views/module_views.xml @@ -0,0 +1,18 @@ + + + + + ir.module.module.list.select + ir.module.module + + + + kanban,tree + + + + + + + + \ No newline at end of file diff --git a/app_mrp_bom_product_multi_add/static/description/index.html b/app_mrp_bom_product_multi_add/static/description/index.html index d6a83e5f..fd2416b1 100644 --- a/app_mrp_bom_product_multi_add/static/description/index.html +++ b/app_mrp_bom_product_multi_add/static/description/index.html @@ -3,7 +3,7 @@

App MRP Bom Product Multi Add

One Click to add multi product to MRP Bom.

Important: This app is depends on a Paid App. - app_web_one2many_multi_add + app_web_one2many_multi_add

You may also like these free Apps for odoo. diff --git a/app_mrp_superbar/__init__.py b/app_mrp_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_mrp_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_mrp_superbar/__manifest__.py b/app_mrp_superbar/__manifest__.py new file mode 100644 index 00000000..f6056a23 --- /dev/null +++ b/app_mrp_superbar/__manifest__.py @@ -0,0 +1,66 @@ +# -*- 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 mrp Manufacturing Orders browse by state workcenter 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 mrp order, Manufacturing Orders by Materials Availability, work center. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + ztree widget.Hierarchy 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': [ + 'mrp', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + # 'data/ir_data.xml', + 'views/mrp_production_views.xml', + 'views/mrp_workorder_views.xml', + 'views/mrp_bom_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_mrp_superbar/data/ir_data.xml b/app_mrp_superbar/data/ir_data.xml new file mode 100644 index 00000000..7243fdf3 --- /dev/null +++ b/app_mrp_superbar/data/ir_data.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/app_mrp_superbar/hooks.py b/app_mrp_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_mrp_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_mrp_superbar/i18n/zh_CN.po b/app_mrp_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_mrp_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_mrp_superbar/models/__init__.py b/app_mrp_superbar/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_mrp_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_mrp_superbar/report/__init__.py b/app_mrp_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_mrp_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_mrp_superbar/static/description/account1.jpg b/app_mrp_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_mrp_superbar/static/description/account1.jpg differ diff --git a/app_mrp_superbar/static/description/banner.gif b/app_mrp_superbar/static/description/banner.gif new file mode 100644 index 00000000..7f84f91e Binary files /dev/null and b/app_mrp_superbar/static/description/banner.gif differ diff --git a/app_mrp_superbar/static/description/banner.png b/app_mrp_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_mrp_superbar/static/description/banner.png differ diff --git a/app_mrp_superbar/static/description/base1.jpg b/app_mrp_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_mrp_superbar/static/description/base1.jpg differ diff --git a/app_mrp_superbar/static/description/base2.jpg b/app_mrp_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_mrp_superbar/static/description/base2.jpg differ diff --git a/app_mrp_superbar/static/description/base3.jpg b/app_mrp_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_mrp_superbar/static/description/base3.jpg differ diff --git a/app_mrp_superbar/static/description/base4.jpg b/app_mrp_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_mrp_superbar/static/description/base4.jpg differ diff --git a/app_mrp_superbar/static/description/base5.jpg b/app_mrp_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_mrp_superbar/static/description/base5.jpg differ diff --git a/app_mrp_superbar/static/description/base6.jpg b/app_mrp_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_mrp_superbar/static/description/base6.jpg differ diff --git a/app_mrp_superbar/static/description/base7.jpg b/app_mrp_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_mrp_superbar/static/description/base7.jpg differ diff --git a/app_mrp_superbar/static/description/base8.jpg b/app_mrp_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_mrp_superbar/static/description/base8.jpg differ diff --git a/app_mrp_superbar/static/description/base9.jpg b/app_mrp_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_mrp_superbar/static/description/base9.jpg differ diff --git a/app_mrp_superbar/static/description/contacts1.jpg b/app_mrp_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_mrp_superbar/static/description/contacts1.jpg differ diff --git a/app_mrp_superbar/static/description/crm1.jpg b/app_mrp_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_mrp_superbar/static/description/crm1.jpg differ diff --git a/app_mrp_superbar/static/description/demo2.jpg b/app_mrp_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_mrp_superbar/static/description/demo2.jpg differ diff --git a/app_mrp_superbar/static/description/demo_module1.jpg b/app_mrp_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_mrp_superbar/static/description/demo_module1.jpg differ diff --git a/app_mrp_superbar/static/description/demo_module2.jpg b/app_mrp_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_mrp_superbar/static/description/demo_module2.jpg differ diff --git a/app_mrp_superbar/static/description/hr1.jpg b/app_mrp_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_mrp_superbar/static/description/hr1.jpg differ diff --git a/app_mrp_superbar/static/description/hr2.gif b/app_mrp_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_mrp_superbar/static/description/hr2.gif differ diff --git a/app_mrp_superbar/static/description/icon.png b/app_mrp_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_mrp_superbar/static/description/icon.png differ diff --git a/app_mrp_superbar/static/description/index.html b/app_mrp_superbar/static/description/index.html new file mode 100644 index 00000000..eec4c8aa --- /dev/null +++ b/app_mrp_superbar/static/description/index.html @@ -0,0 +1,401 @@ +
+
+

MRP Advance Search Sidebar with Hierarchy Parent Children Tree

+
+
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

Online demo user/password: demo/demo + + Click to get demo. +

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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_mrp_superbar/static/description/mrp1.gif b/app_mrp_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_mrp_superbar/static/description/mrp1.gif differ diff --git a/app_mrp_superbar/static/description/mrp1.jpg b/app_mrp_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_mrp_superbar/static/description/mrp1.jpg differ diff --git a/app_mrp_superbar/static/description/pos1.jpg b/app_mrp_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_mrp_superbar/static/description/pos1.jpg differ diff --git a/app_mrp_superbar/static/description/pos2.jpg b/app_mrp_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_mrp_superbar/static/description/pos2.jpg differ diff --git a/app_mrp_superbar/static/description/pos3.jpg b/app_mrp_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_mrp_superbar/static/description/pos3.jpg differ diff --git a/app_mrp_superbar/static/description/product1.jpg b/app_mrp_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_mrp_superbar/static/description/product1.jpg differ diff --git a/app_mrp_superbar/static/description/purchase1.jpg b/app_mrp_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_mrp_superbar/static/description/purchase1.jpg differ diff --git a/app_mrp_superbar/static/description/sale1.jpg b/app_mrp_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_mrp_superbar/static/description/sale1.jpg differ diff --git a/app_mrp_superbar/static/description/searchmore.jpg b/app_mrp_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_mrp_superbar/static/description/searchmore.jpg differ diff --git a/app_mrp_superbar/static/description/stock1.jpg b/app_mrp_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_mrp_superbar/static/description/stock1.jpg differ diff --git a/app_mrp_superbar/static/description/superbar.gif b/app_mrp_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_mrp_superbar/static/description/superbar.gif differ diff --git a/app_mrp_superbar/static/description/superbar_use.gif b/app_mrp_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_mrp_superbar/static/description/superbar_use.gif differ diff --git a/app_mrp_superbar/static/description/use.jpg b/app_mrp_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_mrp_superbar/static/description/use.jpg differ diff --git a/app_mrp_superbar/static/description/use1.jpg b/app_mrp_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_mrp_superbar/static/description/use1.jpg differ diff --git a/app_mrp_superbar/static/description/use2.jpg b/app_mrp_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_mrp_superbar/static/description/use2.jpg differ diff --git a/app_mrp_superbar/static/description/use3.jpg b/app_mrp_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_mrp_superbar/static/description/use3.jpg differ diff --git a/app_mrp_superbar/static/description/use4.jpg b/app_mrp_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_mrp_superbar/static/description/use4.jpg differ diff --git a/app_mrp_superbar/static/description/use5.jpg b/app_mrp_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_mrp_superbar/static/description/use5.jpg differ diff --git a/app_mrp_superbar/static/description/use6.jpg b/app_mrp_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_mrp_superbar/static/description/use6.jpg differ diff --git a/app_mrp_superbar/static/description/use7.jpg b/app_mrp_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_mrp_superbar/static/description/use7.jpg differ diff --git a/app_mrp_superbar/static/description/use8.jpg b/app_mrp_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_mrp_superbar/static/description/use8.jpg differ diff --git a/app_mrp_superbar/static/description/use9.jpg b/app_mrp_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_mrp_superbar/static/description/use9.jpg differ diff --git a/app_mrp_superbar/static/description/usea.jpg b/app_mrp_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_mrp_superbar/static/description/usea.jpg differ diff --git a/app_mrp_superbar/static/description/z_hr1.gif b/app_mrp_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_mrp_superbar/static/description/z_hr1.gif differ diff --git a/app_mrp_superbar/static/description/z_product1.gif b/app_mrp_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_mrp_superbar/static/description/z_product1.gif differ diff --git a/app_mrp_superbar/static/description/z_stock1.gif b/app_mrp_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_mrp_superbar/static/description/z_stock1.gif differ diff --git a/app_mrp_superbar/views/mrp_bom_views.xml b/app_mrp_superbar/views/mrp_bom_views.xml new file mode 100644 index 00000000..da7ad5c2 --- /dev/null +++ b/app_mrp_superbar/views/mrp_bom_views.xml @@ -0,0 +1,17 @@ + + + + + mrp.bom.select.superbar + mrp.bom + + + + + + + + + + + diff --git a/app_mrp_superbar/views/mrp_production_views.xml b/app_mrp_superbar/views/mrp_production_views.xml new file mode 100644 index 00000000..ed9e9162 --- /dev/null +++ b/app_mrp_superbar/views/mrp_production_views.xml @@ -0,0 +1,19 @@ + + + + + app.mrp.production.select + mrp.production + + + + + + + + + + + + + diff --git a/app_mrp_superbar/views/mrp_workorder_views.xml b/app_mrp_superbar/views/mrp_workorder_views.xml new file mode 100644 index 00000000..fe16eec4 --- /dev/null +++ b/app_mrp_superbar/views/mrp_workorder_views.xml @@ -0,0 +1,17 @@ + + + + + app.mrp.production.work.order.select + mrp.workorder + + + + + + + + + + + diff --git a/app_odoo_customize/static/description/index_cn.html b/app_odoo_customize/static/description/index_cn.html index 9503bff5..2b63f259 100644 --- a/app_odoo_customize/static/description/index_cn.html +++ b/app_odoo_customize/static/description/index_cn.html @@ -22,7 +22,7 @@

如果你使用企业版,请获取我们针对企业版的定制优化模块
- + 从odoo官方应用商店获取 "app_web_enterprise" 应用模块

diff --git a/app_odoo_customize/views/app_theme_config_settings_views.xml b/app_odoo_customize/views/app_theme_config_settings_views.xml index a9b28361..d0ffb17e 100644 --- a/app_odoo_customize/views/app_theme_config_settings_views.xml +++ b/app_odoo_customize/views/app_theme_config_settings_views.xml @@ -46,7 +46,7 @@
diff --git a/app_pos_superbar/__init__.py b/app_pos_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_pos_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_pos_superbar/__manifest__.py b/app_pos_superbar/__manifest__.py new file mode 100644 index 00000000..77de13a7 --- /dev/null +++ b/app_pos_superbar/__manifest__.py @@ -0,0 +1,66 @@ +# -*- 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 Pos order browse by store salesperson status", + 'version': '24.07.18', + 'author': 'odooai.cn', + 'category': 'Point of Sale', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 12, + 'summary': """ + Browse pos order by store 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, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'point_of_sale', + 'app_product_superbar', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/product_template_views.xml', + 'views/pos_order_views.xml', + 'views/report_pos_order_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_pos_superbar/hooks.py b/app_pos_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_pos_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_pos_superbar/i18n/zh_CN.po b/app_pos_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_pos_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_pos_superbar/models/__init__.py b/app_pos_superbar/models/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_pos_superbar/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_pos_superbar/report/__init__.py b/app_pos_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_pos_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_pos_superbar/static/description/account1.jpg b/app_pos_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_pos_superbar/static/description/account1.jpg differ diff --git a/app_pos_superbar/static/description/banner.gif b/app_pos_superbar/static/description/banner.gif new file mode 100644 index 00000000..3fa07c7f Binary files /dev/null and b/app_pos_superbar/static/description/banner.gif differ diff --git a/app_pos_superbar/static/description/banner.png b/app_pos_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_pos_superbar/static/description/banner.png differ diff --git a/app_pos_superbar/static/description/base1.jpg b/app_pos_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_pos_superbar/static/description/base1.jpg differ diff --git a/app_pos_superbar/static/description/base2.jpg b/app_pos_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_pos_superbar/static/description/base2.jpg differ diff --git a/app_pos_superbar/static/description/base3.jpg b/app_pos_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_pos_superbar/static/description/base3.jpg differ diff --git a/app_pos_superbar/static/description/base4.jpg b/app_pos_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_pos_superbar/static/description/base4.jpg differ diff --git a/app_pos_superbar/static/description/base5.jpg b/app_pos_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_pos_superbar/static/description/base5.jpg differ diff --git a/app_pos_superbar/static/description/base6.jpg b/app_pos_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_pos_superbar/static/description/base6.jpg differ diff --git a/app_pos_superbar/static/description/base7.jpg b/app_pos_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_pos_superbar/static/description/base7.jpg differ diff --git a/app_pos_superbar/static/description/base8.jpg b/app_pos_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_pos_superbar/static/description/base8.jpg differ diff --git a/app_pos_superbar/static/description/base9.jpg b/app_pos_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_pos_superbar/static/description/base9.jpg differ diff --git a/app_pos_superbar/static/description/contacts1.jpg b/app_pos_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_pos_superbar/static/description/contacts1.jpg differ diff --git a/app_pos_superbar/static/description/crm1.jpg b/app_pos_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_pos_superbar/static/description/crm1.jpg differ diff --git a/app_pos_superbar/static/description/demo2.jpg b/app_pos_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_pos_superbar/static/description/demo2.jpg differ diff --git a/app_pos_superbar/static/description/demo_module1.jpg b/app_pos_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_pos_superbar/static/description/demo_module1.jpg differ diff --git a/app_pos_superbar/static/description/demo_module2.jpg b/app_pos_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_pos_superbar/static/description/demo_module2.jpg differ diff --git a/app_pos_superbar/static/description/hr1.jpg b/app_pos_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_pos_superbar/static/description/hr1.jpg differ diff --git a/app_pos_superbar/static/description/hr2.gif b/app_pos_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_pos_superbar/static/description/hr2.gif differ diff --git a/app_pos_superbar/static/description/icon.png b/app_pos_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_pos_superbar/static/description/icon.png differ diff --git a/app_pos_superbar/static/description/index.html b/app_pos_superbar/static/description/index.html new file mode 100644 index 00000000..07cec623 --- /dev/null +++ b/app_pos_superbar/static/description/index.html @@ -0,0 +1,417 @@ +
+
+

POS addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20 related apps. + +

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

Online demo user/password: demo/demo + + Click to get demo. +

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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_pos_superbar/static/description/mrp1.gif b/app_pos_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_pos_superbar/static/description/mrp1.gif differ diff --git a/app_pos_superbar/static/description/mrp1.jpg b/app_pos_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_pos_superbar/static/description/mrp1.jpg differ diff --git a/app_pos_superbar/static/description/pos1.jpg b/app_pos_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_pos_superbar/static/description/pos1.jpg differ diff --git a/app_pos_superbar/static/description/pos2.jpg b/app_pos_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_pos_superbar/static/description/pos2.jpg differ diff --git a/app_pos_superbar/static/description/pos3.jpg b/app_pos_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_pos_superbar/static/description/pos3.jpg differ diff --git a/app_pos_superbar/static/description/product1.jpg b/app_pos_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_pos_superbar/static/description/product1.jpg differ diff --git a/app_pos_superbar/static/description/purchase1.jpg b/app_pos_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_pos_superbar/static/description/purchase1.jpg differ diff --git a/app_pos_superbar/static/description/sale1.jpg b/app_pos_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_pos_superbar/static/description/sale1.jpg differ diff --git a/app_pos_superbar/static/description/searchmore.jpg b/app_pos_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_pos_superbar/static/description/searchmore.jpg differ diff --git a/app_pos_superbar/static/description/stock1.jpg b/app_pos_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_pos_superbar/static/description/stock1.jpg differ diff --git a/app_pos_superbar/static/description/superbar.gif b/app_pos_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_pos_superbar/static/description/superbar.gif differ diff --git a/app_pos_superbar/static/description/superbar_use.gif b/app_pos_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_pos_superbar/static/description/superbar_use.gif differ diff --git a/app_pos_superbar/static/description/use.jpg b/app_pos_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_pos_superbar/static/description/use.jpg differ diff --git a/app_pos_superbar/static/description/use1.jpg b/app_pos_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_pos_superbar/static/description/use1.jpg differ diff --git a/app_pos_superbar/static/description/use2.jpg b/app_pos_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_pos_superbar/static/description/use2.jpg differ diff --git a/app_pos_superbar/static/description/use3.jpg b/app_pos_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_pos_superbar/static/description/use3.jpg differ diff --git a/app_pos_superbar/static/description/use4.jpg b/app_pos_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_pos_superbar/static/description/use4.jpg differ diff --git a/app_pos_superbar/static/description/use5.jpg b/app_pos_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_pos_superbar/static/description/use5.jpg differ diff --git a/app_pos_superbar/static/description/use6.jpg b/app_pos_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_pos_superbar/static/description/use6.jpg differ diff --git a/app_pos_superbar/static/description/use7.jpg b/app_pos_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_pos_superbar/static/description/use7.jpg differ diff --git a/app_pos_superbar/static/description/use8.jpg b/app_pos_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_pos_superbar/static/description/use8.jpg differ diff --git a/app_pos_superbar/static/description/use9.jpg b/app_pos_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_pos_superbar/static/description/use9.jpg differ diff --git a/app_pos_superbar/static/description/usea.jpg b/app_pos_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_pos_superbar/static/description/usea.jpg differ diff --git a/app_pos_superbar/static/description/z_hr1.gif b/app_pos_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_pos_superbar/static/description/z_hr1.gif differ diff --git a/app_pos_superbar/static/description/z_product1.gif b/app_pos_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_pos_superbar/static/description/z_product1.gif differ diff --git a/app_pos_superbar/static/description/z_stock1.gif b/app_pos_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_pos_superbar/static/description/z_stock1.gif differ diff --git a/app_pos_superbar/views/pos_order_views.xml b/app_pos_superbar/views/pos_order_views.xml new file mode 100644 index 00000000..1e337e73 --- /dev/null +++ b/app_pos_superbar/views/pos_order_views.xml @@ -0,0 +1,19 @@ + + + + + app.pos.order.list.select + pos.order + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_pos_superbar/views/product_template_views.xml b/app_pos_superbar/views/product_template_views.xml new file mode 100644 index 00000000..d63e9ab8 --- /dev/null +++ b/app_pos_superbar/views/product_template_views.xml @@ -0,0 +1,15 @@ + + + + + pos.app.product.template.search + product.template + + + + + + + + + \ No newline at end of file diff --git a/app_pos_superbar/views/report_pos_order_views.xml b/app_pos_superbar/views/report_pos_order_views.xml new file mode 100644 index 00000000..0337f49c --- /dev/null +++ b/app_pos_superbar/views/report_pos_order_views.xml @@ -0,0 +1,18 @@ + + + + + app.report.pos.order.search + report.pos.order + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar/__init__.py b/app_product_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_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_product_superbar/__manifest__.py b/app_product_superbar/__manifest__.py new file mode 100644 index 00000000..c3854068 --- /dev/null +++ b/app_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 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 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': [ + 'stock', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/product_template_views.xml', + 'views/product_category_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_product_superbar/hooks.py b/app_product_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_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_product_superbar/i18n/zh_CN.po b/app_product_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_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_product_superbar/models/__init__.py b/app_product_superbar/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_product_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_product_superbar/models/product_category.py b/app_product_superbar/models/product_category.py new file mode 100644 index 00000000..4ac3d047 --- /dev/null +++ b/app_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_category'): + 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_product_superbar/report/__init__.py b/app_product_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_product_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_product_superbar/static/description/banner.png b/app_product_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_product_superbar/static/description/banner.png differ diff --git a/app_product_superbar/static/description/icon.png b/app_product_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_product_superbar/static/description/icon.png differ diff --git a/app_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html new file mode 100644 index 00000000..c85c0051 --- /dev/null +++ b/app_product_superbar/static/description/index.html @@ -0,0 +1,506 @@ + + + + +
+

Product Advance search, Product addon for Superbar

+

Free to use. Get extra paid Apps for more powerful.

+

Advance quick search for various field in all odoo app.Support list, kanban, pivot, graph, search more views.

+
+ + + +
+

+ - Get + app_web_super + for more Features - +

+
+
+
+
+
+
+ +
+ 1 +
+

Quick Advance Search and navigator for all app data.

+

30+ free odoo app search in box.

+
+
+ 2 +
+

Quick search in tree list header. 

+

Date range, Datetime, selection, number supported.

+
+
+
+ 3 +
+

Advance search sidebar for many2one, many2many field.

+

m2o search, m2m search for multi select.

+
+
+ 4 +
+

Advance siderbar for date range search, datetime search.

+

Extra for boolean search, selection search, number search.

+
+ + +
+
+
+
+ +
+ 5 +
+

Search sidebar for list, kanban.

+

Add more pivot, graph views than origin odoo.

+
+
+ 6 +
+

Support navigate in search more.

+

Quick filter and search for m2o or m2m field.

+
+
+ 7 +
+

Easy customize for any app. any module. 

+

Extra param for searchpanel. view_types, class, name_field, icon

+
+
+
+ 8 +
+

All app Advance search Out-of-Box.

+

Product, CRM, Sales, Purchase, MRP, Stock, Accounting, HR, Project, Etc.

+
+
+
+
+
+
+ + + +
+
+

- Demo Video -

+
+
+
+
+
+
+
+ +
+


+
+
+ Click above to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+

Demo Gif Animation if you can not get video

+ +
+
+ + + +
+
+

- Feature Guide -

+
+
+
+
+
+ +
+
+

All in One Search

+

Quick Advance Search and navigator for all app data.

+
+ +
+

Quick search in tree list header.

+
+ +
+

Search sidebar for M2O M2M, date range, boolean search, selection search, number search.

+
+ +
+

Filter any data like product in search more windows

+
+ +
+
+
+

Product Search

+

Use in product and Category.

+
+ +
+

Filter product or any data in search more windows

+
+ +
+
+
+

Sale Search with list header

+
+ +
+

Sale Search with sidebar

+
+ +
+
+
+

Purchase Search with sidebar and list header

+
+ +
+

Vender Price Search

+
+ +
+

Purchase report Search

+
+ +
+
+
+

Stock Inventory Search

+
+ +
+

Operation Type Search

+
+ +
+

Lot Serial Search

+
+ +
+
+
+

CRM Search

+
+ +
+

Leads Report Search

+
+ +
+
+
+

MRP Search

+
+ +
+

Work Order

+
+ +
+
+
+

POS point of sale Search

+
+ +
+

POS Report

+
+ +
+
+
+

HR employee Search

+
+ +
+
+
+

Account Search

+
+ +
+

Customer Invoice, Vendor Bill, Journal Entries Search

+
+ +
+

Journal Item Search

+
+ +
+
+
+

Project Search

+
+ +
+

Task Report Search

+
+ +
+
+
+

Partner contacts Search

+
+ +
+
+
+

Admin Search

+

Menu Quick Search

+
+ +
+

Action Search

+
+ +
+

Report Search

+
+ +
+

Views Search

+
+ +
+

Attachment Search

+
+ +
+
+
+
+
+
+ + + +
+

Get + + free 20+ Free related apps. + +

+

Visit to get our [app_web_superbar] Demo

+

https://demo.odooapp.cn

+
+
+
+ Free download: + +
+
+ + +
+

- How to setup and use -

+

This app need no extra module. The price already included

+
+
+
+

+ 1. Buy and Install app_web_superbar. +

+

2. Easy use of superbar

+
+

Show superbar in list view.

+
+ +
+

Show superbar in kanban view.

+
+ +
+

Show superbar in pivot view.

+
+ +
+

Show superbar in graph view.

+
+ +
+
+

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

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

+
+
+
+
+ + \ No newline at end of file diff --git a/app_product_superbar/views/product_attribute_value_views.xml b/app_product_superbar/views/product_attribute_value_views.xml new file mode 100644 index 00000000..e94b9458 --- /dev/null +++ b/app_product_superbar/views/product_attribute_value_views.xml @@ -0,0 +1,43 @@ + + + + + product.attribute.value.tree + product.attribute.value + + + + + + + + + + + + + app.product.attribute.value.search + product.attribute.value + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar/views/product_category_views.xml b/app_product_superbar/views/product_category_views.xml new file mode 100644 index 00000000..c5ba173c --- /dev/null +++ b/app_product_superbar/views/product_category_views.xml @@ -0,0 +1,16 @@ + + + + app.product.category.search + product.category + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar/views/product_template_views.xml b/app_product_superbar/views/product_template_views.xml new file mode 100644 index 00000000..a9984f35 --- /dev/null +++ b/app_product_superbar/views/product_template_views.xml @@ -0,0 +1,19 @@ + + + + + app.product.template.search + product.template + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar_pro/__init__.py b/app_product_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_product_superbar_pro/__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_product_superbar_pro/__manifest__.py b/app_product_superbar_pro/__manifest__.py new file mode 100644 index 00000000..e9bcd1e6 --- /dev/null +++ b/app_product_superbar_pro/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "Product browse by category navigator Pro", + 'version': '23.03.05', + '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 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': [ + 'app_product_superbar', + ], + 'images': ['static/description/superbar_pro.gif'], + 'data': [ + 'views/product_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_product_superbar_pro/hooks.py b/app_product_superbar_pro/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_product_superbar_pro/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_product_superbar_pro/i18n/zh_CN.po b/app_product_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_product_superbar_pro/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_product_superbar_pro/models/__init__.py b/app_product_superbar_pro/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_product_superbar_pro/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_product_superbar_pro/report/__init__.py b/app_product_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_product_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_product_superbar_pro/static/description/banner.png b/app_product_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_product_superbar_pro/static/description/banner.png differ diff --git a/app_product_superbar_pro/static/description/icon.png b/app_product_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_product_superbar_pro/static/description/icon.png differ diff --git a/app_product_superbar_pro/static/description/index.html b/app_product_superbar_pro/static/description/index.html new file mode 100644 index 00000000..f57f55bf --- /dev/null +++ b/app_product_superbar_pro/static/description/index.html @@ -0,0 +1,547 @@ +
+
+

Product search addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20+ related apps. + +

+

Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.

+

What you see is what you get. +

+
+
+ Key features: +
    +
  • + + Update: v13.20.07.26, Support instant and lazy mode. +
  • +
  • + + 1. Can Add search sidebar in any odoo app. Easy to navigator and browse any data. +
  • +
  • + + 2. Provide over 10 free search app like Like Product, CRM, Sale order, Purchase order, MRP, Inventory, Accounting vouchers, Mrp order, HR etc. +
  • +
  • + + 3. Support variety of field type like many2one relation, many2many relation, date and datetime, number and money, char search. +
  • +
  • + + 4. Fully compatible with all odoo apps and odoo search. like search build inside +
  • +
  • + + 5. Support instant or lazy search. Instant for just one click to search. Lazy for set all filter then click to search, good perform for big data. +
  • +
  • + + 6. Support lot kind of view like list / tree, kanban, pivot, graph view. +
  • +
  • + + 7. Support search more view, easy to find product for sale / purchase order. (Only for instant mode) +
  • +
  • + + 8. Show Advance Search, Advance Filter with Parent Children Tree. +
  • +
  • + + 9. Mobile ok for Adaptive responsive view. also optimize for big screen hd view > 992px; +
  • +
  • + + 10. Easy to customize or add advance search sidebar to 3rd apps. Follow reference. +
  • +
  • + + 11. Multi-language Support. +
  • +
  • + + 12. Multi-Company Support. +
  • +
  • + + 13. Support Odoo 13, Enterprise and Community Edition. Also you can find odoo 12,11,10 support in + app_web_superbar +
  • +
+ Get the follow 20+ free demo in follow link + +
+
+
+
+ +
+
+

 

+

Instant Search in 1 Click. Lazy Search for big data.

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Sale by date and team, saleman, etc.., list, kanban, pivot, search more view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in Sale. Search date range, search ammount in lazy mode

+
+ +
+

Use in Sale. Search date, search team in instant mode

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and Install app_web_superbar. +

+
+
+

3. Easy use of super search sidebar

+
+

Show Super search sidebar in list view.

+
+
+
+ +
+
+
+

Show Super search sidebar in search more view.

+
+
+
+ +
+
+
+

Show Super search sidebar in kanban view.

+
+
+
+ +
+
+
+

Show Super search sidebar in pivot view.

+
+
+
+ +
+
+
+

Show Super search sidebar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+
+

4. If you want to customize, Use follow param to setup widget
:

+
+
+ +
+

Attribute of superbar

+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree,pivot,search]
  • +
  • field: like normal field define
  • +
+

Attribute of field define

+
    +
  • 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_product_superbar_pro/static/description/superbar_pro.gif b/app_product_superbar_pro/static/description/superbar_pro.gif new file mode 100644 index 00000000..4811e2de Binary files /dev/null and b/app_product_superbar_pro/static/description/superbar_pro.gif differ diff --git a/app_product_superbar_pro/views/product_views.xml b/app_product_superbar_pro/views/product_views.xml new file mode 100644 index 00000000..e65181f6 --- /dev/null +++ b/app_product_superbar_pro/views/product_views.xml @@ -0,0 +1,16 @@ + + + + + app.product.template.search + product.template + + + + + + + + + + \ No newline at end of file diff --git a/app_project_superbar/__init__.py b/app_project_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_project_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_project_superbar/__manifest__.py b/app_project_superbar/__manifest__.py new file mode 100644 index 00000000..7b627ebb --- /dev/null +++ b/app_project_superbar/__manifest__.py @@ -0,0 +1,65 @@ +# -*- 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': "Project and task browse by partner,user, stage 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 project by company / partner / user. Project task by user, tags. + project superbar. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + ztree widget.Hierarchy 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': [ + 'project', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/project_project_views.xml', + 'views/project_task_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_project_superbar/hooks.py b/app_project_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_project_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_project_superbar/i18n/zh_CN.po b/app_project_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_project_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_project_superbar/models/__init__.py b/app_project_superbar/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_project_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_project_superbar/report/__init__.py b/app_project_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_project_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_project_superbar/static/description/account1.jpg b/app_project_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_project_superbar/static/description/account1.jpg differ diff --git a/app_project_superbar/static/description/banner.gif b/app_project_superbar/static/description/banner.gif new file mode 100644 index 00000000..7f84f91e Binary files /dev/null and b/app_project_superbar/static/description/banner.gif differ diff --git a/app_project_superbar/static/description/banner.png b/app_project_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_project_superbar/static/description/banner.png differ diff --git a/app_project_superbar/static/description/base1.jpg b/app_project_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_project_superbar/static/description/base1.jpg differ diff --git a/app_project_superbar/static/description/base2.jpg b/app_project_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_project_superbar/static/description/base2.jpg differ diff --git a/app_project_superbar/static/description/base3.jpg b/app_project_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_project_superbar/static/description/base3.jpg differ diff --git a/app_project_superbar/static/description/base4.jpg b/app_project_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_project_superbar/static/description/base4.jpg differ diff --git a/app_project_superbar/static/description/base5.jpg b/app_project_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_project_superbar/static/description/base5.jpg differ diff --git a/app_project_superbar/static/description/base6.jpg b/app_project_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_project_superbar/static/description/base6.jpg differ diff --git a/app_project_superbar/static/description/base7.jpg b/app_project_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_project_superbar/static/description/base7.jpg differ diff --git a/app_project_superbar/static/description/base8.jpg b/app_project_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_project_superbar/static/description/base8.jpg differ diff --git a/app_project_superbar/static/description/base9.jpg b/app_project_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_project_superbar/static/description/base9.jpg differ diff --git a/app_project_superbar/static/description/contacts1.jpg b/app_project_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_project_superbar/static/description/contacts1.jpg differ diff --git a/app_project_superbar/static/description/crm1.jpg b/app_project_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_project_superbar/static/description/crm1.jpg differ diff --git a/app_project_superbar/static/description/demo2.jpg b/app_project_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_project_superbar/static/description/demo2.jpg differ diff --git a/app_project_superbar/static/description/demo_module1.jpg b/app_project_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_project_superbar/static/description/demo_module1.jpg differ diff --git a/app_project_superbar/static/description/demo_module2.jpg b/app_project_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_project_superbar/static/description/demo_module2.jpg differ diff --git a/app_project_superbar/static/description/hr1.jpg b/app_project_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_project_superbar/static/description/hr1.jpg differ diff --git a/app_project_superbar/static/description/hr2.gif b/app_project_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_project_superbar/static/description/hr2.gif differ diff --git a/app_project_superbar/static/description/icon.png b/app_project_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_project_superbar/static/description/icon.png differ diff --git a/app_project_superbar/static/description/index.html b/app_project_superbar/static/description/index.html new file mode 100644 index 00000000..7fa19d6a --- /dev/null +++ b/app_project_superbar/static/description/index.html @@ -0,0 +1,436 @@ +
+
+

Project and task addon for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20 related apps. + +

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

Online demo user/password: demo/demo + + Click to get demo. +

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

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

+
+ +
+

Use in Project task.

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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_project_superbar/static/description/mrp1.gif b/app_project_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_project_superbar/static/description/mrp1.gif differ diff --git a/app_project_superbar/static/description/mrp1.jpg b/app_project_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_project_superbar/static/description/mrp1.jpg differ diff --git a/app_project_superbar/static/description/pos1.jpg b/app_project_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_project_superbar/static/description/pos1.jpg differ diff --git a/app_project_superbar/static/description/pos2.jpg b/app_project_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_project_superbar/static/description/pos2.jpg differ diff --git a/app_project_superbar/static/description/pos3.jpg b/app_project_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_project_superbar/static/description/pos3.jpg differ diff --git a/app_project_superbar/static/description/product1.jpg b/app_project_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_project_superbar/static/description/product1.jpg differ diff --git a/app_project_superbar/static/description/project1.jpg b/app_project_superbar/static/description/project1.jpg new file mode 100644 index 00000000..697382fc Binary files /dev/null and b/app_project_superbar/static/description/project1.jpg differ diff --git a/app_project_superbar/static/description/project2.jpg b/app_project_superbar/static/description/project2.jpg new file mode 100644 index 00000000..95e7f147 Binary files /dev/null and b/app_project_superbar/static/description/project2.jpg differ diff --git a/app_project_superbar/static/description/purchase1.jpg b/app_project_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_project_superbar/static/description/purchase1.jpg differ diff --git a/app_project_superbar/static/description/sale1.jpg b/app_project_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_project_superbar/static/description/sale1.jpg differ diff --git a/app_project_superbar/static/description/searchmore.jpg b/app_project_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_project_superbar/static/description/searchmore.jpg differ diff --git a/app_project_superbar/static/description/stock1.jpg b/app_project_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_project_superbar/static/description/stock1.jpg differ diff --git a/app_project_superbar/static/description/superbar.gif b/app_project_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_project_superbar/static/description/superbar.gif differ diff --git a/app_project_superbar/static/description/superbar_use.gif b/app_project_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_project_superbar/static/description/superbar_use.gif differ diff --git a/app_project_superbar/static/description/use.jpg b/app_project_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_project_superbar/static/description/use.jpg differ diff --git a/app_project_superbar/static/description/use1.jpg b/app_project_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_project_superbar/static/description/use1.jpg differ diff --git a/app_project_superbar/static/description/use2.jpg b/app_project_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_project_superbar/static/description/use2.jpg differ diff --git a/app_project_superbar/static/description/use3.jpg b/app_project_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_project_superbar/static/description/use3.jpg differ diff --git a/app_project_superbar/static/description/use4.jpg b/app_project_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_project_superbar/static/description/use4.jpg differ diff --git a/app_project_superbar/static/description/use5.jpg b/app_project_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_project_superbar/static/description/use5.jpg differ diff --git a/app_project_superbar/static/description/use6.jpg b/app_project_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_project_superbar/static/description/use6.jpg differ diff --git a/app_project_superbar/static/description/use7.jpg b/app_project_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_project_superbar/static/description/use7.jpg differ diff --git a/app_project_superbar/static/description/use8.jpg b/app_project_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_project_superbar/static/description/use8.jpg differ diff --git a/app_project_superbar/static/description/use9.jpg b/app_project_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_project_superbar/static/description/use9.jpg differ diff --git a/app_project_superbar/static/description/usea.jpg b/app_project_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_project_superbar/static/description/usea.jpg differ diff --git a/app_project_superbar/static/description/z_hr1.gif b/app_project_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_project_superbar/static/description/z_hr1.gif differ diff --git a/app_project_superbar/static/description/z_product1.gif b/app_project_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_project_superbar/static/description/z_product1.gif differ diff --git a/app_project_superbar/static/description/z_stock1.gif b/app_project_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_project_superbar/static/description/z_stock1.gif differ diff --git a/app_project_superbar/views/project_project_views.xml b/app_project_superbar/views/project_project_views.xml new file mode 100644 index 00000000..72de293a --- /dev/null +++ b/app_project_superbar/views/project_project_views.xml @@ -0,0 +1,17 @@ + + + + + app.project.project.select + project.project + + + + + + + + + + + \ No newline at end of file diff --git a/app_project_superbar/views/project_task_views.xml b/app_project_superbar/views/project_task_views.xml new file mode 100644 index 00000000..40697d23 --- /dev/null +++ b/app_project_superbar/views/project_task_views.xml @@ -0,0 +1,16 @@ + + + + + app.project.task.search.form + project.task + + + + + + + + + + diff --git a/app_purchase_product_multi_add/static/description/index.html b/app_purchase_product_multi_add/static/description/index.html index 726b74d4..d0532081 100644 --- a/app_purchase_product_multi_add/static/description/index.html +++ b/app_purchase_product_multi_add/static/description/index.html @@ -3,7 +3,7 @@

App Purchase Order Product Multi Add

One Click to add multi product to Purchase Order.

Important: This app is depends on a Paid App. - app_web_one2many_multi_add + app_web_one2many_multi_add

You may also like these free Apps for odoo. diff --git a/app_purchase_superbar/__manifest__.py b/app_purchase_superbar/__manifest__.py index 5c7e5d99..d107f93e 100644 --- a/app_purchase_superbar/__manifest__.py +++ b/app_purchase_superbar/__manifest__.py @@ -17,7 +17,7 @@ { 'name': "App purchase search browse by partner", - 'version': '24.06.14', + 'version': '24.07.18', 'author': 'odooai.cn', 'category': 'Extra tools', 'website': 'https://www.odooai.cn', diff --git a/app_purchase_superbar_pro/__init__.py b/app_purchase_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_purchase_superbar_pro/__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_purchase_superbar_pro/__manifest__.py b/app_purchase_superbar_pro/__manifest__.py new file mode 100644 index 00000000..a332c108 --- /dev/null +++ b/app_purchase_superbar_pro/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "Advance purchase order navigator by date and vendor", + '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 purchase order by date, partner vendor, status. 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': [ + 'app_purchase_superbar', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/purchase_order_views.xml', + 'report/purchase_report_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_purchase_superbar_pro/hooks.py b/app_purchase_superbar_pro/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_purchase_superbar_pro/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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_purchase_superbar_pro/i18n/zh_CN.po b/app_purchase_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_purchase_superbar_pro/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_purchase_superbar_pro/models/__init__.py b/app_purchase_superbar_pro/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_purchase_superbar_pro/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_purchase_superbar_pro/report/__init__.py b/app_purchase_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_purchase_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_purchase_superbar_pro/report/purchase_report_views.xml b/app_purchase_superbar_pro/report/purchase_report_views.xml new file mode 100644 index 00000000..401de4fc --- /dev/null +++ b/app_purchase_superbar_pro/report/purchase_report_views.xml @@ -0,0 +1,15 @@ + + + + + app.pro.purchase.report.search + purchase.report + + + + + + + + + diff --git a/app_purchase_superbar_pro/static/description/banner.png b/app_purchase_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_purchase_superbar_pro/static/description/banner.png differ diff --git a/app_purchase_superbar_pro/static/description/icon.png b/app_purchase_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_purchase_superbar_pro/static/description/icon.png differ diff --git a/app_purchase_superbar_pro/static/description/index.html b/app_purchase_superbar_pro/static/description/index.html new file mode 100644 index 00000000..5cb18459 --- /dev/null +++ b/app_purchase_superbar_pro/static/description/index.html @@ -0,0 +1,547 @@ +
+
+

Purchase search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20+ related apps. + +

+

Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.

+

What you see is what you get. +

+
+
+ Key features: +
    +
  • + + Update: v16.24.06.14, Support instant and lazy mode. +
  • +
  • + + 1. Can Add search sidebar in any odoo app. Easy to navigator and browse any data. +
  • +
  • + + 2. Provide over 10 free search app like Like Product, CRM, Sale order, Purchase order, MRP, Inventory, Accounting vouchers, Mrp order, HR etc. +
  • +
  • + + 3. Support variety of field type like many2one relation, many2many relation, date and datetime, number and money, char search. +
  • +
  • + + 4. Fully compatible with all odoo apps and odoo search. like search build inside +
  • +
  • + + 5. Support instant or lazy search. Instant for just one click to search. Lazy for set all filter then click to search, good perform for big data. +
  • +
  • + + 6. Support lot kind of view like list / tree, kanban, pivot, graph view. +
  • +
  • + + 7. Support search more view, easy to find product for sale / purchase order. (Only for instant mode) +
  • +
  • + + 8. Show Advance Search, Advance Filter with Parent Children Tree. +
  • +
  • + + 9. Mobile ok for Adaptive responsive view. also optimize for big screen hd view > 992px; +
  • +
  • + + 10. Easy to customize or add advance search sidebar to 3rd apps. Follow reference. +
  • +
  • + + 11. Multi-language Support. +
  • +
  • + + 12. Multi-Company Support. +
  • +
  • + + 13. Support Odoo 13, Enterprise and Community Edition. Also you can find odoo 12,11,10 support in + app_web_superbar +
  • +
+ Get the follow 20+ free demo in follow link + +
+
+
+
+ +
+
+

 

+

Instant Search in 1 Click. Lazy Search for big data.

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Sale by date and team, saleman, etc.., list, kanban, pivot, search more view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in Sale. Search date range, search ammount in lazy mode

+
+ +
+

Use in Sale. Search date, search team in instant mode

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and Install app_web_superbar. +

+
+
+

3. Easy use of super search sidebar

+
+

Show Super search sidebar in list view.

+
+
+
+ +
+
+
+

Show Super search sidebar in search more view.

+
+
+
+ +
+
+
+

Show Super search sidebar in kanban view.

+
+
+
+ +
+
+
+

Show Super search sidebar in pivot view.

+
+
+
+ +
+
+
+

Show Super search sidebar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+
+

4. If you want to customize, Use follow param to setup widget
:

+
+
+ +
+

Attribute of superbar

+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree,pivot,search]
  • +
  • field: like normal field define
  • +
+

Attribute of field define

+
    +
  • 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_purchase_superbar_pro/views/purchase_order_views.xml b/app_purchase_superbar_pro/views/purchase_order_views.xml new file mode 100644 index 00000000..004ae18c --- /dev/null +++ b/app_purchase_superbar_pro/views/purchase_order_views.xml @@ -0,0 +1,26 @@ + + + + + purchase.order.search.quotation.superbarpro + purchase.order + + + + + + + + + + purchase.order.search.order.superbarpro + purchase.order + + + + + + + + + \ No newline at end of file diff --git a/app_sale_superbar/__init__.py b/app_sale_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_sale_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_sale_superbar/__manifest__.py b/app_sale_superbar/__manifest__.py new file mode 100644 index 00000000..ae8d1ca2 --- /dev/null +++ b/app_sale_superbar/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "App sale order browse by partner and channel", + '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 sale order by partner and sale channel. 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': [ + 'sale_management', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/sale_order_views.xml', + 'report/sale_report_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_sale_superbar/hooks.py b/app_sale_superbar/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_sale_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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_sale_superbar/i18n/zh_CN.po b/app_sale_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_sale_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_sale_superbar/models/__init__.py b/app_sale_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_sale_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_sale_superbar/report/__init__.py b/app_sale_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_sale_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_sale_superbar/report/sale_report_views.xml b/app_sale_superbar/report/sale_report_views.xml new file mode 100644 index 00000000..436490a0 --- /dev/null +++ b/app_sale_superbar/report/sale_report_views.xml @@ -0,0 +1,18 @@ + + + + + app.sale.report.search + sale.report + + + + + + + + + + + + diff --git a/app_sale_superbar/static/description/account1.jpg b/app_sale_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_sale_superbar/static/description/account1.jpg differ diff --git a/app_sale_superbar/static/description/banner.png b/app_sale_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_sale_superbar/static/description/banner.png differ diff --git a/app_sale_superbar/static/description/base1.jpg b/app_sale_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_sale_superbar/static/description/base1.jpg differ diff --git a/app_sale_superbar/static/description/base2.jpg b/app_sale_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_sale_superbar/static/description/base2.jpg differ diff --git a/app_sale_superbar/static/description/base3.jpg b/app_sale_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_sale_superbar/static/description/base3.jpg differ diff --git a/app_sale_superbar/static/description/base4.jpg b/app_sale_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_sale_superbar/static/description/base4.jpg differ diff --git a/app_sale_superbar/static/description/base5.jpg b/app_sale_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_sale_superbar/static/description/base5.jpg differ diff --git a/app_sale_superbar/static/description/base6.jpg b/app_sale_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_sale_superbar/static/description/base6.jpg differ diff --git a/app_sale_superbar/static/description/base7.jpg b/app_sale_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_sale_superbar/static/description/base7.jpg differ diff --git a/app_sale_superbar/static/description/base8.jpg b/app_sale_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_sale_superbar/static/description/base8.jpg differ diff --git a/app_sale_superbar/static/description/base9.jpg b/app_sale_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_sale_superbar/static/description/base9.jpg differ diff --git a/app_sale_superbar/static/description/contacts1.jpg b/app_sale_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_sale_superbar/static/description/contacts1.jpg differ diff --git a/app_sale_superbar/static/description/crm1.jpg b/app_sale_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_sale_superbar/static/description/crm1.jpg differ diff --git a/app_sale_superbar/static/description/demo2.jpg b/app_sale_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_sale_superbar/static/description/demo2.jpg differ diff --git a/app_sale_superbar/static/description/demo_module1.jpg b/app_sale_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_sale_superbar/static/description/demo_module1.jpg differ diff --git a/app_sale_superbar/static/description/demo_module2.jpg b/app_sale_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_sale_superbar/static/description/demo_module2.jpg differ diff --git a/app_sale_superbar/static/description/hr1.jpg b/app_sale_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_sale_superbar/static/description/hr1.jpg differ diff --git a/app_sale_superbar/static/description/hr2.gif b/app_sale_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_sale_superbar/static/description/hr2.gif differ diff --git a/app_sale_superbar/static/description/icon.png b/app_sale_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_sale_superbar/static/description/icon.png differ diff --git a/app_sale_superbar/static/description/index.html b/app_sale_superbar/static/description/index.html new file mode 100644 index 00000000..868c811c --- /dev/null +++ b/app_sale_superbar/static/description/index.html @@ -0,0 +1,307 @@ +
+
+

Sales search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

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. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

+
+
+ +
+
    +
  • 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)]]
  • +
+
+
+
+
+ +
+
+
+

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_sale_superbar/static/description/mrp1.gif b/app_sale_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_sale_superbar/static/description/mrp1.gif differ diff --git a/app_sale_superbar/static/description/mrp1.jpg b/app_sale_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_sale_superbar/static/description/mrp1.jpg differ diff --git a/app_sale_superbar/static/description/pos1.jpg b/app_sale_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_sale_superbar/static/description/pos1.jpg differ diff --git a/app_sale_superbar/static/description/pos2.jpg b/app_sale_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_sale_superbar/static/description/pos2.jpg differ diff --git a/app_sale_superbar/static/description/pos3.jpg b/app_sale_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_sale_superbar/static/description/pos3.jpg differ diff --git a/app_sale_superbar/static/description/product1.jpg b/app_sale_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_sale_superbar/static/description/product1.jpg differ diff --git a/app_sale_superbar/static/description/purchase1.jpg b/app_sale_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_sale_superbar/static/description/purchase1.jpg differ diff --git a/app_sale_superbar/static/description/sale1.jpg b/app_sale_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_sale_superbar/static/description/sale1.jpg differ diff --git a/app_sale_superbar/static/description/searchmore.jpg b/app_sale_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_sale_superbar/static/description/searchmore.jpg differ diff --git a/app_sale_superbar/static/description/stock1.jpg b/app_sale_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_sale_superbar/static/description/stock1.jpg differ diff --git a/app_sale_superbar/static/description/superbar.gif b/app_sale_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_sale_superbar/static/description/superbar.gif differ diff --git a/app_sale_superbar/static/description/superbar_use.gif b/app_sale_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_sale_superbar/static/description/superbar_use.gif differ diff --git a/app_sale_superbar/static/description/superbar_use.png b/app_sale_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_sale_superbar/static/description/superbar_use.png differ diff --git a/app_sale_superbar/static/description/use.jpg b/app_sale_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_sale_superbar/static/description/use.jpg differ diff --git a/app_sale_superbar/static/description/use1.jpg b/app_sale_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_sale_superbar/static/description/use1.jpg differ diff --git a/app_sale_superbar/static/description/use2.jpg b/app_sale_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_sale_superbar/static/description/use2.jpg differ diff --git a/app_sale_superbar/static/description/use3.jpg b/app_sale_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_sale_superbar/static/description/use3.jpg differ diff --git a/app_sale_superbar/static/description/use4.jpg b/app_sale_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_sale_superbar/static/description/use4.jpg differ diff --git a/app_sale_superbar/static/description/use5.jpg b/app_sale_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_sale_superbar/static/description/use5.jpg differ diff --git a/app_sale_superbar/static/description/use6.jpg b/app_sale_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_sale_superbar/static/description/use6.jpg differ diff --git a/app_sale_superbar/static/description/use7.jpg b/app_sale_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_sale_superbar/static/description/use7.jpg differ diff --git a/app_sale_superbar/static/description/use8.jpg b/app_sale_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_sale_superbar/static/description/use8.jpg differ diff --git a/app_sale_superbar/static/description/use9.jpg b/app_sale_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_sale_superbar/static/description/use9.jpg differ diff --git a/app_sale_superbar/static/description/usea.jpg b/app_sale_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_sale_superbar/static/description/usea.jpg differ diff --git a/app_sale_superbar/static/description/z_hr1.gif b/app_sale_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_sale_superbar/static/description/z_hr1.gif differ diff --git a/app_sale_superbar/static/description/z_product1.gif b/app_sale_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_sale_superbar/static/description/z_product1.gif differ diff --git a/app_sale_superbar/static/description/z_stock1.gif b/app_sale_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_sale_superbar/static/description/z_stock1.gif differ diff --git a/app_sale_superbar/views/sale_order_views.xml b/app_sale_superbar/views/sale_order_views.xml new file mode 100644 index 00000000..d39dbb19 --- /dev/null +++ b/app_sale_superbar/views/sale_order_views.xml @@ -0,0 +1,37 @@ + + + + + sale.order.search.inherit.quotation.superbar + sale.order + + + + + + + + + + + + + + + + sale.order.search.inherit.sale.superbar + sale.order + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_sale_superbar_pro/__init__.py b/app_sale_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_sale_superbar_pro/__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_sale_superbar_pro/__manifest__.py b/app_sale_superbar_pro/__manifest__.py new file mode 100644 index 00000000..b2f2b424 --- /dev/null +++ b/app_sale_superbar_pro/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "Advance sale order navigator by partner and channel", + '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 sale order by partner and sale channel. 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': [ + 'app_sale_superbar', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/sale_order_views.xml', + 'report/sale_report_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_sale_superbar_pro/hooks.py b/app_sale_superbar_pro/hooks.py new file mode 100644 index 00000000..9a5420a8 --- /dev/null +++ b/app_sale_superbar_pro/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 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: + +def post_init_hook(env): + pass + # cr.execute("") diff --git a/app_sale_superbar_pro/i18n/zh_CN.po b/app_sale_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_sale_superbar_pro/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_sale_superbar_pro/models/__init__.py b/app_sale_superbar_pro/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_sale_superbar_pro/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_sale_superbar_pro/report/__init__.py b/app_sale_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_sale_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_sale_superbar_pro/report/sale_report_views.xml b/app_sale_superbar_pro/report/sale_report_views.xml new file mode 100644 index 00000000..b5817b04 --- /dev/null +++ b/app_sale_superbar_pro/report/sale_report_views.xml @@ -0,0 +1,15 @@ + + + + + app.pro.sale.report.search + sale.report + + + + + + + + + diff --git a/app_sale_superbar_pro/static/description/banner.png b/app_sale_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_sale_superbar_pro/static/description/banner.png differ diff --git a/app_sale_superbar_pro/static/description/icon.png b/app_sale_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_sale_superbar_pro/static/description/icon.png differ diff --git a/app_sale_superbar_pro/static/description/index.html b/app_sale_superbar_pro/static/description/index.html new file mode 100644 index 00000000..79a7de88 --- /dev/null +++ b/app_sale_superbar_pro/static/description/index.html @@ -0,0 +1,547 @@ +
+
+

Sales search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20+ related apps. + +

+

Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view.

+

What you see is what you get. +

+
+
+ Key features: +
    +
  • + + Update: v13.20.07.26, Support instant and lazy mode. +
  • +
  • + + 1. Can Add search sidebar in any odoo app. Easy to navigator and browse any data. +
  • +
  • + + 2. Provide over 10 free search app like Like Product, CRM, Sale order, Purchase order, MRP, Inventory, Accounting vouchers, Mrp order, HR etc. +
  • +
  • + + 3. Support variety of field type like many2one relation, many2many relation, date and datetime, number and money, char search. +
  • +
  • + + 4. Fully compatible with all odoo apps and odoo search. like search build inside +
  • +
  • + + 5. Support instant or lazy search. Instant for just one click to search. Lazy for set all filter then click to search, good perform for big data. +
  • +
  • + + 6. Support lot kind of view like list / tree, kanban, pivot, graph view. +
  • +
  • + + 7. Support search more view, easy to find product for sale / purchase order. (Only for instant mode) +
  • +
  • + + 8. Show Advance Search, Advance Filter with Parent Children Tree. +
  • +
  • + + 9. Mobile ok for Adaptive responsive view. also optimize for big screen hd view > 992px; +
  • +
  • + + 10. Easy to customize or add advance search sidebar to 3rd apps. Follow reference. +
  • +
  • + + 11. Multi-language Support. +
  • +
  • + + 12. Multi-Company Support. +
  • +
  • + + 13. Support Odoo 13, Enterprise and Community Edition. Also you can find odoo 12,11,10 support in + app_web_superbar +
  • +
+ Get the follow 20+ free demo in follow link + +
+
+
+
+ +
+
+

 

+

Instant Search in 1 Click. Lazy Search for big data.

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Sale by date and team, saleman, etc.., list, kanban, pivot, search more view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in Sale. Search date range, search ammount in lazy mode

+
+ +
+

Use in Sale. Search date, search team in instant mode

+
+ +
+
+
+ +
+
+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and Install app_web_superbar. +

+
+
+

3. Easy use of super search sidebar

+
+

Show Super search sidebar in list view.

+
+
+
+ +
+
+
+

Show Super search sidebar in search more view.

+
+
+
+ +
+
+
+

Show Super search sidebar in kanban view.

+
+
+
+ +
+
+
+

Show Super search sidebar in pivot view.

+
+
+
+ +
+
+
+

Show Super search sidebar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+
+

4. If you want to customize, Use follow param to setup widget
:

+
+
+ +
+

Attribute of superbar

+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree,pivot,search]
  • +
  • field: like normal field define
  • +
+

Attribute of field define

+
    +
  • 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_sale_superbar_pro/static/description/superbar_pro.gif b/app_sale_superbar_pro/static/description/superbar_pro.gif new file mode 100644 index 00000000..4811e2de Binary files /dev/null and b/app_sale_superbar_pro/static/description/superbar_pro.gif differ diff --git a/app_sale_superbar_pro/views/sale_order_views.xml b/app_sale_superbar_pro/views/sale_order_views.xml new file mode 100644 index 00000000..a15f77b2 --- /dev/null +++ b/app_sale_superbar_pro/views/sale_order_views.xml @@ -0,0 +1,32 @@ + + + + + sale.order.search.inherit.quotation.superbarpro + sale.order + + + + + {'is_lazy':1} + + + + + + + + + + sale.order.search.inherit.sale.superbarpro + sale.order + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_picking_product_multi_add/static/description/index.html b/app_stock_picking_product_multi_add/static/description/index.html index 8705f577..6fb8bf3a 100644 --- a/app_stock_picking_product_multi_add/static/description/index.html +++ b/app_stock_picking_product_multi_add/static/description/index.html @@ -3,7 +3,7 @@

App Stock Picking Order Product Multi Add

One Click to add multi product to Stock Picking Order.

Important: This app is depends on a Paid App. - app_web_one2many_multi_add + app_web_one2many_multi_add

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

Stock search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+
+ 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. +
  • +
+
+
+ + + + Extend features. superbar advance search navigator + + +
    +
  • + + Easy to navigate product, employee in tree or kanban view. +
  • +
+
+ +
+
+
+ +
+
+

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

Website Blog search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+

+

+
+

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

+ Visit our website for more support.

+ + https://www.odooai.cn +
+
+
+
+

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

Website Product search for Advance Search Superbar

+
+ +
+

Free addons of Superbar. !This moduld Do Need extra paid Apps.

+
+ +

+ + odoo Advance Search Superbar. Quick search any data for any Apps. Click to download. + +

+
+ +
+
+
+
+
+ +
+


+
+
+ Click above video to Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+ +
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

Buy + + this 1 Advance Search Apps + + in odoo Store. Get + + free 20 related apps. + +

+

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

+
+
+ Key features: + +
+
+
+
+ +
+
+

 

+

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

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and 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
:

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