diff --git a/app_account_superbar/__init__.py b/app_account_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_account_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_account_superbar/__manifest__.py b/app_account_superbar/__manifest__.py new file mode 100644 index 00000000..e56373da --- /dev/null +++ b/app_account_superbar/__manifest__.py @@ -0,0 +1,58 @@ +# -*- 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': '18.0.24.11.12', + '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. + 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_account_views.xml', + 'views/account_move_line_views.xml', + 'views/account_move_views.xml', + 'views/account_analytic_line_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + '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..40a96afc --- /dev/null +++ b/app_account_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..8cd1202e --- /dev/null +++ b/app_account_superbar/static/description/index.html @@ -0,0 +1,283 @@ +
+
+

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 no need extra module. The price already included

+
+

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

+
+
+
+ +
+
+
+
+ +

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

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

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + 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_account_views.xml b/app_account_superbar/views/account_account_views.xml new file mode 100644 index 00000000..6ecaf7d4 --- /dev/null +++ b/app_account_superbar/views/account_account_views.xml @@ -0,0 +1,18 @@ + + + + + account.account.search.superbar + account.account + + + + + + + + + + + + \ No newline at end of file diff --git a/app_account_superbar/views/account_analytic_line_views.xml b/app_account_superbar/views/account_analytic_line_views.xml new file mode 100644 index 00000000..77cb50fa --- /dev/null +++ b/app_account_superbar/views/account_analytic_line_views.xml @@ -0,0 +1,20 @@ + + + + account.analytic.line.select.superbar + account.analytic.line + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_account_superbar/views/account_move_line_views.xml b/app_account_superbar/views/account_move_line_views.xml new file mode 100644 index 00000000..968a2d28 --- /dev/null +++ b/app_account_superbar/views/account_move_line_views.xml @@ -0,0 +1,23 @@ + + + + + Journal Items superbar + account.move.line + + + + list,kanban,pivot,graph + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_account_superbar/views/account_move_views.xml b/app_account_superbar/views/account_move_views.xml new file mode 100644 index 00000000..f91e2ba1 --- /dev/null +++ b/app_account_superbar/views/account_move_views.xml @@ -0,0 +1,34 @@ + + + + + app.account.move.search.superbar + account.move + + + + + + + + + + + + + + account.invoice.select.superbar + account.move + + + + + + + + + + + + + \ 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..787fdfd0 --- /dev/null +++ b/app_contacts_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_contacts_superbar/__manifest__.py b/app_contacts_superbar/__manifest__.py new file mode 100644 index 00000000..2083cdcc --- /dev/null +++ b/app_contacts_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 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': '18.0.24.11.12', + '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. + 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': [ + ], + '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..40a96afc --- /dev/null +++ b/app_contacts_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..3bb5040f --- /dev/null +++ b/app_contacts_superbar/static/description/index.html @@ -0,0 +1,281 @@ +
+
+

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 no need extra module. The price already included

+
+

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

+
+
+
+ +
+
+
+
+

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

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

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + 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_crm_superbar/__init__.py b/app_crm_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_crm_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_crm_superbar/__manifest__.py b/app_crm_superbar/__manifest__.py new file mode 100644 index 00000000..57734a44 --- /dev/null +++ b/app_crm_superbar/__manifest__.py @@ -0,0 +1,79 @@ +# -*- 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': '18.0.24.11.12', + '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. 10+ 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': [ + ], + '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..40a96afc --- /dev/null +++ b/app_crm_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..4869198a --- /dev/null +++ b/app_crm_superbar/static/description/index.html @@ -0,0 +1,499 @@ + + + + +
+

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.

+

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

