diff --git a/app_account_superbar/__init__.py b/app_account_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_account_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_account_superbar/__manifest__.py b/app_account_superbar/__manifest__.py new file mode 100644 index 00000000..ce44a82b --- /dev/null +++ b/app_account_superbar/__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 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': "App account superbar navigator", + 'version': '10.19.05.22', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse journal by account chart... Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'account', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/account_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_account_superbar/hooks.py b/app_account_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_account_superbar/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_account_superbar/i18n/zh_CN.po b/app_account_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_account_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_account_superbar/models/__init__.py b/app_account_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_superbar/report/__init__.py b/app_account_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_account_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_account_superbar/static/description/account1.jpg b/app_account_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a 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..1f96341d Binary files /dev/null and b/app_account_superbar/static/description/banner.png 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..252f83d8 Binary files /dev/null and b/app_account_superbar/static/description/contacts1.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..b856e71d Binary files /dev/null and b/app_account_superbar/static/description/demo2.jpg 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..a25ecce0 --- /dev/null +++ b/app_account_superbar/static/description/index.html @@ -0,0 +1,276 @@ +
+
+

Account App Super Sidebar for Advance Search with Parent Children Tree

+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Filter with Parent Children Tree.

+

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

+

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

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

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_account_superbar/static/description/product1.jpg b/app_account_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d 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..b3a922b8 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..8f8e656f Binary files /dev/null and b/app_account_superbar/static/description/sale1.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..48f55f93 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/use1.jpg b/app_account_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b 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..18b0d1b4 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..f900ded8 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..93fc8d4d 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..41a2796e 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..9b442b4a 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..3c27fb9e Binary files /dev/null and b/app_account_superbar/static/description/usea.jpg differ diff --git a/app_account_superbar/views/account_views.xml b/app_account_superbar/views/account_views.xml new file mode 100644 index 00000000..e5868355 --- /dev/null +++ b/app_account_superbar/views/account_views.xml @@ -0,0 +1,73 @@ + + + + + account.account.search.superbar + account.account + + + + + + + + + + + + + account.invoice.select.superbar + account.invoice + + + + + + + + + + + + + account.move.select.superbar + account.move + + + + + + + + + + + + + Journal Items superbar + account.move.line + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_contacts_superbar/__init__.py b/app_contacts_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_contacts_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_contacts_superbar/__manifest__.py b/app_contacts_superbar/__manifest__.py new file mode 100644 index 00000000..631f4b40 --- /dev/null +++ b/app_contacts_superbar/__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': "App contacts by company superbar", + 'version': '10.19.05.09', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse contacts by company. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'contacts', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/res_partner_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_contacts_superbar/hooks.py b/app_contacts_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_contacts_superbar/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_contacts_superbar/i18n/zh_CN.po b/app_contacts_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_contacts_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_contacts_superbar/models/__init__.py b/app_contacts_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_contacts_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_contacts_superbar/report/__init__.py b/app_contacts_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_contacts_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_contacts_superbar/static/description/account1.jpg b/app_contacts_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a 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..1f96341d Binary files /dev/null and b/app_contacts_superbar/static/description/banner.png 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..252f83d8 Binary files /dev/null and b/app_contacts_superbar/static/description/contacts1.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..b856e71d Binary files /dev/null and b/app_contacts_superbar/static/description/demo2.jpg 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..dbb7dd63 --- /dev/null +++ b/app_contacts_superbar/static/description/index.html @@ -0,0 +1,276 @@ +
+
+

Contact App Super Sidebar for Advance Search with Parent Children Tree

+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Filter with Parent Children Tree.

+

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

