diff --git a/app_account_superbar/static/description/banner.png b/app_account_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_account_superbar/static/description/banner.png and b/app_account_superbar/static/description/banner.png differ diff --git a/app_base_superbar/static/description/banner.png b/app_base_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_base_superbar/static/description/banner.png and b/app_base_superbar/static/description/banner.png differ diff --git a/app_contacts_superbar/static/description/banner.png b/app_contacts_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_contacts_superbar/static/description/banner.png and b/app_contacts_superbar/static/description/banner.png differ diff --git a/app_contacts_superbar_pro/static/description/banner.png b/app_contacts_superbar_pro/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_contacts_superbar_pro/static/description/banner.png and b/app_contacts_superbar_pro/static/description/banner.png differ diff --git a/app_documents_superbar/static/description/banner.png b/app_documents_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_documents_superbar/static/description/banner.png and b/app_documents_superbar/static/description/banner.png differ diff --git a/app_event_superbar/static/description/banner.png b/app_event_superbar/static/description/banner.png index 7716c0fe..e3491918 100644 Binary files a/app_event_superbar/static/description/banner.png and b/app_event_superbar/static/description/banner.png differ diff --git a/app_hr_superbar/static/description/banner.png b/app_hr_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_hr_superbar/static/description/banner.png and b/app_hr_superbar/static/description/banner.png differ diff --git a/app_module_superbar/static/description/banner.png b/app_module_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_module_superbar/static/description/banner.png and b/app_module_superbar/static/description/banner.png differ diff --git a/app_mrp_superbar/static/description/banner.png b/app_mrp_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_mrp_superbar/static/description/banner.png and b/app_mrp_superbar/static/description/banner.png differ diff --git a/app_pos_superbar/static/description/banner.png b/app_pos_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_pos_superbar/static/description/banner.png and b/app_pos_superbar/static/description/banner.png differ diff --git a/app_product_superbar_pro/static/description/banner.png b/app_product_superbar_pro/static/description/banner.png index 59270007..e3491918 100644 Binary files a/app_product_superbar_pro/static/description/banner.png and b/app_product_superbar_pro/static/description/banner.png differ diff --git a/app_project_superbar/static/description/banner.png b/app_project_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_project_superbar/static/description/banner.png and b/app_project_superbar/static/description/banner.png differ diff --git a/app_purchase_superbar/static/description/banner.png b/app_purchase_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_purchase_superbar/static/description/banner.png and b/app_purchase_superbar/static/description/banner.png differ diff --git a/app_purchase_superbar_pro/__init__.py b/app_purchase_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_purchase_superbar_pro/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_purchase_superbar_pro/__manifest__.py b/app_purchase_superbar_pro/__manifest__.py new file mode 100644 index 00000000..fa27c807 --- /dev/null +++ b/app_purchase_superbar_pro/__manifest__.py @@ -0,0 +1,63 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-08-15 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "Advance purchase order navigator by date and vendor", + 'version': '16.24.06.15', + 'author': 'odooai.cn', + 'category': 'Extra tools', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse purchase order by date, partner vendor, status. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'app_purchase_superbar', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/purchase_order_views.xml', + 'report/purchase_report_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_purchase_superbar_pro/hooks.py b/app_purchase_superbar_pro/hooks.py new file mode 100644 index 00000000..2d503a3a --- /dev/null +++ b/app_purchase_superbar_pro/hooks.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +def post_init_hook(cr, pool): + pass + # cr.execute("") diff --git a/app_purchase_superbar_pro/i18n/zh_CN.po b/app_purchase_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_purchase_superbar_pro/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_purchase_superbar_pro/models/__init__.py b/app_purchase_superbar_pro/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_purchase_superbar_pro/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_purchase_superbar_pro/report/__init__.py b/app_purchase_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_purchase_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_purchase_superbar_pro/report/purchase_report_views.xml b/app_purchase_superbar_pro/report/purchase_report_views.xml new file mode 100644 index 00000000..401de4fc --- /dev/null +++ b/app_purchase_superbar_pro/report/purchase_report_views.xml @@ -0,0 +1,15 @@ + + + + + app.pro.purchase.report.search + purchase.report + + + + + + + + + diff --git a/app_purchase_superbar_pro/static/description/banner.png b/app_purchase_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..e3491918 Binary files /dev/null and b/app_purchase_superbar_pro/static/description/banner.png differ diff --git a/app_purchase_superbar_pro/static/description/icon.png b/app_purchase_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_purchase_superbar_pro/static/description/icon.png differ diff --git a/app_purchase_superbar_pro/static/description/index.html b/app_purchase_superbar_pro/static/description/index.html new file mode 100644 index 00000000..4eb93530 --- /dev/null +++ b/app_purchase_superbar_pro/static/description/index.html @@ -0,0 +1,547 @@ +
+
+