+
+
+
+
+ + 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_event_superbar/__init__.py b/app_event_superbar/__init__.py new file mode 100644 index 00000000..ba9b1b49 --- /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 diff --git a/app_event_superbar/__manifest__.py b/app_event_superbar/__manifest__.py new file mode 100644 index 00000000..75f7f735 --- /dev/null +++ b/app_event_superbar/__manifest__.py @@ -0,0 +1,56 @@ +# -*- 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': "Event advance search browse by stage", + 'version': '18.0.24.11.12', + '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 event by stage. 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': [ + 'event', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/event_event_views.xml', + 'views/event_tag_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_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..40f7c0fb --- /dev/null +++ b/app_event_superbar/controllers/main.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from odoo import http diff --git a/app_event_superbar/hooks.py b/app_event_superbar/hooks.py new file mode 100644 index 00000000..8f76cdea --- /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~2024 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(env): + pass + # cr.execute("") + + +def post_init_hook(env): + pass + # cr.execute("") + + +def uninstall_hook(env): + 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/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.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/icon.png b/app_event_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 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..c7699174 --- /dev/null +++ b/app_event_superbar/static/description/index.html @@ -0,0 +1,498 @@ + + + +
+

Event Advance search, Event 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.

+

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

+
+
+
+
+ + 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..e69de29b 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..e69de29b 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..e69de29b 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..8f890a18 --- /dev/null +++ b/app_event_superbar/views/event_event_views.xml @@ -0,0 +1,16 @@ + + + + + app.event.event.search.superbar + event.event + + + + + + + + + + diff --git a/app_event_superbar/views/event_tag_views.xml b/app_event_superbar/views/event_tag_views.xml new file mode 100644 index 00000000..fd07f26e --- /dev/null +++ b/app_event_superbar/views/event_tag_views.xml @@ -0,0 +1,16 @@ + + + + app.event.tag.search + event.tag + + + + + + + + + + + \ 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..787fdfd0 --- /dev/null +++ b/app_hr_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_hr_superbar/__manifest__.py b/app_hr_superbar/__manifest__.py new file mode 100644 index 00000000..399eb3ff --- /dev/null +++ b/app_hr_superbar/__manifest__.py @@ -0,0 +1,57 @@ +# -*- 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': '18.0.24.11.12', + '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': [ + ], + '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..40a96afc --- /dev/null +++ b/app_hr_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- 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..40a96afc --- /dev/null +++ b/app_hr_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..8a08aaeb --- /dev/null +++ b/app_hr_superbar/static/description/index.html @@ -0,0 +1,304 @@ +
+
+

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 no need extra module. The price already included

+
+

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

+
+
+
+ +
+
+
+
+

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

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

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + 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..06c11f75 --- /dev/null +++ b/app_hr_superbar/views/hr_views.xml @@ -0,0 +1,15 @@ + + + + + app.hr.employee.search + hr.employee + + + + + + + + + diff --git a/app_mrp_superbar/__init__.py b/app_mrp_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_mrp_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_mrp_superbar/__manifest__.py b/app_mrp_superbar/__manifest__.py new file mode 100644 index 00000000..99d30bac --- /dev/null +++ b/app_mrp_superbar/__manifest__.py @@ -0,0 +1,59 @@ +# -*- 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': '18.0.24.11.12', + '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. + 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': [ + ], + '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..30c55f5f --- /dev/null +++ b/app_mrp_superbar/models/__init__.py @@ -0,0 +1,3 @@ +# -*- 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..40a96afc --- /dev/null +++ b/app_mrp_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..c1f516d4 --- /dev/null +++ b/app_mrp_superbar/static/description/index.html @@ -0,0 +1,386 @@ +
+
+

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 no need extra module. The price already included

+
+

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

+
+
+
+ +
+
+
+
+

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_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html index d90e4df1..5f6c8291 100644 --- a/app_product_superbar/static/description/index.html +++ b/app_product_superbar/static/description/index.html @@ -17,7 +17,7 @@

- Get - app_web_super + app_web_super for more Features -