+

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

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

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_contacts_superbar/static/description/product1.jpg b/app_contacts_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d 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..b3a922b8 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..8f8e656f Binary files /dev/null and b/app_contacts_superbar/static/description/sale1.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..48f55f93 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/use1.jpg b/app_contacts_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b 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..18b0d1b4 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..f900ded8 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..93fc8d4d 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..41a2796e 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..9b442b4a 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..3c27fb9e Binary files /dev/null and b/app_contacts_superbar/static/description/usea.jpg 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..dca44769 --- /dev/null +++ b/app_contacts_superbar/views/res_partner_views.xml @@ -0,0 +1,24 @@ + + + + + res.partner.select.superbar + res.partner + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_crm_superbar/__init__.py b/app_crm_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_crm_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_crm_superbar/__manifest__.py b/app_crm_superbar/__manifest__.py new file mode 100644 index 00000000..df9bf749 --- /dev/null +++ b/app_crm_superbar/__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 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': "App crm browse by stage and team", + 'version': '12.19.04.22', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 10, + 'summary': """ + Browse crm lead by stage and team. 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': [ + 'crm', + 'utm', + ], + 'images': ['static/description/crm1.jpg'], + 'data': [ + 'views/crm_lead_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_crm_superbar/hooks.py b/app_crm_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_crm_superbar/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_crm_superbar/i18n/zh_CN.po b/app_crm_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_crm_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_crm_superbar/models/__init__.py b/app_crm_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_crm_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_crm_superbar/report/__init__.py b/app_crm_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_crm_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_crm_superbar/static/description/account1.jpg b/app_crm_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a Binary files /dev/null and b/app_crm_superbar/static/description/account1.jpg differ diff --git a/app_crm_superbar/static/description/banner.png b/app_crm_superbar/static/description/banner.png new file mode 100644 index 00000000..1f96341d Binary files /dev/null and b/app_crm_superbar/static/description/banner.png differ diff --git a/app_crm_superbar/static/description/contacts1.jpg b/app_crm_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..252f83d8 Binary files /dev/null and b/app_crm_superbar/static/description/contacts1.jpg differ diff --git a/app_crm_superbar/static/description/crm1.jpg b/app_crm_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..ce73f978 Binary files /dev/null and b/app_crm_superbar/static/description/crm1.jpg differ diff --git a/app_crm_superbar/static/description/demo2.jpg b/app_crm_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..b856e71d Binary files /dev/null and b/app_crm_superbar/static/description/demo2.jpg 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..4fd3b048 --- /dev/null +++ b/app_crm_superbar/static/description/index.html @@ -0,0 +1,288 @@ +
+
+

CRM browse by stage and team, Super with Parent Children Tree

+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Filter with Parent Children Tree.

+

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

+

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

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

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in CRM browse by stage and team

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_crm_superbar/static/description/product1.jpg b/app_crm_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d Binary files /dev/null and b/app_crm_superbar/static/description/product1.jpg differ diff --git a/app_crm_superbar/static/description/purchase1.jpg b/app_crm_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..b3a922b8 Binary files /dev/null and b/app_crm_superbar/static/description/purchase1.jpg differ diff --git a/app_crm_superbar/static/description/sale1.jpg b/app_crm_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..8f8e656f Binary files /dev/null and b/app_crm_superbar/static/description/sale1.jpg differ diff --git a/app_crm_superbar/static/description/superbar.gif b/app_crm_superbar/static/description/superbar.gif new file mode 100644 index 00000000..48f55f93 Binary files /dev/null and b/app_crm_superbar/static/description/superbar.gif differ diff --git a/app_crm_superbar/static/description/superbar_use.png b/app_crm_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_crm_superbar/static/description/superbar_use.png differ diff --git a/app_crm_superbar/static/description/use1.jpg b/app_crm_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b Binary files /dev/null and b/app_crm_superbar/static/description/use1.jpg differ diff --git a/app_crm_superbar/static/description/use2.jpg b/app_crm_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_crm_superbar/static/description/use2.jpg differ diff --git a/app_crm_superbar/static/description/use3.jpg b/app_crm_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_crm_superbar/static/description/use3.jpg differ diff --git a/app_crm_superbar/static/description/use4.jpg b/app_crm_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_crm_superbar/static/description/use4.jpg differ diff --git a/app_crm_superbar/static/description/use5.jpg b/app_crm_superbar/static/description/use5.jpg new file mode 100644 index 00000000..18b0d1b4 Binary files /dev/null and b/app_crm_superbar/static/description/use5.jpg differ diff --git a/app_crm_superbar/static/description/use6.jpg b/app_crm_superbar/static/description/use6.jpg new file mode 100644 index 00000000..f900ded8 Binary files /dev/null and b/app_crm_superbar/static/description/use6.jpg differ diff --git a/app_crm_superbar/static/description/use7.jpg b/app_crm_superbar/static/description/use7.jpg new file mode 100644 index 00000000..93fc8d4d Binary files /dev/null and b/app_crm_superbar/static/description/use7.jpg differ diff --git a/app_crm_superbar/static/description/use8.jpg b/app_crm_superbar/static/description/use8.jpg new file mode 100644 index 00000000..41a2796e Binary files /dev/null and b/app_crm_superbar/static/description/use8.jpg differ diff --git a/app_crm_superbar/static/description/use9.jpg b/app_crm_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9b442b4a Binary files /dev/null and b/app_crm_superbar/static/description/use9.jpg differ diff --git a/app_crm_superbar/static/description/usea.jpg b/app_crm_superbar/static/description/usea.jpg new file mode 100644 index 00000000..3c27fb9e Binary files /dev/null and b/app_crm_superbar/static/description/usea.jpg differ 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..73effa36 --- /dev/null +++ b/app_crm_superbar/views/crm_lead_views.xml @@ -0,0 +1,33 @@ + + + + app.crm.lead.search.opportunity + crm.lead + + + + + + + + + + + + + app.crm.lead.search.lead + crm.lead + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_hr_superbar/__init__.py b/app_hr_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_hr_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_hr_superbar/__manifest__.py b/app_hr_superbar/__manifest__.py new file mode 100644 index 00000000..79b627fb --- /dev/null +++ b/app_hr_superbar/__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 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': "Employee Navigator by department, hr superbar", + 'version': '12.19.01.10', + 'author': 'Sunpop.cn', + 'category': 'Human Resources', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse employees by departments tree. hr organization chart. + Easy to navigator and browse any data. Support Search more 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', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_hr_superbar/hooks.py b/app_hr_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_hr_superbar/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_hr_superbar/i18n/zh_CN.po b/app_hr_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_hr_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_hr_superbar/models/__init__.py b/app_hr_superbar/models/__init__.py new file mode 100644 index 00000000..fbc15372 --- /dev/null +++ b/app_hr_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + + + diff --git a/app_hr_superbar/report/__init__.py b/app_hr_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_hr_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_hr_superbar/static/description/account1.jpg b/app_hr_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a 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..1f96341d Binary files /dev/null and b/app_hr_superbar/static/description/banner.png 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..252f83d8 Binary files /dev/null and b/app_hr_superbar/static/description/contacts1.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..b856e71d Binary files /dev/null and b/app_hr_superbar/static/description/demo2.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..6502e3a5 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..bcc8cac2 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..13ae3416 --- /dev/null +++ b/app_hr_superbar/static/description/index.html @@ -0,0 +1,314 @@ +
+
+

HR employee navigate by department is ready.

+
+
+
+
+
+ +
+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Advance Filter with Parent Children Tree.

+

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

+

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

+
+
+ Key features: +
    +
  • + + Easy to make custom parent children tree for and data. +
  • +
  • + + Easy to show custom parent children tree for tree, kanban, pivot, graph view. +
  • +
  • + + Filter product of any data in "Search More..." popup windows. +
  • +
  • + + Product navigate by category or type is ready. + + Click to download. + +
  • +
  • + + Account chart navigate by type is ready. + + Click to download. + +
  • +
  • + + Contacts navigate by company is ready. + + Click to download. + +
  • +
  • + + Sale order navigate by partner and channel is ready. + + Click to download. + +
  • +
  • + + Purchase order navigate by partner is ready. + + Click to download. + +
  • +
  • + HR employee navigate by department is ready. Click to + download. +
  • +
  • + + HR employee navigate by department is ready. + + Click to download. + +
  • +
  • + + It is so easy to customize, you can use it in anywhere in odoo. +
  • +
+
+
+
+
+ +
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ + +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_hr_superbar/static/description/product1.jpg b/app_hr_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d 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..b3a922b8 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..8f8e656f 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/superbar.gif b/app_hr_superbar/static/description/superbar.gif new file mode 100644 index 00000000..48f55f93 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/use1.jpg b/app_hr_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b 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..18b0d1b4 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..f900ded8 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..93fc8d4d 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..41a2796e 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..9b442b4a 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..3c27fb9e Binary files /dev/null and b/app_hr_superbar/static/description/usea.jpg differ diff --git a/app_hr_superbar/views/hr_views.xml b/app_hr_superbar/views/hr_views.xml new file mode 100644 index 00000000..90560985 --- /dev/null +++ b/app_hr_superbar/views/hr_views.xml @@ -0,0 +1,20 @@ + + + + + app.hr.employee.search + hr.employee + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_hr_ztree/__init__.py b/app_hr_ztree/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_hr_ztree/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_hr_ztree/__manifest__.py b/app_hr_ztree/__manifest__.py new file mode 100644 index 00000000..6ed497e9 --- /dev/null +++ b/app_hr_ztree/__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': "app hr department, parent children tree", + 'version': '10.19.05.15', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Use for parent children tree list select navigator. hr department employee tree. + 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': [ + 'hr', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/hr_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_hr_ztree/hooks.py b/app_hr_ztree/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_hr_ztree/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_hr_ztree/i18n/zh_CN.po b/app_hr_ztree/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_hr_ztree/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_ztree/models/__init__.py b/app_hr_ztree/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_hr_ztree/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_hr_ztree/report/__init__.py b/app_hr_ztree/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_hr_ztree/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_hr_ztree/static/description/banner.gif b/app_hr_ztree/static/description/banner.gif new file mode 100644 index 00000000..ac3c0327 Binary files /dev/null and b/app_hr_ztree/static/description/banner.gif differ diff --git a/app_hr_ztree/static/description/demo1.jpg b/app_hr_ztree/static/description/demo1.jpg new file mode 100644 index 00000000..fd538628 Binary files /dev/null and b/app_hr_ztree/static/description/demo1.jpg differ diff --git a/app_hr_ztree/static/description/demo11.jpg b/app_hr_ztree/static/description/demo11.jpg new file mode 100644 index 00000000..72ad356b Binary files /dev/null and b/app_hr_ztree/static/description/demo11.jpg differ diff --git a/app_hr_ztree/static/description/demo12.jpg b/app_hr_ztree/static/description/demo12.jpg new file mode 100644 index 00000000..ecc58186 Binary files /dev/null and b/app_hr_ztree/static/description/demo12.jpg differ diff --git a/app_hr_ztree/static/description/demo2.jpg b/app_hr_ztree/static/description/demo2.jpg new file mode 100644 index 00000000..b856e71d Binary files /dev/null and b/app_hr_ztree/static/description/demo2.jpg differ diff --git a/app_hr_ztree/static/description/demo3.jpg b/app_hr_ztree/static/description/demo3.jpg new file mode 100644 index 00000000..e82b0990 Binary files /dev/null and b/app_hr_ztree/static/description/demo3.jpg differ diff --git a/app_hr_ztree/static/description/demo4.jpg b/app_hr_ztree/static/description/demo4.jpg new file mode 100644 index 00000000..4a4abce1 Binary files /dev/null and b/app_hr_ztree/static/description/demo4.jpg differ diff --git a/app_hr_ztree/static/description/demo5.jpg b/app_hr_ztree/static/description/demo5.jpg new file mode 100644 index 00000000..849b7841 Binary files /dev/null and b/app_hr_ztree/static/description/demo5.jpg differ diff --git a/app_hr_ztree/static/description/icon.png b/app_hr_ztree/static/description/icon.png new file mode 100644 index 00000000..57e223d0 Binary files /dev/null and b/app_hr_ztree/static/description/icon.png differ diff --git a/app_hr_ztree/static/description/index.html b/app_hr_ztree/static/description/index.html new file mode 100644 index 00000000..9c45dbee --- /dev/null +++ b/app_hr_ztree/static/description/index.html @@ -0,0 +1,179 @@ +
+
+

App ztree widget, for parent children tree list. Demo for hr department employee

+

Very useful for parent child relationship, like product category, stock location, hr department

+
+
+ +
+
+
+
+ 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(Need extra module, release soon): +
    +
  • + + Easy to navigate product, employee in tree or kanban view. +
  • +
+
+ +
+
+
+ +
+
+

Use in hr department.

+
+ +
+
+
+ +
+
+

Use in hr employee.

+
+ +
+
+
+ +
+
+

Use in product.

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in stock location.

+
+ +
+
+
+ +
+
+

 

+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_hr_ztree/static/description/setup1.jpg b/app_hr_ztree/static/description/setup1.jpg new file mode 100644 index 00000000..d5ade2b1 Binary files /dev/null and b/app_hr_ztree/static/description/setup1.jpg differ diff --git a/app_hr_ztree/static/img/icon_sunpop.png b/app_hr_ztree/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_hr_ztree/static/img/icon_sunpop.png differ diff --git a/app_hr_ztree/static/img/logo_sunpop.png b/app_hr_ztree/static/img/logo_sunpop.png new file mode 100644 index 00000000..90cbe0e2 Binary files /dev/null and b/app_hr_ztree/static/img/logo_sunpop.png differ diff --git a/app_hr_ztree/views/hr_views.xml b/app_hr_ztree/views/hr_views.xml new file mode 100644 index 00000000..21356c8c --- /dev/null +++ b/app_hr_ztree/views/hr_views.xml @@ -0,0 +1,30 @@ + + + + + app.hr.department.form + hr.department + + + + + ztree_select + parent_id + + + + + app.hr.employee.form + hr.employee + + + + + + ztree_select + parent_id + + + + + \ No newline at end of file diff --git a/app_mrp_superbar/__init__.py b/app_mrp_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_mrp_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_mrp_superbar/__manifest__.py b/app_mrp_superbar/__manifest__.py new file mode 100644 index 00000000..9dd973bf --- /dev/null +++ b/app_mrp_superbar/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "App mrp Manufacturing Orders browse by state workcenter navigator", + 'version': '12.19.04.28', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.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 Search more list, kanban, pivot, graph view. + ztree widget.Hierarchy Tree. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'mrp', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/mrp_production_views.xml', + 'views/mrp_workorder_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_mrp_superbar/hooks.py b/app_mrp_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_mrp_superbar/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_mrp_superbar/i18n/zh_CN.po b/app_mrp_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_mrp_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_mrp_superbar/models/__init__.py b/app_mrp_superbar/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_mrp_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_mrp_superbar/report/__init__.py b/app_mrp_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_mrp_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_mrp_superbar/static/description/account1.jpg b/app_mrp_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_mrp_superbar/static/description/account1.jpg differ diff --git a/app_mrp_superbar/static/description/banner.gif b/app_mrp_superbar/static/description/banner.gif new file mode 100644 index 00000000..7f84f91e Binary files /dev/null and b/app_mrp_superbar/static/description/banner.gif differ diff --git a/app_mrp_superbar/static/description/banner.png b/app_mrp_superbar/static/description/banner.png new file mode 100644 index 00000000..af963efa Binary files /dev/null and b/app_mrp_superbar/static/description/banner.png 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..7f689cc5 --- /dev/null +++ b/app_mrp_superbar/static/description/index.html @@ -0,0 +1,391 @@ +
+
+

MRP Advance Search Sidebar with Hierarchy Parent Children Tree

+
+
+
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

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

+

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

+

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

+
+
+ Key features: +
    +
  • + + Update: v12.19.04.22, Fix bug when go deep into relate views. +
  • +
  • + + Easy to make custom parent children tree for and data. +
  • +
  • + + Easy to show custom parent children tree for tree, kanban, pivot, graph view. +
  • +
  • + + Filter product of any data in "Search More..." popup windows. +
  • +
  • + + Responsive UI.Only show when width > 992px; +
  • +
  • + + Product navigate by category or type is ready. + + Click to download. + +
  • +
  • + + Account chart navigate by type is ready. + + Click to download. + +
  • +
  • + + Contacts navigate by company is ready. + + Click to download. + +
  • +
  • + + Sale order navigate by partner and channel is ready. + + Click to download. + +
  • +
  • + + CRM browse by stage and team is ready. + + Click to download. + +
  • +
  • + + Purchase order navigate by partner is ready. + + Click to download. + +
  • +
  • + + Stock location navigate by parent is ready. + + Click to download. + +
  • +
  • + + HR employee navigate by department is ready. + + Click to download. + +
  • +
  • + + MRP manufacture order navigate by state workcenter is ready. + + Click to download. + +
  • +
  • + + Apps Navigator by Category, Module Navigator is ready. + + Click to download. + +
  • +
  • + + It is so easy to customize, you can use it in anywhere in odoo. +
  • +
+
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in CRM.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in MRP.

+
+ +
+
+
+ +
+
+

Use in stock.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

Apps Navigator by Category, Module Navigator is ready.

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

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
  • --
  • +
  • Or you can set dynamic domain in .py file.
  • +
  • use param: search_superbar_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

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.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/product1.jpg b/app_mrp_superbar/static/description/product1.jpg new file mode 100644 index 00000000..be4dfe7d 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..7f84f91e 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/use1.jpg b/app_mrp_superbar/static/description/use1.jpg new file mode 100644 index 00000000..ed3334d2 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..c5a43a60 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..ebc595fe 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..5edddb90 Binary files /dev/null and b/app_mrp_superbar/static/description/usea.jpg differ 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..eec2aab5 --- /dev/null +++ b/app_mrp_superbar/views/mrp_production_views.xml @@ -0,0 +1,16 @@ + + + + + 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..fa81b2fa --- /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/__init__.py b/app_product_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_product_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_product_superbar/__manifest__.py b/app_product_superbar/__manifest__.py new file mode 100644 index 00000000..11304bee --- /dev/null +++ b/app_product_superbar/__manifest__.py @@ -0,0 +1,63 @@ +# -*- 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': "App product browse by category navigator", + 'version': '12.19.04.29', + '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 Search more list, kanban, pivot, graph view. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'product', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/product_views.xml', + 'views/product_attribute_value_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_product_superbar/hooks.py b/app_product_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_product_superbar/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/i18n/zh_CN.po b/app_product_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_product_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_product_superbar/models/__init__.py b/app_product_superbar/models/__init__.py new file mode 100644 index 00000000..cfc06edc --- /dev/null +++ b/app_product_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +# from . import product_category + diff --git a/app_product_superbar/models/product_category.py b/app_product_superbar/models/product_category.py new file mode 100644 index 00000000..709d0af2 --- /dev/null +++ b/app_product_superbar/models/product_category.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- + +# Created on 2017-11-28 +# 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: + +from odoo import api, fields, models, exceptions, _ + +class ProductCategory(models.Model): + _inherit = 'product.category' + + # 更新 complete_name 算法,当有context: show_short =1 时,只显示短名 + @api.multi + def name_get(self): + if self._context.get('category_show_short'): + new_res = [] + for category in self: + name = category.name + new_res.append((category.id, name)) + return new_res + else: + return super(ProductCategory, self).name_get() diff --git a/app_product_superbar/report/__init__.py b/app_product_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_product_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_product_superbar/static/description/account1.jpg b/app_product_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_product_superbar/static/description/account1.jpg differ diff --git a/app_product_superbar/static/description/banner.gif b/app_product_superbar/static/description/banner.gif new file mode 100644 index 00000000..2dcdc9dd Binary files /dev/null and b/app_product_superbar/static/description/banner.gif differ diff --git a/app_product_superbar/static/description/banner.png b/app_product_superbar/static/description/banner.png new file mode 100644 index 00000000..af963efa Binary files /dev/null and b/app_product_superbar/static/description/banner.png differ diff --git a/app_product_superbar/static/description/contacts1.jpg b/app_product_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_product_superbar/static/description/contacts1.jpg differ diff --git a/app_product_superbar/static/description/crm1.jpg b/app_product_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_product_superbar/static/description/crm1.jpg differ diff --git a/app_product_superbar/static/description/demo2.jpg b/app_product_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_product_superbar/static/description/demo2.jpg differ diff --git a/app_product_superbar/static/description/demo_module1.jpg b/app_product_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_product_superbar/static/description/demo_module1.jpg differ diff --git a/app_product_superbar/static/description/demo_module2.jpg b/app_product_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_product_superbar/static/description/demo_module2.jpg differ diff --git a/app_product_superbar/static/description/hr1.jpg b/app_product_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_product_superbar/static/description/hr1.jpg differ diff --git a/app_product_superbar/static/description/hr2.gif b/app_product_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_product_superbar/static/description/hr2.gif differ diff --git a/app_product_superbar/static/description/icon.png b/app_product_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_product_superbar/static/description/icon.png differ diff --git a/app_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html new file mode 100644 index 00000000..dd19c68c --- /dev/null +++ b/app_product_superbar/static/description/index.html @@ -0,0 +1,391 @@ +
+
+

Product Super Sidebar for Advance Search with Parent Children Tree

+
+
+
+
+
+ +
+

Advance Search, Advance Filter with Parent Children Tree.

+

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

+

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

+

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

+
+
+ Key features: +
    +
  • + + Update: v12.19.04.22, Fix bug when go deep into relate views. +
  • +
  • + + Easy to make custom parent children tree for and data. +
  • +
  • + + Easy to show custom parent children tree for tree, kanban, pivot, graph view. +
  • +
  • + + Filter product of any data in "Search More..." popup windows. +
  • +
  • + + Responsive UI.Only show when width > 992px; +
  • +
  • + + Product navigate by category or type is ready. + + Click to download. + +
  • +
  • + + Account chart navigate by type is ready. + + Click to download. + +
  • +
  • + + Contacts navigate by company is ready. + + Click to download. + +
  • +
  • + + Sale order navigate by partner and channel is ready. + + Click to download. + +
  • +
  • + + CRM browse by stage and team is ready. + + Click to download. + +
  • +
  • + + Purchase order navigate by partner is ready. + + Click to download. + +
  • +
  • + + Stock location navigate by parent, Picking by type is ready. + + Click to download. + +
  • +
  • + + HR employee navigate by department is ready. + + Click to download. + +
  • +
  • + + MRP manufacture order navigate by state workcenter is ready. + + Click to download. + +
  • +
  • + + Apps Navigator by Category, Module Navigator is ready. + + Click to download. + +
  • +
  • + + It is so easy to customize, you can use it in anywhere in odoo. +
  • +
+
+
+
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+
+
+

 

+

Filter product or any data in search more windows

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in CRM.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in MRP.

+
+ +
+
+
+ +
+
+

Use in stock.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

Apps Navigator by Category, Module Navigator is ready.

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

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
  • --
  • +
  • Or you can set dynamic domain in .py file.
  • +
  • use param: search_superbar_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

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_product_superbar/static/description/mrp1.gif b/app_product_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_product_superbar/static/description/mrp1.gif differ diff --git a/app_product_superbar/static/description/mrp1.jpg b/app_product_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_product_superbar/static/description/mrp1.jpg differ diff --git a/app_product_superbar/static/description/product1.jpg b/app_product_superbar/static/description/product1.jpg new file mode 100644 index 00000000..be4dfe7d Binary files /dev/null and b/app_product_superbar/static/description/product1.jpg differ diff --git a/app_product_superbar/static/description/purchase1.jpg b/app_product_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_product_superbar/static/description/purchase1.jpg differ diff --git a/app_product_superbar/static/description/sale1.jpg b/app_product_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_product_superbar/static/description/sale1.jpg differ diff --git a/app_product_superbar/static/description/searchmore.jpg b/app_product_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_product_superbar/static/description/searchmore.jpg differ diff --git a/app_product_superbar/static/description/stock1.jpg b/app_product_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_product_superbar/static/description/stock1.jpg differ diff --git a/app_product_superbar/static/description/superbar.gif b/app_product_superbar/static/description/superbar.gif new file mode 100644 index 00000000..2dcdc9dd Binary files /dev/null and b/app_product_superbar/static/description/superbar.gif differ diff --git a/app_product_superbar/static/description/superbar_use.gif b/app_product_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_product_superbar/static/description/superbar_use.gif differ diff --git a/app_product_superbar/static/description/use.jpg b/app_product_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_product_superbar/static/description/use.jpg differ diff --git a/app_product_superbar/static/description/use1.jpg b/app_product_superbar/static/description/use1.jpg new file mode 100644 index 00000000..ed3334d2 Binary files /dev/null and b/app_product_superbar/static/description/use1.jpg differ diff --git a/app_product_superbar/static/description/use2.jpg b/app_product_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_product_superbar/static/description/use2.jpg differ diff --git a/app_product_superbar/static/description/use3.jpg b/app_product_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_product_superbar/static/description/use3.jpg differ diff --git a/app_product_superbar/static/description/use4.jpg b/app_product_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_product_superbar/static/description/use4.jpg differ diff --git a/app_product_superbar/static/description/use5.jpg b/app_product_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_product_superbar/static/description/use5.jpg differ diff --git a/app_product_superbar/static/description/use6.jpg b/app_product_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_product_superbar/static/description/use6.jpg differ diff --git a/app_product_superbar/static/description/use7.jpg b/app_product_superbar/static/description/use7.jpg new file mode 100644 index 00000000..c5a43a60 Binary files /dev/null and b/app_product_superbar/static/description/use7.jpg differ diff --git a/app_product_superbar/static/description/use8.jpg b/app_product_superbar/static/description/use8.jpg new file mode 100644 index 00000000..ebc595fe Binary files /dev/null and b/app_product_superbar/static/description/use8.jpg differ diff --git a/app_product_superbar/static/description/use9.jpg b/app_product_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_product_superbar/static/description/use9.jpg differ diff --git a/app_product_superbar/static/description/usea.jpg b/app_product_superbar/static/description/usea.jpg new file mode 100644 index 00000000..5edddb90 Binary files /dev/null and b/app_product_superbar/static/description/usea.jpg differ diff --git a/app_product_superbar/views/product_attribute_value_views.xml b/app_product_superbar/views/product_attribute_value_views.xml new file mode 100644 index 00000000..1b282341 --- /dev/null +++ b/app_product_superbar/views/product_attribute_value_views.xml @@ -0,0 +1,18 @@ + + + + + app.product.attribute.value.search + product.attribute.value + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar/views/product_views.xml b/app_product_superbar/views/product_views.xml new file mode 100644 index 00000000..fe26ee21 --- /dev/null +++ b/app_product_superbar/views/product_views.xml @@ -0,0 +1,31 @@ + + + + + product.template.search.ztree + product.template + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_ztree/__init__.py b/app_product_ztree/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_product_ztree/__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_ztree/__manifest__.py b/app_product_ztree/__manifest__.py new file mode 100644 index 00000000..0f0203af --- /dev/null +++ b/app_product_ztree/__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': "app product category ztree, parent children tree", + 'version': '10.19.05.15', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Use for parent children tree list select navigator. Product category tree. + 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': [ + 'product', + ], + 'images': ['static/description/banner.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_ztree/hooks.py b/app_product_ztree/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_product_ztree/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_ztree/i18n/zh_CN.po b/app_product_ztree/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_product_ztree/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_ztree/models/__init__.py b/app_product_ztree/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_product_ztree/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_product_ztree/report/__init__.py b/app_product_ztree/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_product_ztree/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_product_ztree/static/description/banner.gif b/app_product_ztree/static/description/banner.gif new file mode 100644 index 00000000..ac3c0327 Binary files /dev/null and b/app_product_ztree/static/description/banner.gif differ diff --git a/app_product_ztree/static/description/demo1.jpg b/app_product_ztree/static/description/demo1.jpg new file mode 100644 index 00000000..fd538628 Binary files /dev/null and b/app_product_ztree/static/description/demo1.jpg differ diff --git a/app_product_ztree/static/description/demo11.jpg b/app_product_ztree/static/description/demo11.jpg new file mode 100644 index 00000000..72ad356b Binary files /dev/null and b/app_product_ztree/static/description/demo11.jpg differ diff --git a/app_product_ztree/static/description/demo12.jpg b/app_product_ztree/static/description/demo12.jpg new file mode 100644 index 00000000..ecc58186 Binary files /dev/null and b/app_product_ztree/static/description/demo12.jpg differ diff --git a/app_product_ztree/static/description/demo2.jpg b/app_product_ztree/static/description/demo2.jpg new file mode 100644 index 00000000..b856e71d Binary files /dev/null and b/app_product_ztree/static/description/demo2.jpg differ diff --git a/app_product_ztree/static/description/demo3.jpg b/app_product_ztree/static/description/demo3.jpg new file mode 100644 index 00000000..e82b0990 Binary files /dev/null and b/app_product_ztree/static/description/demo3.jpg differ diff --git a/app_product_ztree/static/description/demo4.jpg b/app_product_ztree/static/description/demo4.jpg new file mode 100644 index 00000000..4a4abce1 Binary files /dev/null and b/app_product_ztree/static/description/demo4.jpg differ diff --git a/app_product_ztree/static/description/demo5.jpg b/app_product_ztree/static/description/demo5.jpg new file mode 100644 index 00000000..849b7841 Binary files /dev/null and b/app_product_ztree/static/description/demo5.jpg differ diff --git a/app_product_ztree/static/description/icon.png b/app_product_ztree/static/description/icon.png new file mode 100644 index 00000000..57e223d0 Binary files /dev/null and b/app_product_ztree/static/description/icon.png differ diff --git a/app_product_ztree/static/description/index.html b/app_product_ztree/static/description/index.html new file mode 100644 index 00000000..383b67dd --- /dev/null +++ b/app_product_ztree/static/description/index.html @@ -0,0 +1,180 @@ +
+
+

App ztree widget, for parent children tree list. Demo for product category

+

Very useful for parent child relationship, like product category, stock location, hr department

+
+
+ +
+
+
+
+ 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(Need extra module, release soon): +
    +
  • + + Easy to navigate product, employee in tree or kanban view. +
  • +
+
+ +
+
+
+ +
+
+

Use in product.

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in stock location.

+
+ +
+
+
+ +
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_product_ztree/static/description/setup1.jpg b/app_product_ztree/static/description/setup1.jpg new file mode 100644 index 00000000..d5ade2b1 Binary files /dev/null and b/app_product_ztree/static/description/setup1.jpg differ diff --git a/app_product_ztree/static/img/icon_sunpop.png b/app_product_ztree/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_product_ztree/static/img/icon_sunpop.png differ diff --git a/app_product_ztree/static/img/logo_sunpop.png b/app_product_ztree/static/img/logo_sunpop.png new file mode 100644 index 00000000..90cbe0e2 Binary files /dev/null and b/app_product_ztree/static/img/logo_sunpop.png differ diff --git a/app_product_ztree/views/product_views.xml b/app_product_ztree/views/product_views.xml new file mode 100644 index 00000000..7784215f --- /dev/null +++ b/app_product_ztree/views/product_views.xml @@ -0,0 +1,33 @@ + + + + + app.product.template.form + product.template + + + + + ztree_select + parent_id + 2 + name + + + + + app.product.category.form + product.category + + + + + + ztree_select + parent_id + + + + + + \ No newline at end of file diff --git a/app_purchase_superbar/__init__.py b/app_purchase_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_purchase_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_purchase_superbar/__manifest__.py b/app_purchase_superbar/__manifest__.py new file mode 100644 index 00000000..4d8bb420 --- /dev/null +++ b/app_purchase_superbar/__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 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': "App purchase search browse by partner", + 'version': '12.19.04.22', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.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_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/hooks.py b/app_purchase_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_purchase_superbar/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_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..633f8661 --- /dev/null +++ b/app_purchase_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_purchase_superbar/static/description/account1.jpg b/app_purchase_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a 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..1f96341d Binary files /dev/null and b/app_purchase_superbar/static/description/banner.png 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..252f83d8 Binary files /dev/null and b/app_purchase_superbar/static/description/contacts1.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..b856e71d Binary files /dev/null and b/app_purchase_superbar/static/description/demo2.jpg 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..753a9618 --- /dev/null +++ b/app_purchase_superbar/static/description/index.html @@ -0,0 +1,276 @@ +
+
+

Purchase App Super Sidebar for Advance Search with Parent Children Tree

+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Filter with Parent Children Tree.

+

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

+

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

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

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_purchase_superbar/static/description/product1.jpg b/app_purchase_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d 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..b3a922b8 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..8f8e656f Binary files /dev/null and b/app_purchase_superbar/static/description/sale1.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..48f55f93 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/use1.jpg b/app_purchase_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b 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..18b0d1b4 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..f900ded8 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..93fc8d4d 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..41a2796e 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..9b442b4a 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..3c27fb9e Binary files /dev/null and b/app_purchase_superbar/static/description/usea.jpg differ diff --git a/app_purchase_superbar/views/purchase_views.xml b/app_purchase_superbar/views/purchase_views.xml new file mode 100644 index 00000000..b02ce212 --- /dev/null +++ b/app_purchase_superbar/views/purchase_views.xml @@ -0,0 +1,35 @@ + + + + request.quotation.select.superbar + purchase.order + + + + + + + + + + + + + + product.supplierinfo.search.view.superbar + product.supplierinfo + + + + + + + + + + + \ No newline at end of file diff --git a/app_sale_superbar/__init__.py b/app_sale_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_sale_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_sale_superbar/__manifest__.py b/app_sale_superbar/__manifest__.py new file mode 100644 index 00000000..5860c37e --- /dev/null +++ b/app_sale_superbar/__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': "App sale order browse by partner and channel", + 'version': '12.19.04.22', + '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': [ + 'sale', + ], + '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/hooks.py b/app_sale_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_sale_superbar/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/i18n/zh_CN.po b/app_sale_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_sale_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_sale_superbar/models/__init__.py b/app_sale_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_sale_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_sale_superbar/report/__init__.py b/app_sale_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_sale_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_sale_superbar/static/description/account1.jpg b/app_sale_superbar/static/description/account1.jpg new file mode 100644 index 00000000..ace8d54a 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..1f96341d Binary files /dev/null and b/app_sale_superbar/static/description/banner.png 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..252f83d8 Binary files /dev/null and b/app_sale_superbar/static/description/contacts1.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..b856e71d Binary files /dev/null and b/app_sale_superbar/static/description/demo2.jpg 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..47a7ef3a --- /dev/null +++ b/app_sale_superbar/static/description/index.html @@ -0,0 +1,276 @@ +
+
+

Sale App Super Sidebar for Advance Search with Parent Children Tree

+

!This moduld Do Need extra paid Apps + + Click to download. +

+

Advance Search, Filter with Parent Children Tree.

+

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

+

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

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

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

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

+
+

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

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

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

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_mode: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_sale_superbar/static/description/product1.jpg b/app_sale_superbar/static/description/product1.jpg new file mode 100644 index 00000000..fb563e4d 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..b3a922b8 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..8f8e656f Binary files /dev/null and b/app_sale_superbar/static/description/sale1.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..48f55f93 Binary files /dev/null and b/app_sale_superbar/static/description/superbar.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/use1.jpg b/app_sale_superbar/static/description/use1.jpg new file mode 100644 index 00000000..b951024b 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..18b0d1b4 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..f900ded8 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..93fc8d4d 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..41a2796e 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..9b442b4a 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..3c27fb9e Binary files /dev/null and b/app_sale_superbar/static/description/usea.jpg 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..0758b3a4 --- /dev/null +++ b/app_sale_superbar/views/sale_order_views.xml @@ -0,0 +1,45 @@ + + + + + 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..86764a0e --- /dev/null +++ b/app_stock_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_stock_superbar/__manifest__.py b/app_stock_superbar/__manifest__.py new file mode 100644 index 00000000..90b52644 --- /dev/null +++ b/app_stock_superbar/__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': "Stock Superbar ztree, parent children tree", + 'version': '12.19.04.22', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.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', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/stock_location_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_stock_superbar/hooks.py b/app_stock_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_stock_superbar/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_stock_superbar/i18n/zh_CN.po b/app_stock_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_stock_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_stock_superbar/models/__init__.py b/app_stock_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_stock_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_stock_superbar/report/__init__.py b/app_stock_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_stock_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_stock_superbar/static/description/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/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..b856e71d 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/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..ea0b7629 --- /dev/null +++ b/app_stock_superbar/static/description/index.html @@ -0,0 +1,181 @@ +
+
+

App ztree widget, for parent children tree list. Demo for stock location.

+

Very useful for parent child relationship, like product category, stock location, hr department

+
+
+ +
+
+
+
+ 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(Need extra module, release soon): +
    +
  • + + 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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ 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/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_views.xml b/app_stock_superbar/views/stock_location_views.xml new file mode 100644 index 00000000..24a71ca2 --- /dev/null +++ b/app_stock_superbar/views/stock_location_views.xml @@ -0,0 +1,47 @@ + + + + + stock.picking.internal.search.superbar + stock.picking + + + + + + + + + + + + + stock.location.search.superbar + stock.location + + + + + + + + + + + + + sstock.picking.type.filter.superbar + stock.picking.type + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_ztree/__init__.py b/app_stock_ztree/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_stock_ztree/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_stock_ztree/__manifest__.py b/app_stock_ztree/__manifest__.py new file mode 100644 index 00000000..3b146b83 --- /dev/null +++ b/app_stock_ztree/__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': "app stock location ztree, parent children tree", + 'version': '10.19.05.15', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Use for parent children tree list select navigator. stock location tree. + 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', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/stock_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_stock_ztree/hooks.py b/app_stock_ztree/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_stock_ztree/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_stock_ztree/i18n/zh_CN.po b/app_stock_ztree/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_stock_ztree/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_ztree/models/__init__.py b/app_stock_ztree/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_stock_ztree/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_stock_ztree/report/__init__.py b/app_stock_ztree/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_stock_ztree/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_stock_ztree/static/description/banner.gif b/app_stock_ztree/static/description/banner.gif new file mode 100644 index 00000000..ac3c0327 Binary files /dev/null and b/app_stock_ztree/static/description/banner.gif differ diff --git a/app_stock_ztree/static/description/demo1.jpg b/app_stock_ztree/static/description/demo1.jpg new file mode 100644 index 00000000..fd538628 Binary files /dev/null and b/app_stock_ztree/static/description/demo1.jpg differ diff --git a/app_stock_ztree/static/description/demo11.jpg b/app_stock_ztree/static/description/demo11.jpg new file mode 100644 index 00000000..72ad356b Binary files /dev/null and b/app_stock_ztree/static/description/demo11.jpg differ diff --git a/app_stock_ztree/static/description/demo12.jpg b/app_stock_ztree/static/description/demo12.jpg new file mode 100644 index 00000000..ecc58186 Binary files /dev/null and b/app_stock_ztree/static/description/demo12.jpg differ diff --git a/app_stock_ztree/static/description/demo2.jpg b/app_stock_ztree/static/description/demo2.jpg new file mode 100644 index 00000000..b856e71d Binary files /dev/null and b/app_stock_ztree/static/description/demo2.jpg differ diff --git a/app_stock_ztree/static/description/demo3.jpg b/app_stock_ztree/static/description/demo3.jpg new file mode 100644 index 00000000..e82b0990 Binary files /dev/null and b/app_stock_ztree/static/description/demo3.jpg differ diff --git a/app_stock_ztree/static/description/demo4.jpg b/app_stock_ztree/static/description/demo4.jpg new file mode 100644 index 00000000..4a4abce1 Binary files /dev/null and b/app_stock_ztree/static/description/demo4.jpg differ diff --git a/app_stock_ztree/static/description/demo5.jpg b/app_stock_ztree/static/description/demo5.jpg new file mode 100644 index 00000000..849b7841 Binary files /dev/null and b/app_stock_ztree/static/description/demo5.jpg differ diff --git a/app_stock_ztree/static/description/icon.png b/app_stock_ztree/static/description/icon.png new file mode 100644 index 00000000..57e223d0 Binary files /dev/null and b/app_stock_ztree/static/description/icon.png differ diff --git a/app_stock_ztree/static/description/index.html b/app_stock_ztree/static/description/index.html new file mode 100644 index 00000000..ea0b7629 --- /dev/null +++ b/app_stock_ztree/static/description/index.html @@ -0,0 +1,181 @@ +
+
+

App ztree widget, for parent children tree list. Demo for stock location.

+

Very useful for parent child relationship, like product category, stock location, hr department

+
+
+ +
+
+
+
+ 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(Need extra module, release soon): +
    +
  • + + 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

+ + guohuadeng@hotmail.com +

+ Via QQ: 300883

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+ + https://www.sunpop.cn +
+
+
+
+ diff --git a/app_stock_ztree/static/description/setup1.jpg b/app_stock_ztree/static/description/setup1.jpg new file mode 100644 index 00000000..d5ade2b1 Binary files /dev/null and b/app_stock_ztree/static/description/setup1.jpg differ diff --git a/app_stock_ztree/static/img/icon_sunpop.png b/app_stock_ztree/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_stock_ztree/static/img/icon_sunpop.png differ diff --git a/app_stock_ztree/static/img/logo_sunpop.png b/app_stock_ztree/static/img/logo_sunpop.png new file mode 100644 index 00000000..90cbe0e2 Binary files /dev/null and b/app_stock_ztree/static/img/logo_sunpop.png differ diff --git a/app_stock_ztree/views/stock_views.xml b/app_stock_ztree/views/stock_views.xml new file mode 100644 index 00000000..c32a7337 --- /dev/null +++ b/app_stock_ztree/views/stock_views.xml @@ -0,0 +1,17 @@ + + + + + app.stock.location.form + stock.location + + + + + ztree_select + location_id + + + + + \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 00000000..f7fc09c4 --- /dev/null +++ b/readme.md @@ -0,0 +1,2 @@ +# end of life of odoo 10 addons support +odoo10版本的插件不再更新 \ No newline at end of file