Purchase search for Advance Search Superbar

+
+ +
+

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

+
+ +

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

+
+ +
+
+
+
+
+ +
+


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

Advance Search, Advance Filter with Parent Children Tree.

+

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

+

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

+

What you see is what you get. +

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

 

+

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

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

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

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

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

+
+ +
+

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

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+ +
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in CRM.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in MRP.

+
+ +
+
+
+ +
+
+

Use in stock.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

Apps Navigator by Category, Module Navigator is ready.

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

Buy this apps, get Extra bonus apps, App zTree widget, Hierarchy Parent tree in m2o select

+

Ready for product category Hierarchy Parent tree in m2o select

+
+ +
+

Ready for Stock Location Hierarchy Parent tree in m2o select

+
+ +
+

Ready for Hr Department Hierarchy Parent tree in m2o select

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. +

+
+
+

3. Easy use of super search sidebar

+
+

Show Super search sidebar in list view.

+
+
+
+ +
+
+
+

Show Super search sidebar in search more view.

+
+
+
+ +
+
+
+

Show Super search sidebar in kanban view.

+
+
+
+ +
+
+
+

Show Super search sidebar in pivot view.

+
+
+
+ +
+
+
+

Show Super search sidebar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+

Attribute of superbar

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

Attribute of field define

+
    +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
  • --
  • +
  • Or you can set dynamic domain in .py file.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ diff --git a/app_purchase_superbar_pro/views/purchase_order_views.xml b/app_purchase_superbar_pro/views/purchase_order_views.xml new file mode 100644 index 00000000..004ae18c --- /dev/null +++ b/app_purchase_superbar_pro/views/purchase_order_views.xml @@ -0,0 +1,26 @@ + + + + + purchase.order.search.quotation.superbarpro + purchase.order + + + + + + + + + + purchase.order.search.order.superbarpro + purchase.order + + + + + + + + + \ No newline at end of file diff --git a/app_sale_superbar/static/description/banner.png b/app_sale_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_sale_superbar/static/description/banner.png and b/app_sale_superbar/static/description/banner.png differ diff --git a/app_sale_superbar_pro/static/description/banner.png b/app_sale_superbar_pro/static/description/banner.png index 59270007..e3491918 100644 Binary files a/app_sale_superbar_pro/static/description/banner.png and b/app_sale_superbar_pro/static/description/banner.png differ diff --git a/app_stock_superbar/static/description/banner.png b/app_stock_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_stock_superbar/static/description/banner.png and b/app_stock_superbar/static/description/banner.png differ diff --git a/app_website_blog_superbar/static/description/banner.png b/app_website_blog_superbar/static/description/banner.png index 80333db4..e3491918 100644 Binary files a/app_website_blog_superbar/static/description/banner.png and b/app_website_blog_superbar/static/description/banner.png differ diff --git a/app_website_product_superbar/static/description/banner.png b/app_website_product_superbar/static/description/banner.png index a6b12c98..e3491918 100644 Binary files a/app_website_product_superbar/static/description/banner.png and b/app_website_product_superbar/static/description/banner.png differ