diff --git a/app_base_superbar/static/description/index.html b/app_base_superbar/static/description/index.html index bbccd6fb..7a0c6160 100644 --- a/app_base_superbar/static/description/index.html +++ b/app_base_superbar/static/description/index.html @@ -444,7 +444,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_mail_superbar/static/description/index.html b/app_mail_superbar/static/description/index.html index a9920fe3..1560d0fe 100644 --- a/app_mail_superbar/static/description/index.html +++ b/app_mail_superbar/static/description/index.html @@ -430,7 +430,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_mrp_superbar/static/description/index.html b/app_mrp_superbar/static/description/index.html index 877356c3..9b9b4008 100644 --- a/app_mrp_superbar/static/description/index.html +++ b/app_mrp_superbar/static/description/index.html @@ -353,7 +353,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_pos_superbar/static/description/index.html b/app_pos_superbar/static/description/index.html index 43fa2eba..23b370e9 100644 --- a/app_pos_superbar/static/description/index.html +++ b/app_pos_superbar/static/description/index.html @@ -353,7 +353,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html index 0ddf19b1..26f9f281 100644 --- a/app_product_superbar/static/description/index.html +++ b/app_product_superbar/static/description/index.html @@ -15,7 +15,7 @@ in odoo Store. Get - free 20 related apps. + free 20+ related apps.

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

    @@ -368,7 +368,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_product_superbar_pro/__init__.py b/app_product_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_product_superbar_pro/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_product_superbar_pro/__manifest__.py b/app_product_superbar_pro/__manifest__.py new file mode 100644 index 00000000..29cccc07 --- /dev/null +++ b/app_product_superbar_pro/__manifest__.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-08-15 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "Product browse by category navigator Pro", + 'version': '13.20.07.26', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse Product by category tree. Use for parent children tree list kanban navigator. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'app_product_superbar', + ], + 'images': ['static/description/superbar_pro.gif'], + 'data': [ + 'views/product_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_product_superbar_pro/hooks.py b/app_product_superbar_pro/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_product_superbar_pro/hooks.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +def post_init_hook(cr, pool): + pass + # cr.execute("") diff --git a/app_product_superbar_pro/i18n/zh_CN.po b/app_product_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_product_superbar_pro/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_product_superbar_pro/models/__init__.py b/app_product_superbar_pro/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_product_superbar_pro/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_product_superbar_pro/report/__init__.py b/app_product_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_product_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_product_superbar_pro/static/description/banner.png b/app_product_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..59270007 Binary files /dev/null and b/app_product_superbar_pro/static/description/banner.png differ diff --git a/app_product_superbar_pro/static/description/icon.png b/app_product_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_product_superbar_pro/static/description/icon.png differ diff --git a/app_product_superbar_pro/static/description/index.html b/app_product_superbar_pro/static/description/index.html new file mode 100644 index 00000000..c141f978 --- /dev/null +++ b/app_product_superbar_pro/static/description/index.html @@ -0,0 +1,514 @@ +
    +
    +

    Advance Product search Sidebar with Parent Children Tree

    +
    +
    +
    +
    +
    + +
    +

    Advance Search, Advance Filter with Parent Children Tree.

    +

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

    +

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

    +

    What you see is what you get. +

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

     

    +

    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(Extra pay for support):

    +
    +
    + +
    +

    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

    + + guohuadeng@hotmail.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.sunpop.cn +
    +
    +
    +
    + diff --git a/app_product_superbar_pro/static/description/superbar_pro.gif b/app_product_superbar_pro/static/description/superbar_pro.gif new file mode 100644 index 00000000..4811e2de Binary files /dev/null and b/app_product_superbar_pro/static/description/superbar_pro.gif differ diff --git a/app_product_superbar_pro/views/product_views.xml b/app_product_superbar_pro/views/product_views.xml new file mode 100644 index 00000000..e65181f6 --- /dev/null +++ b/app_product_superbar_pro/views/product_views.xml @@ -0,0 +1,16 @@ + + + + + app.product.template.search + product.template + + + + + + + + + + \ No newline at end of file diff --git a/app_project_superbar/static/description/index.html b/app_project_superbar/static/description/index.html index 6f89f545..3f791ded 100644 --- a/app_project_superbar/static/description/index.html +++ b/app_project_superbar/static/description/index.html @@ -373,7 +373,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.
  • diff --git a/app_sale_superbar/views/sale_order_views.xml b/app_sale_superbar/views/sale_order_views.xml index 9d14ba47..453e916b 100644 --- a/app_sale_superbar/views/sale_order_views.xml +++ b/app_sale_superbar/views/sale_order_views.xml @@ -8,10 +8,10 @@ - + @@ -24,11 +24,11 @@ - - + + diff --git a/app_sale_superbar_pro/__init__.py b/app_sale_superbar_pro/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_sale_superbar_pro/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_sale_superbar_pro/__manifest__.py b/app_sale_superbar_pro/__manifest__.py new file mode 100644 index 00000000..e90f29b0 --- /dev/null +++ b/app_sale_superbar_pro/__manifest__.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-08-15 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "Advance sale order navigator by partner and channel", + 'version': '13.20.07.26', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse sale order by partner and sale channel. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'app_sale_superbar', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/sale_order_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_sale_superbar_pro/hooks.py b/app_sale_superbar_pro/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_sale_superbar_pro/hooks.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +def post_init_hook(cr, pool): + pass + # cr.execute("") diff --git a/app_sale_superbar_pro/i18n/zh_CN.po b/app_sale_superbar_pro/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_sale_superbar_pro/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_sale_superbar_pro/models/__init__.py b/app_sale_superbar_pro/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_sale_superbar_pro/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_sale_superbar_pro/report/__init__.py b/app_sale_superbar_pro/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_sale_superbar_pro/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_sale_superbar_pro/static/description/banner.png b/app_sale_superbar_pro/static/description/banner.png new file mode 100644 index 00000000..59270007 Binary files /dev/null and b/app_sale_superbar_pro/static/description/banner.png differ diff --git a/app_sale_superbar_pro/static/description/icon.png b/app_sale_superbar_pro/static/description/icon.png new file mode 100644 index 00000000..e168d41e Binary files /dev/null and b/app_sale_superbar_pro/static/description/icon.png differ diff --git a/app_sale_superbar_pro/static/description/index.html b/app_sale_superbar_pro/static/description/index.html new file mode 100644 index 00000000..763e6854 --- /dev/null +++ b/app_sale_superbar_pro/static/description/index.html @@ -0,0 +1,514 @@ +
    +
    +

    Advance Sale search Sidebar with Parent Children Tree

    +
    +
    +
    +
    +
    + +
    +

    Advance Search, Advance Filter with Parent Children Tree.

    +

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

    +

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

    +

    What you see is what you get. +

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

     

    +

    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(Extra pay for support):

    +
    +
    + +
    +

    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

    + + guohuadeng@hotmail.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.sunpop.cn +
    +
    +
    +
    + diff --git a/app_sale_superbar_pro/static/description/superbar_pro.gif b/app_sale_superbar_pro/static/description/superbar_pro.gif new file mode 100644 index 00000000..4811e2de Binary files /dev/null and b/app_sale_superbar_pro/static/description/superbar_pro.gif differ diff --git a/app_sale_superbar_pro/views/sale_order_views.xml b/app_sale_superbar_pro/views/sale_order_views.xml new file mode 100644 index 00000000..38ed7a90 --- /dev/null +++ b/app_sale_superbar_pro/views/sale_order_views.xml @@ -0,0 +1,28 @@ + + + + + sale.order.search.inherit.quotation.superbarpro + sale.order + + + + + + + + + + + sale.order.search.inherit.sale.superbarpro + sale.order + + + + + + + + + + \ No newline at end of file diff --git a/app_website_product_superbar/static/description/index.html b/app_website_product_superbar/static/description/index.html index 0ddf19b1..579d6be0 100644 --- a/app_website_product_superbar/static/description/index.html +++ b/app_website_product_superbar/static/description/index.html @@ -368,7 +368,7 @@
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • --
  • Or you can set dynamic domain in .py file.
  • -
  • use param: search_superbar_domain_xxx , xxx is a field name.
  • +
  • use param: searchpanel_domain_xxx , xxx is a field name.