@@ -338,84 +338,84 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Sale order navigate by partner and channel is ready. - + Click to download.
  • Purchase order navigate by partner is ready. - + Click to download.
  • Stock location navigate by parent, Picking by type is ready. - + Click to download.
  • CRM browse by stage and team is ready. - + Click to download.
  • MRP manufacture order navigate by state workcenter is ready. - + Click to download.
  • Pos navigate by category or store is ready. - + Click to download.
  • HR employee navigate by department is ready. - + Click to download.
  • Account chart navigate by type is ready. - + Click to download.
  • Project Advance search with superbar is ready. - + Click to download.
  • Contacts navigate by company is ready. - + Click to download.
  • Admin Navigator with menu, report, etc. is ready. - + Click to download.
  • @@ -442,7 +442,7 @@

    - 1. Buy and Install app_web_superbar. + 1. Buy and Install app_web_superbar.

    2. Easy use of superbar

    diff --git a/app_project_superbar/__init__.py b/app_project_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_project_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_project_superbar/__manifest__.py b/app_project_superbar/__manifest__.py new file mode 100644 index 00000000..31bdd8d4 --- /dev/null +++ b/app_project_superbar/__manifest__.py @@ -0,0 +1,58 @@ +# -*- 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': '18.0.24.11.12', + '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. + 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': [ + ], + '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..30c55f5f --- /dev/null +++ b/app_project_superbar/models/__init__.py @@ -0,0 +1,3 @@ +# -*- 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..40a96afc --- /dev/null +++ b/app_project_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..36606070 --- /dev/null +++ b/app_project_superbar/static/description/index.html @@ -0,0 +1,421 @@ +
    +
    +

    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 10+ 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 no need extra module. The price already included

    +
    +

    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

    +
    +
    +
    + +
    +
    +
    +
    +

    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..646be56a --- /dev/null +++ b/app_project_superbar/views/project_project_views.xml @@ -0,0 +1,17 @@ + + + + + app.project.project.select + project.project + + + + + + + + + + + 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..74a5d199 --- /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_superbar/__init__.py b/app_purchase_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_purchase_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_purchase_superbar/__manifest__.py b/app_purchase_superbar/__manifest__.py new file mode 100644 index 00000000..25979136 --- /dev/null +++ b/app_purchase_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 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 purchase search browse by partner", + 'version': '18.0.24.11.12', + '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 partner. 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': [ + 'purchase', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/purchase_order_views.xml', + 'views/product_supplierinfo_views.xml', + 'report/purchase_report_views.xml', + ], + + 'assets': { + 'web.assets_backend': [ + 'app_purchase_superbar/static/src/views/*.xml', + ], + }, + 'demo': [ + ], + 'test': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_purchase_superbar/hooks.py b/app_purchase_superbar/hooks.py new file mode 100644 index 00000000..10ec1e29 --- /dev/null +++ b/app_purchase_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_purchase_superbar/i18n/zh_CN.po b/app_purchase_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f45db9f9 --- /dev/null +++ b/app_purchase_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_purchase_superbar/models/__init__.py b/app_purchase_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_purchase_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_purchase_superbar/report/__init__.py b/app_purchase_superbar/report/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_purchase_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_purchase_superbar/report/purchase_report_views.xml b/app_purchase_superbar/report/purchase_report_views.xml new file mode 100644 index 00000000..5a3c6365 --- /dev/null +++ b/app_purchase_superbar/report/purchase_report_views.xml @@ -0,0 +1,20 @@ + + + + + report.purchase.order.search.superbar + purchase.report + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_purchase_superbar/static/description/account1.jpg b/app_purchase_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_purchase_superbar/static/description/account1.jpg differ diff --git a/app_purchase_superbar/static/description/banner.png b/app_purchase_superbar/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_purchase_superbar/static/description/banner.png differ diff --git a/app_purchase_superbar/static/description/base1.jpg b/app_purchase_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_purchase_superbar/static/description/base1.jpg differ diff --git a/app_purchase_superbar/static/description/base2.jpg b/app_purchase_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_purchase_superbar/static/description/base2.jpg differ diff --git a/app_purchase_superbar/static/description/base3.jpg b/app_purchase_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_purchase_superbar/static/description/base3.jpg differ diff --git a/app_purchase_superbar/static/description/base4.jpg b/app_purchase_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_purchase_superbar/static/description/base4.jpg differ diff --git a/app_purchase_superbar/static/description/base5.jpg b/app_purchase_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_purchase_superbar/static/description/base5.jpg differ diff --git a/app_purchase_superbar/static/description/base6.jpg b/app_purchase_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_purchase_superbar/static/description/base6.jpg differ diff --git a/app_purchase_superbar/static/description/base7.jpg b/app_purchase_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_purchase_superbar/static/description/base7.jpg differ diff --git a/app_purchase_superbar/static/description/base8.jpg b/app_purchase_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_purchase_superbar/static/description/base8.jpg differ diff --git a/app_purchase_superbar/static/description/base9.jpg b/app_purchase_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_purchase_superbar/static/description/base9.jpg differ diff --git a/app_purchase_superbar/static/description/contacts1.jpg b/app_purchase_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_purchase_superbar/static/description/contacts1.jpg differ diff --git a/app_purchase_superbar/static/description/crm1.jpg b/app_purchase_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_purchase_superbar/static/description/crm1.jpg differ diff --git a/app_purchase_superbar/static/description/demo2.jpg b/app_purchase_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_purchase_superbar/static/description/demo2.jpg differ diff --git a/app_purchase_superbar/static/description/demo_module1.jpg b/app_purchase_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_purchase_superbar/static/description/demo_module1.jpg differ diff --git a/app_purchase_superbar/static/description/demo_module2.jpg b/app_purchase_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_purchase_superbar/static/description/demo_module2.jpg differ diff --git a/app_purchase_superbar/static/description/hr1.jpg b/app_purchase_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_purchase_superbar/static/description/hr1.jpg differ diff --git a/app_purchase_superbar/static/description/hr2.gif b/app_purchase_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_purchase_superbar/static/description/hr2.gif differ diff --git a/app_purchase_superbar/static/description/icon.png b/app_purchase_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_purchase_superbar/static/description/icon.png differ diff --git a/app_purchase_superbar/static/description/index.html b/app_purchase_superbar/static/description/index.html new file mode 100644 index 00000000..fcf00b8f --- /dev/null +++ b/app_purchase_superbar/static/description/index.html @@ -0,0 +1,282 @@ +
    +
    +

    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 no need extra module. The price already included

    +
    +

    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

    +
    +
    +
    + +
    +
    +
    +
    +

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

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

    Technical Help & Support

    +
    +
    +
    +

    + For any type of technical help & support requests, Feel free to contact us

    + + 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/static/description/mrp1.gif b/app_purchase_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_purchase_superbar/static/description/mrp1.gif differ diff --git a/app_purchase_superbar/static/description/mrp1.jpg b/app_purchase_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_purchase_superbar/static/description/mrp1.jpg differ diff --git a/app_purchase_superbar/static/description/pos1.jpg b/app_purchase_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_purchase_superbar/static/description/pos1.jpg differ diff --git a/app_purchase_superbar/static/description/pos2.jpg b/app_purchase_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_purchase_superbar/static/description/pos2.jpg differ diff --git a/app_purchase_superbar/static/description/pos3.jpg b/app_purchase_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_purchase_superbar/static/description/pos3.jpg differ diff --git a/app_purchase_superbar/static/description/product1.jpg b/app_purchase_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_purchase_superbar/static/description/product1.jpg differ diff --git a/app_purchase_superbar/static/description/purchase1.jpg b/app_purchase_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_purchase_superbar/static/description/purchase1.jpg differ diff --git a/app_purchase_superbar/static/description/sale1.jpg b/app_purchase_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_purchase_superbar/static/description/sale1.jpg differ diff --git a/app_purchase_superbar/static/description/searchmore.jpg b/app_purchase_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_purchase_superbar/static/description/searchmore.jpg differ diff --git a/app_purchase_superbar/static/description/stock1.jpg b/app_purchase_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_purchase_superbar/static/description/stock1.jpg differ diff --git a/app_purchase_superbar/static/description/superbar.gif b/app_purchase_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_purchase_superbar/static/description/superbar.gif differ diff --git a/app_purchase_superbar/static/description/superbar_use.gif b/app_purchase_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_purchase_superbar/static/description/superbar_use.gif differ diff --git a/app_purchase_superbar/static/description/superbar_use.png b/app_purchase_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_purchase_superbar/static/description/superbar_use.png differ diff --git a/app_purchase_superbar/static/description/use.jpg b/app_purchase_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_purchase_superbar/static/description/use.jpg differ diff --git a/app_purchase_superbar/static/description/use1.jpg b/app_purchase_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_purchase_superbar/static/description/use1.jpg differ diff --git a/app_purchase_superbar/static/description/use2.jpg b/app_purchase_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_purchase_superbar/static/description/use2.jpg differ diff --git a/app_purchase_superbar/static/description/use3.jpg b/app_purchase_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_purchase_superbar/static/description/use3.jpg differ diff --git a/app_purchase_superbar/static/description/use4.jpg b/app_purchase_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_purchase_superbar/static/description/use4.jpg differ diff --git a/app_purchase_superbar/static/description/use5.jpg b/app_purchase_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_purchase_superbar/static/description/use5.jpg differ diff --git a/app_purchase_superbar/static/description/use6.jpg b/app_purchase_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_purchase_superbar/static/description/use6.jpg differ diff --git a/app_purchase_superbar/static/description/use7.jpg b/app_purchase_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_purchase_superbar/static/description/use7.jpg differ diff --git a/app_purchase_superbar/static/description/use8.jpg b/app_purchase_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_purchase_superbar/static/description/use8.jpg differ diff --git a/app_purchase_superbar/static/description/use9.jpg b/app_purchase_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_purchase_superbar/static/description/use9.jpg differ diff --git a/app_purchase_superbar/static/description/usea.jpg b/app_purchase_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_purchase_superbar/static/description/usea.jpg differ diff --git a/app_purchase_superbar/static/description/z_hr1.gif b/app_purchase_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_purchase_superbar/static/description/z_hr1.gif differ diff --git a/app_purchase_superbar/static/description/z_product1.gif b/app_purchase_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_purchase_superbar/static/description/z_product1.gif differ diff --git a/app_purchase_superbar/static/description/z_stock1.gif b/app_purchase_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_purchase_superbar/static/description/z_stock1.gif differ diff --git a/app_purchase_superbar/static/src/views/purchase_listview.xml b/app_purchase_superbar/static/src/views/purchase_listview.xml new file mode 100644 index 00000000..34b21c57 --- /dev/null +++ b/app_purchase_superbar/static/src/views/purchase_listview.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/app_purchase_superbar/views/product_supplierinfo_views.xml b/app_purchase_superbar/views/product_supplierinfo_views.xml new file mode 100644 index 00000000..80c1d707 --- /dev/null +++ b/app_purchase_superbar/views/product_supplierinfo_views.xml @@ -0,0 +1,33 @@ + + + + + + product.supplierinfo.search.view.superbar + product.supplierinfo + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_purchase_superbar/views/purchase_order_views.xml b/app_purchase_superbar/views/purchase_order_views.xml new file mode 100644 index 00000000..e5b0402b --- /dev/null +++ b/app_purchase_superbar/views/purchase_order_views.xml @@ -0,0 +1,33 @@ + + + + request.quotation.select.superbar + purchase.order + + + + + + + + + + + + + purchase.order.select.superbar + 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..787fdfd0 --- /dev/null +++ b/app_sale_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_sale_superbar/__manifest__.py b/app_sale_superbar/__manifest__.py new file mode 100644 index 00000000..41aa402e --- /dev/null +++ b/app_sale_superbar/__manifest__.py @@ -0,0 +1,56 @@ +# -*- 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': '18.0.24.11.12', + '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. + 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': [ + ], + '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..40a96afc --- /dev/null +++ b/app_sale_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..4afed6c4 --- /dev/null +++ b/app_sale_superbar/static/description/index.html @@ -0,0 +1,289 @@ +
    +
    +

    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

    +
    +
    +
    + +
    +
    +
    +
    +

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

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

    Technical Help & Support

    +
    +
    +
    +

    + For any type of technical help & support requests, Feel free to contact us

    + + 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_stock_superbar/__init__.py b/app_stock_superbar/__init__.py new file mode 100644 index 00000000..787fdfd0 --- /dev/null +++ b/app_stock_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook diff --git a/app_stock_superbar/__manifest__.py b/app_stock_superbar/__manifest__.py new file mode 100644 index 00000000..f02201a1 --- /dev/null +++ b/app_stock_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': "Stock Superbar ztree, parent children tree", + 'version': '18.0.24.11.12', + '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': [ + ], + '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..40a96afc --- /dev/null +++ b/app_stock_superbar/report/__init__.py @@ -0,0 +1 @@ +# -*- 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..c3dbc6e3 --- /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