diff --git a/app_account_superbar/static/description/index.html b/app_account_superbar/static/description/index.html index 20b9e6e4..3f643433 100644 --- a/app_account_superbar/static/description/index.html +++ b/app_account_superbar/static/description/index.html @@ -2,7 +2,7 @@

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.

@@ -29,45 +29,45 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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(Extra pay for support). @@ -84,7 +84,7 @@

    So Easy to navigator and search any data.

    Product by category or type in kanban view

    - +
  • @@ -155,13 +155,13 @@

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

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

    diff --git a/app_account_superbar_chinese/__init__.py b/app_account_superbar_chinese/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_account_superbar_chinese/__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_chinese/__manifest__.py b/app_account_superbar_chinese/__manifest__.py new file mode 100644 index 00000000..3b330aac --- /dev/null +++ b/app_account_superbar_chinese/__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 account superbar navigator for chinese account.", + 'version': '13.19.10.16', + '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': [ + 'l10n_cn_standard_lastest', + 'app_account_superbar', + ], + '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_chinese/hooks.py b/app_account_superbar_chinese/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_account_superbar_chinese/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_account_superbar_chinese/i18n/zh_CN.po b/app_account_superbar_chinese/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_account_superbar_chinese/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_chinese/models/__init__.py b/app_account_superbar_chinese/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_superbar_chinese/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_superbar_chinese/report/__init__.py b/app_account_superbar_chinese/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_account_superbar_chinese/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_account_superbar_chinese/static/description/account1.jpg b/app_account_superbar_chinese/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_account_superbar_chinese/static/description/account1.jpg differ diff --git a/app_account_superbar_chinese/static/description/banner.png b/app_account_superbar_chinese/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_account_superbar_chinese/static/description/banner.png differ diff --git a/app_account_superbar_chinese/static/description/base1.jpg b/app_account_superbar_chinese/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base1.jpg differ diff --git a/app_account_superbar_chinese/static/description/base2.jpg b/app_account_superbar_chinese/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_account_superbar_chinese/static/description/base2.jpg differ diff --git a/app_account_superbar_chinese/static/description/base3.jpg b/app_account_superbar_chinese/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base3.jpg differ diff --git a/app_account_superbar_chinese/static/description/base4.jpg b/app_account_superbar_chinese/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base4.jpg differ diff --git a/app_account_superbar_chinese/static/description/base5.jpg b/app_account_superbar_chinese/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_account_superbar_chinese/static/description/base5.jpg differ diff --git a/app_account_superbar_chinese/static/description/base6.jpg b/app_account_superbar_chinese/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base6.jpg differ diff --git a/app_account_superbar_chinese/static/description/base7.jpg b/app_account_superbar_chinese/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base7.jpg differ diff --git a/app_account_superbar_chinese/static/description/base8.jpg b/app_account_superbar_chinese/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base8.jpg differ diff --git a/app_account_superbar_chinese/static/description/base9.jpg b/app_account_superbar_chinese/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_account_superbar_chinese/static/description/base9.jpg differ diff --git a/app_account_superbar_chinese/static/description/contacts1.jpg b/app_account_superbar_chinese/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_account_superbar_chinese/static/description/contacts1.jpg differ diff --git a/app_account_superbar_chinese/static/description/crm1.jpg b/app_account_superbar_chinese/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_account_superbar_chinese/static/description/crm1.jpg differ diff --git a/app_account_superbar_chinese/static/description/demo2.jpg b/app_account_superbar_chinese/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_account_superbar_chinese/static/description/demo2.jpg differ diff --git a/app_account_superbar_chinese/static/description/demo_module1.jpg b/app_account_superbar_chinese/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_account_superbar_chinese/static/description/demo_module1.jpg differ diff --git a/app_account_superbar_chinese/static/description/demo_module2.jpg b/app_account_superbar_chinese/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_account_superbar_chinese/static/description/demo_module2.jpg differ diff --git a/app_account_superbar_chinese/static/description/hr1.jpg b/app_account_superbar_chinese/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_account_superbar_chinese/static/description/hr1.jpg differ diff --git a/app_account_superbar_chinese/static/description/hr2.gif b/app_account_superbar_chinese/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_account_superbar_chinese/static/description/hr2.gif differ diff --git a/app_account_superbar_chinese/static/description/icon.png b/app_account_superbar_chinese/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_account_superbar_chinese/static/description/icon.png differ diff --git a/app_account_superbar_chinese/static/description/index.html b/app_account_superbar_chinese/static/description/index.html new file mode 100644 index 00000000..3f643433 --- /dev/null +++ b/app_account_superbar_chinese/static/description/index.html @@ -0,0 +1,294 @@ +
    +
    +

    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.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • 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_chinese/static/description/mrp1.gif b/app_account_superbar_chinese/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_account_superbar_chinese/static/description/mrp1.gif differ diff --git a/app_account_superbar_chinese/static/description/mrp1.jpg b/app_account_superbar_chinese/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_account_superbar_chinese/static/description/mrp1.jpg differ diff --git a/app_account_superbar_chinese/static/description/pos1.jpg b/app_account_superbar_chinese/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_account_superbar_chinese/static/description/pos1.jpg differ diff --git a/app_account_superbar_chinese/static/description/pos2.jpg b/app_account_superbar_chinese/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_account_superbar_chinese/static/description/pos2.jpg differ diff --git a/app_account_superbar_chinese/static/description/pos3.jpg b/app_account_superbar_chinese/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_account_superbar_chinese/static/description/pos3.jpg differ diff --git a/app_account_superbar_chinese/static/description/product1.jpg b/app_account_superbar_chinese/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_account_superbar_chinese/static/description/product1.jpg differ diff --git a/app_account_superbar_chinese/static/description/purchase1.jpg b/app_account_superbar_chinese/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_account_superbar_chinese/static/description/purchase1.jpg differ diff --git a/app_account_superbar_chinese/static/description/sale1.jpg b/app_account_superbar_chinese/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_account_superbar_chinese/static/description/sale1.jpg differ diff --git a/app_account_superbar_chinese/static/description/searchmore.jpg b/app_account_superbar_chinese/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_account_superbar_chinese/static/description/searchmore.jpg differ diff --git a/app_account_superbar_chinese/static/description/stock1.jpg b/app_account_superbar_chinese/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_account_superbar_chinese/static/description/stock1.jpg differ diff --git a/app_account_superbar_chinese/static/description/superbar.gif b/app_account_superbar_chinese/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_account_superbar_chinese/static/description/superbar.gif differ diff --git a/app_account_superbar_chinese/static/description/superbar_use.gif b/app_account_superbar_chinese/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_account_superbar_chinese/static/description/superbar_use.gif differ diff --git a/app_account_superbar_chinese/static/description/superbar_use.png b/app_account_superbar_chinese/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_account_superbar_chinese/static/description/superbar_use.png differ diff --git a/app_account_superbar_chinese/static/description/use.jpg b/app_account_superbar_chinese/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_account_superbar_chinese/static/description/use.jpg differ diff --git a/app_account_superbar_chinese/static/description/use1.jpg b/app_account_superbar_chinese/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_account_superbar_chinese/static/description/use1.jpg differ diff --git a/app_account_superbar_chinese/static/description/use2.jpg b/app_account_superbar_chinese/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use2.jpg differ diff --git a/app_account_superbar_chinese/static/description/use3.jpg b/app_account_superbar_chinese/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use3.jpg differ diff --git a/app_account_superbar_chinese/static/description/use4.jpg b/app_account_superbar_chinese/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use4.jpg differ diff --git a/app_account_superbar_chinese/static/description/use5.jpg b/app_account_superbar_chinese/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use5.jpg differ diff --git a/app_account_superbar_chinese/static/description/use6.jpg b/app_account_superbar_chinese/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use6.jpg differ diff --git a/app_account_superbar_chinese/static/description/use7.jpg b/app_account_superbar_chinese/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_account_superbar_chinese/static/description/use7.jpg differ diff --git a/app_account_superbar_chinese/static/description/use8.jpg b/app_account_superbar_chinese/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_account_superbar_chinese/static/description/use8.jpg differ diff --git a/app_account_superbar_chinese/static/description/use9.jpg b/app_account_superbar_chinese/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_account_superbar_chinese/static/description/use9.jpg differ diff --git a/app_account_superbar_chinese/static/description/usea.jpg b/app_account_superbar_chinese/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_account_superbar_chinese/static/description/usea.jpg differ diff --git a/app_account_superbar_chinese/static/description/z_hr1.gif b/app_account_superbar_chinese/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_account_superbar_chinese/static/description/z_hr1.gif differ diff --git a/app_account_superbar_chinese/static/description/z_product1.gif b/app_account_superbar_chinese/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_account_superbar_chinese/static/description/z_product1.gif differ diff --git a/app_account_superbar_chinese/static/description/z_stock1.gif b/app_account_superbar_chinese/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_account_superbar_chinese/static/description/z_stock1.gif differ diff --git a/app_account_superbar_chinese/views/account_views.xml b/app_account_superbar_chinese/views/account_views.xml new file mode 100644 index 00000000..3779d52f --- /dev/null +++ b/app_account_superbar_chinese/views/account_views.xml @@ -0,0 +1,26 @@ + + + + + account.account.search.superbar + account.account + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_account_ztree/static/description/index.html b/app_account_ztree/static/description/index.html index e88bceaf..caa58e80 100644 --- a/app_account_ztree/static/description/index.html +++ b/app_account_ztree/static/description/index.html @@ -47,19 +47,19 @@
    diff --git a/app_base/__init__.py b/app_base/__init__.py new file mode 100644 index 00000000..a1125039 --- /dev/null +++ b/app_base/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import pre_init_hook +from .hooks import post_init_hook +from .hooks import uninstall_hook \ No newline at end of file diff --git a/app_base/__manifest__.py b/app_base/__manifest__.py new file mode 100644 index 00000000..7fad9a68 --- /dev/null +++ b/app_base/__manifest__.py @@ -0,0 +1,86 @@ +# -*- coding: utf-8 -*- + +# Created on 2019-09-02 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo12在线用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/12.0/zh_CN/index.html + +# Odoo12在线开发者手册(长期更新) +# https://www.sunpop.cn/documentation/12.0/index.html + +# Odoo10在线中文用户手册(长期更新) +# 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/ + +############################################################################## +# Copyright (C) 2009-TODAY Sunpop.cn Ltd. https://www.sunpop.cn +# Author: Ivan Deng,300883@qq.com +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# See . +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +############################################################################## + +{ + 'name': "Base Pro, 基础增强", + 'version': '13.19.10.16', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'price': 0.00, + 'currency': 'EUR', + 'images': ['static/description/banner.png'], + 'depends': [ + 'sale', + 'purchase', + ], + 'summary': """ + Odoo App of Sunpop.cn + """, + 'description': """ + Support Odoo 13,12, 11, Enterprise and Community Edition + 1. Add customer, supplier field to partner + 2. + 3. Multi-language Support. + 4. Multi-Company Support. + 5. Support Odoo 13,12, 11, Enterprise and Community Edition + ========== + 1. + 2. + 3. 多语言支持 + 4. 多公司支持 + 5. Odoo 12, 11, 企业版,社区版,多版本支持 + """, + 'data': [ + # 'security/*.xml', + # 'security/ir.model.access.csv.csv', + # 'data/.xml', + 'views/res_partner_views.xml', + # 'report/.xml', + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'demo': [], + 'test': [], + 'css': [], + 'js': [], + 'pre_init_hook': 'pre_init_hook', + 'post_init_hook': 'post_init_hook', + 'uninstall_hook': 'uninstall_hook', + 'installable': True, + 'application': True, + 'auto_install': True, +} diff --git a/app_base/hooks.py b/app_base/hooks.py new file mode 100644 index 00000000..3ba52cbf --- /dev/null +++ b/app_base/hooks.py @@ -0,0 +1,32 @@ +# -*- 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: + +from odoo import api, SUPERUSER_ID, _ + + +def pre_init_hook(cr): + pass + # cr.execute("") + +def post_init_hook(cr, registry): + pass + # cr.execute("") + +def uninstall_hook(cr, registry): + pass + # cr.execute("") + diff --git a/app_base/i18n/zh_CN.po b/app_base/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_base/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_base/models/__init__.py b/app_base/models/__init__.py new file mode 100644 index 00000000..b4164e2c --- /dev/null +++ b/app_base/models/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Part of Sunpop.cn. See LICENSE file for full copyright and licensing details. + +# Created on 2019-04-20 +# author: 广州尚鹏,http://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo12在线用户手册(长期更新) +# http://www.sunpop.cn/documentation/user/12.0/en/index.html + +# Odoo12在线开发者手册(长期更新) +# http://www.sunpop.cn/documentation/12.0/index.html + +# Odoo10在线中文用户手册(长期更新) +# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# http://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# http://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +from . import res_partner + diff --git a/app_base/models/res_partner.py b/app_base/models/res_partner.py new file mode 100644 index 00000000..d65a5aa9 --- /dev/null +++ b/app_base/models/res_partner.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import base64 +import collections +import datetime +import hashlib +import pytz +import threading +import re + +from email.utils import formataddr + +import requests +from lxml import etree +from werkzeug import urls + +from odoo import api, fields, models, tools, SUPERUSER_ID, _ +from odoo.modules import get_module_resource +from odoo.osv.expression import get_unaccent_wrapper +from odoo.exceptions import UserError, ValidationError +from odoo.tools import pycompat + + +class Partner(models.Model): + _inherit = 'res.partner' + customer = fields.Boolean(string='Is a Customer', default=True, + help="Check this box if this contact is a customer. It can be selected in sales orders.") + supplier = fields.Boolean(string='Is a Vendor', + help="Check this box if this contact is a vendor. It can be selected in purchase orders.") diff --git a/app_base/report/__init__.py b/app_base/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_base/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_base/security/app_security.xml b/app_base/security/app_security.xml new file mode 100644 index 00000000..a4b85605 --- /dev/null +++ b/app_base/security/app_security.xml @@ -0,0 +1,51 @@ + + + + + + acc_module_user + + + + + + + + + + App... + Helps you manage your ... + 8 + + + + + App User + + + The user will be able to ... + + + + + App Admin + + + The user will be able to config ... + + + + + + + + + + Users are allowed to access their own m/// + + ['|', ('partner_id', 'in', [user.partner_id.id]), ('user_id.id', '=', user.id)] + + + + + diff --git a/app_base/security/ir.model.access.csv b/app_base/security/ir.model.access.csv new file mode 100644 index 00000000..58262d44 --- /dev/null +++ b/app_base/security/ir.model.access.csv @@ -0,0 +1 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink \ No newline at end of file diff --git a/app_base/static/description/banner.png b/app_base/static/description/banner.png new file mode 100644 index 00000000..3a0a3c4b Binary files /dev/null and b/app_base/static/description/banner.png differ diff --git a/app_base/static/description/icon.png b/app_base/static/description/icon.png new file mode 100644 index 00000000..a950c809 Binary files /dev/null and b/app_base/static/description/icon.png differ diff --git a/app_base/static/description/index.html b/app_base/static/description/index.html new file mode 100644 index 00000000..3acdf658 --- /dev/null +++ b/app_base/static/description/index.html @@ -0,0 +1,95 @@ +
    +
    +
    +

    +

    +
    +

    Lastest update: v12.19.04.28

    +
    + +
    +
    +
    + Key features: +
      +
    • + + Put key function here. +
    • +
    • + + 3. Multi-language Support. +
    • +
    • + + 4. Multi-Company Support. +
    • +
    • + + 5. Support Odoo 13,12, 11, Enterprise and Community Edition. +
    • +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    So Easy to navigator and search any data.

    +

    +
    + +
    +
    +
    + +
    +
    +

    Multi-language Support..

    +

    +
    + +
    +
    +
    + +
    +
    +
    +

    Technical Help & Support

    +
    +
    +
    +

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

    + + guohuadeng@hotmail.com +

    + Via QQ: 300883

    + + 300883@qq.com +
    +
    +

    + Visit our website for more support.

    + + https://www.sunpop.cn +
    +
    +
    +
    +

    More Powerful addons, Make your odoo very easy to use, easy customize: + Supop.cn Odoo Addons +

    +
    +
    + diff --git a/app_base/static/img/icon_sunpop.png b/app_base/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_base/static/img/icon_sunpop.png differ diff --git a/app_base/static/img/logo_sunpop.png b/app_base/static/img/logo_sunpop.png new file mode 100644 index 00000000..bc32c24e Binary files /dev/null and b/app_base/static/img/logo_sunpop.png differ diff --git a/app_base/views/product_product_views.xml b/app_base/views/product_product_views.xml new file mode 100644 index 00000000..d8aa0a84 --- /dev/null +++ b/app_base/views/product_product_views.xml @@ -0,0 +1,17 @@ + + + + + + app.product.product.tree + product.product + + + + + + + + + diff --git a/app_base/views/res_partner_views.xml b/app_base/views/res_partner_views.xml new file mode 100644 index 00000000..80cde94a --- /dev/null +++ b/app_base/views/res_partner_views.xml @@ -0,0 +1,19 @@ + + + + + res.partner.form + res.partner + + + + + + + + + + + + + diff --git a/app_base_superbar/__init__.py b/app_base_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_base_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_base_superbar/__manifest__.py b/app_base_superbar/__manifest__.py new file mode 100644 index 00000000..aa823841 --- /dev/null +++ b/app_base_superbar/__manifest__.py @@ -0,0 +1,72 @@ +# -*- 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': "Easy Admin navigator, quick search filter", + 'version': '13.19.10.16', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 10, + 'summary': """ + menu admin, fields admin, action admin, views easy admin and search, quick admin navigator by all kind of category. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'web', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + # 'views/res_groups_views.xml', + 'views/ir_actions_act_window_views.xml', + 'views/ir_actions_actions_views.xml', + 'views/ir_actions_report_views.xml', + 'views/ir_actions_server_views.xml', + 'views/ir_attachment_views.xml', + 'views/ir_default_views.xml', + 'views/ir_model_access_views.xml', + 'views/ir_model_constraint_views.xml', + 'views/ir_model_fields_views.xml', + 'views/ir_ui_menu_views.xml', + 'views/ir_ui_view_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_base_superbar/hooks.py b/app_base_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_base_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_base_superbar/i18n/zh_CN.po b/app_base_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_base_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_base_superbar/models/__init__.py b/app_base_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_base_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_base_superbar/report/__init__.py b/app_base_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_base_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_base_superbar/static/description/account1.jpg b/app_base_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_base_superbar/static/description/account1.jpg differ diff --git a/app_base_superbar/static/description/banner.gif b/app_base_superbar/static/description/banner.gif new file mode 100644 index 00000000..61fd49d2 Binary files /dev/null and b/app_base_superbar/static/description/banner.gif differ diff --git a/app_base_superbar/static/description/banner.png b/app_base_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_base_superbar/static/description/banner.png differ diff --git a/app_base_superbar/static/description/base1.jpg b/app_base_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_base_superbar/static/description/base1.jpg differ diff --git a/app_base_superbar/static/description/base2.jpg b/app_base_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_base_superbar/static/description/base2.jpg differ diff --git a/app_base_superbar/static/description/base3.jpg b/app_base_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_base_superbar/static/description/base3.jpg differ diff --git a/app_base_superbar/static/description/base4.jpg b/app_base_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_base_superbar/static/description/base4.jpg differ diff --git a/app_base_superbar/static/description/base5.jpg b/app_base_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_base_superbar/static/description/base5.jpg differ diff --git a/app_base_superbar/static/description/base6.jpg b/app_base_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_base_superbar/static/description/base6.jpg differ diff --git a/app_base_superbar/static/description/base7.jpg b/app_base_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_base_superbar/static/description/base7.jpg differ diff --git a/app_base_superbar/static/description/base8.jpg b/app_base_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_base_superbar/static/description/base8.jpg differ diff --git a/app_base_superbar/static/description/base9.jpg b/app_base_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_base_superbar/static/description/base9.jpg differ diff --git a/app_base_superbar/static/description/contacts1.jpg b/app_base_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_base_superbar/static/description/contacts1.jpg differ diff --git a/app_base_superbar/static/description/crm1.jpg b/app_base_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_base_superbar/static/description/crm1.jpg differ diff --git a/app_base_superbar/static/description/demo2.jpg b/app_base_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_base_superbar/static/description/demo2.jpg differ diff --git a/app_base_superbar/static/description/demo_module1.jpg b/app_base_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_base_superbar/static/description/demo_module1.jpg differ diff --git a/app_base_superbar/static/description/demo_module2.jpg b/app_base_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_base_superbar/static/description/demo_module2.jpg differ diff --git a/app_base_superbar/static/description/hr1.jpg b/app_base_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_base_superbar/static/description/hr1.jpg differ diff --git a/app_base_superbar/static/description/hr2.gif b/app_base_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_base_superbar/static/description/hr2.gif differ diff --git a/app_base_superbar/static/description/icon.png b/app_base_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_base_superbar/static/description/icon.png differ diff --git a/app_base_superbar/static/description/index.html b/app_base_superbar/static/description/index.html new file mode 100644 index 00000000..de3769c9 --- /dev/null +++ b/app_base_superbar/static/description/index.html @@ -0,0 +1,500 @@ +
    +
    +

    Quick Admin navigator, Superbar with Parent Children Tree

    +

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

    +

    Menu admin by menu category

    +
    + +
    +

    Actions admin by type and model

    +
    + +
    +
    + +
    +
    + +
    +

    Report admin by type and model

    +
    + +
    +

    Views admin by type and model

    +
    + +
    +

    Model Constraints admin by module and model

    +
    + +
    +

    Attachment admin by type and creator

    +
    + +
    +

    The following is the feather of extra paid Apps, which support this apps.

    +
    +
    + +
    +
    +

    App Advance Search Sidebar with Hierarchy Parent Children Tree

    +
    +
    +
    +
    +
    + +
    +

    Advance Search, Advance Filter with Parent Children Tree.

    +

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

    +

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

    +

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

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

     

    +

    So Easy to navigator and search any data.

    +

    Product by category or type in kanban view

    +
    + +
    +
    +
    + +
    +
    +
    +
    +

     

    +

    Filter product or any data in search more windows

    +
    + +
    +
    +
    +
    +
    +

    Free to Use in product category.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in HR employee.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in CRM.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in MRP.

    +
    + +
    +
    +
    + +
    +
    +

    Use in stock.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

    Apps Navigator by Category, Module Navigator is ready.

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

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

    +

    Ready for product category Hierarchy Parent tree in m2o select

    +
    + +
    +

    Ready for Stock Location Hierarchy Parent tree in m2o select

    +
    + +
    +

    Ready for Hr Department Hierarchy Parent tree in m2o select

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • In search view xml, Write the <superbar> tag,
    • +
    • position: [left, right]
    • +
    • view_types: [kanban,tree, pivot, graph view.]
    • +
    • parent_key: key field name of parent child relation. leave blank would auto set.
    • +
    • level: how many level to expend the tree for initialize. Default is 2
    • +
    • limit: how many record to show ztree. Default is 16
    • +
    • order: the field name to order by
    • +
    • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
    • +
    • --
    • +
    • 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_base_superbar/static/description/mail1.jpg b/app_base_superbar/static/description/mail1.jpg new file mode 100644 index 00000000..1595fe83 Binary files /dev/null and b/app_base_superbar/static/description/mail1.jpg differ diff --git a/app_base_superbar/static/description/mail2.jpg b/app_base_superbar/static/description/mail2.jpg new file mode 100644 index 00000000..ba7a9711 Binary files /dev/null and b/app_base_superbar/static/description/mail2.jpg differ diff --git a/app_base_superbar/static/description/mail3.jpg b/app_base_superbar/static/description/mail3.jpg new file mode 100644 index 00000000..908f028a Binary files /dev/null and b/app_base_superbar/static/description/mail3.jpg differ diff --git a/app_base_superbar/static/description/mail4.jpg b/app_base_superbar/static/description/mail4.jpg new file mode 100644 index 00000000..049623f8 Binary files /dev/null and b/app_base_superbar/static/description/mail4.jpg differ diff --git a/app_base_superbar/static/description/mrp1.gif b/app_base_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_base_superbar/static/description/mrp1.gif differ diff --git a/app_base_superbar/static/description/mrp1.jpg b/app_base_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_base_superbar/static/description/mrp1.jpg differ diff --git a/app_base_superbar/static/description/pos1.jpg b/app_base_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_base_superbar/static/description/pos1.jpg differ diff --git a/app_base_superbar/static/description/pos2.jpg b/app_base_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_base_superbar/static/description/pos2.jpg differ diff --git a/app_base_superbar/static/description/pos3.jpg b/app_base_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_base_superbar/static/description/pos3.jpg differ diff --git a/app_base_superbar/static/description/product1.jpg b/app_base_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_base_superbar/static/description/product1.jpg differ diff --git a/app_base_superbar/static/description/purchase1.jpg b/app_base_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_base_superbar/static/description/purchase1.jpg differ diff --git a/app_base_superbar/static/description/sale1.jpg b/app_base_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_base_superbar/static/description/sale1.jpg differ diff --git a/app_base_superbar/static/description/searchmore.jpg b/app_base_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_base_superbar/static/description/searchmore.jpg differ diff --git a/app_base_superbar/static/description/stock1.jpg b/app_base_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_base_superbar/static/description/stock1.jpg differ diff --git a/app_base_superbar/static/description/superbar.gif b/app_base_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_base_superbar/static/description/superbar.gif differ diff --git a/app_base_superbar/static/description/superbar_use.gif b/app_base_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_base_superbar/static/description/superbar_use.gif differ diff --git a/app_base_superbar/static/description/superbar_use.png b/app_base_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_base_superbar/static/description/superbar_use.png differ diff --git a/app_base_superbar/static/description/use.jpg b/app_base_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_base_superbar/static/description/use.jpg differ diff --git a/app_base_superbar/static/description/use1.jpg b/app_base_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_base_superbar/static/description/use1.jpg differ diff --git a/app_base_superbar/static/description/use2.jpg b/app_base_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_base_superbar/static/description/use2.jpg differ diff --git a/app_base_superbar/static/description/use3.jpg b/app_base_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_base_superbar/static/description/use3.jpg differ diff --git a/app_base_superbar/static/description/use4.jpg b/app_base_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_base_superbar/static/description/use4.jpg differ diff --git a/app_base_superbar/static/description/use5.jpg b/app_base_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_base_superbar/static/description/use5.jpg differ diff --git a/app_base_superbar/static/description/use6.jpg b/app_base_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_base_superbar/static/description/use6.jpg differ diff --git a/app_base_superbar/static/description/use7.jpg b/app_base_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_base_superbar/static/description/use7.jpg differ diff --git a/app_base_superbar/static/description/use8.jpg b/app_base_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_base_superbar/static/description/use8.jpg differ diff --git a/app_base_superbar/static/description/use9.jpg b/app_base_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_base_superbar/static/description/use9.jpg differ diff --git a/app_base_superbar/static/description/usea.jpg b/app_base_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_base_superbar/static/description/usea.jpg differ diff --git a/app_base_superbar/static/description/z_hr1.gif b/app_base_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_base_superbar/static/description/z_hr1.gif differ diff --git a/app_base_superbar/static/description/z_product1.gif b/app_base_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_base_superbar/static/description/z_product1.gif differ diff --git a/app_base_superbar/static/description/z_stock1.gif b/app_base_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_base_superbar/static/description/z_stock1.gif differ diff --git a/app_base_superbar/views/ir_actions_act_window_views.xml b/app_base_superbar/views/ir_actions_act_window_views.xml new file mode 100644 index 00000000..5242246e --- /dev/null +++ b/app_base_superbar/views/ir_actions_act_window_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.actions.windows.search + ir.actions.act_window + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_actions_actions_views.xml b/app_base_superbar/views/ir_actions_actions_views.xml new file mode 100644 index 00000000..6cbd7ccd --- /dev/null +++ b/app_base_superbar/views/ir_actions_actions_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.actions.actions.search + ir.actions.actions + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_actions_report_views.xml b/app_base_superbar/views/ir_actions_report_views.xml new file mode 100644 index 00000000..b36725ef --- /dev/null +++ b/app_base_superbar/views/ir_actions_report_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.actions.report.search + ir.actions.report + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_actions_server_views.xml b/app_base_superbar/views/ir_actions_server_views.xml new file mode 100644 index 00000000..f93cb23a --- /dev/null +++ b/app_base_superbar/views/ir_actions_server_views.xml @@ -0,0 +1,18 @@ + + + + app.ir.actions.server.search + ir.actions.server + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_attachment_views.xml b/app_base_superbar/views/ir_attachment_views.xml new file mode 100644 index 00000000..189e6555 --- /dev/null +++ b/app_base_superbar/views/ir_attachment_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.attachment.search + ir.attachment + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_default_views.xml b/app_base_superbar/views/ir_default_views.xml new file mode 100644 index 00000000..3fa40a98 --- /dev/null +++ b/app_base_superbar/views/ir_default_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.default.search + ir.default + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_model_access_views.xml b/app_base_superbar/views/ir_model_access_views.xml new file mode 100644 index 00000000..60c2a37e --- /dev/null +++ b/app_base_superbar/views/ir_model_access_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.model.access.search + ir.model.access + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_model_constraint_views.xml b/app_base_superbar/views/ir_model_constraint_views.xml new file mode 100644 index 00000000..3640511e --- /dev/null +++ b/app_base_superbar/views/ir_model_constraint_views.xml @@ -0,0 +1,18 @@ + + + + app.ir.model.constraint.search + ir.model.constraint + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_model_fields_views.xml b/app_base_superbar/views/ir_model_fields_views.xml new file mode 100644 index 00000000..3aa2d5dd --- /dev/null +++ b/app_base_superbar/views/ir_model_fields_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.model.fields.search + ir.model.fields + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_ui_menu_views.xml b/app_base_superbar/views/ir_ui_menu_views.xml new file mode 100644 index 00000000..6d950b63 --- /dev/null +++ b/app_base_superbar/views/ir_ui_menu_views.xml @@ -0,0 +1,16 @@ + + + + app.ir.ui.menu.search + ir.ui.menu + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/ir_ui_view_views.xml b/app_base_superbar/views/ir_ui_view_views.xml new file mode 100644 index 00000000..e7557206 --- /dev/null +++ b/app_base_superbar/views/ir_ui_view_views.xml @@ -0,0 +1,17 @@ + + + + app.ir.ui.menu.search + ir.ui.view + + + + + + + + + + + + \ No newline at end of file diff --git a/app_base_superbar/views/res_groups_views.xml b/app_base_superbar/views/res_groups_views.xml new file mode 100644 index 00000000..97500fc0 --- /dev/null +++ b/app_base_superbar/views/res_groups_views.xml @@ -0,0 +1,16 @@ + + + + app.res.groups.search + res.groups + + + + + + + + + + + \ No newline at end of file diff --git a/app_contacts_superbar/static/description/index.html b/app_contacts_superbar/static/description/index.html index 632d4df3..ee1f22b8 100644 --- a/app_contacts_superbar/static/description/index.html +++ b/app_contacts_superbar/static/description/index.html @@ -2,7 +2,7 @@

    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.

    @@ -29,45 +29,45 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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(Extra pay for support). @@ -84,7 +84,7 @@

    So Easy to navigator and search any data.

    Product by category or type in kanban view

    - +
  • @@ -155,13 +155,13 @@

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

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

    diff --git a/app_crm_superbar/static/description/index.html b/app_crm_superbar/static/description/index.html index 26e405c2..6e142f1f 100644 --- a/app_crm_superbar/static/description/index.html +++ b/app_crm_superbar/static/description/index.html @@ -2,7 +2,7 @@

    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.

    @@ -29,47 +29,47 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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 + href="http://www.odoo.com/apps/modules/13.0/app_hr_superbar/" target="_blank"> Click to download.
  • @@ -87,7 +87,7 @@

    So Easy to navigator and search any data.

    Product by category or type in kanban view

    - +
  • @@ -167,13 +167,13 @@

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

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

    diff --git a/app_crm_superbar/views/crm_lead_views.xml b/app_crm_superbar/views/crm_lead_views.xml index 3c5f86aa..144104c9 100644 --- a/app_crm_superbar/views/crm_lead_views.xml +++ b/app_crm_superbar/views/crm_lead_views.xml @@ -6,7 +6,7 @@ - + @@ -21,7 +21,7 @@ - + diff --git a/app_hr_superbar/static/description/index.html b/app_hr_superbar/static/description/index.html index 12855cfe..9e8c311a 100644 --- a/app_hr_superbar/static/description/index.html +++ b/app_hr_superbar/static/description/index.html @@ -9,7 +9,7 @@

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

    Advance Search, Advance Filter with Parent Children Tree.

    @@ -33,54 +33,54 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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 + href="http://www.odoo.com/apps/modules/13.0/app_hr_superbar/" target="_blank"> Click to download.
  • HR employee navigate by department is ready. - + Click to download.
  • @@ -109,7 +109,7 @@

    So Easy to navigator and search any data.

    Product by category or type in kanban view

    - +
    @@ -192,13 +192,13 @@

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

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

    diff --git a/app_hr_ztree/static/description/index.html b/app_hr_ztree/static/description/index.html index e88bceaf..caa58e80 100644 --- a/app_hr_ztree/static/description/index.html +++ b/app_hr_ztree/static/description/index.html @@ -47,19 +47,19 @@
    diff --git a/app_mail_superbar/__init__.py b/app_mail_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_mail_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_mail_superbar/__manifest__.py b/app_mail_superbar/__manifest__.py new file mode 100644 index 00000000..ebbcf325 --- /dev/null +++ b/app_mail_superbar/__manifest__.py @@ -0,0 +1,66 @@ +# -*- 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': "Mail quick navigator,mail filter", + 'version': '13.19.10.16', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 10, + 'summary': """ + mail search, browse all mail by all kind of category. Use for parent children tree list kanban navigator. + ztree widget.Hierarchy Tree.Parent Children relation tree.. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'web', + 'mail', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/mail_channel_partner_views.xml', + 'views/mail_followers_views.xml', + 'views/mail_mail_views.xml', + 'views/mail_message_views.xml', + 'views/mail_tracking_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_mail_superbar/hooks.py b/app_mail_superbar/hooks.py new file mode 100644 index 00000000..7edef364 --- /dev/null +++ b/app_mail_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_mail_superbar/i18n/zh_CN.po b/app_mail_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_mail_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_mail_superbar/models/__init__.py b/app_mail_superbar/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mail_superbar/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mail_superbar/report/__init__.py b/app_mail_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_mail_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_mail_superbar/static/description/account1.jpg b/app_mail_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_mail_superbar/static/description/account1.jpg differ diff --git a/app_mail_superbar/static/description/banner.png b/app_mail_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_mail_superbar/static/description/banner.png differ diff --git a/app_mail_superbar/static/description/base1.jpg b/app_mail_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_mail_superbar/static/description/base1.jpg differ diff --git a/app_mail_superbar/static/description/base2.jpg b/app_mail_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_mail_superbar/static/description/base2.jpg differ diff --git a/app_mail_superbar/static/description/base3.jpg b/app_mail_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_mail_superbar/static/description/base3.jpg differ diff --git a/app_mail_superbar/static/description/base4.jpg b/app_mail_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_mail_superbar/static/description/base4.jpg differ diff --git a/app_mail_superbar/static/description/base5.jpg b/app_mail_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_mail_superbar/static/description/base5.jpg differ diff --git a/app_mail_superbar/static/description/base6.jpg b/app_mail_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_mail_superbar/static/description/base6.jpg differ diff --git a/app_mail_superbar/static/description/base7.jpg b/app_mail_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_mail_superbar/static/description/base7.jpg differ diff --git a/app_mail_superbar/static/description/base8.jpg b/app_mail_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_mail_superbar/static/description/base8.jpg differ diff --git a/app_mail_superbar/static/description/base9.jpg b/app_mail_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_mail_superbar/static/description/base9.jpg differ diff --git a/app_mail_superbar/static/description/contacts1.jpg b/app_mail_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_mail_superbar/static/description/contacts1.jpg differ diff --git a/app_mail_superbar/static/description/crm1.jpg b/app_mail_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_mail_superbar/static/description/crm1.jpg differ diff --git a/app_mail_superbar/static/description/demo2.jpg b/app_mail_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_mail_superbar/static/description/demo2.jpg differ diff --git a/app_mail_superbar/static/description/demo_module1.jpg b/app_mail_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_mail_superbar/static/description/demo_module1.jpg differ diff --git a/app_mail_superbar/static/description/demo_module2.jpg b/app_mail_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_mail_superbar/static/description/demo_module2.jpg differ diff --git a/app_mail_superbar/static/description/hr1.jpg b/app_mail_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_mail_superbar/static/description/hr1.jpg differ diff --git a/app_mail_superbar/static/description/hr2.gif b/app_mail_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_mail_superbar/static/description/hr2.gif differ diff --git a/app_mail_superbar/static/description/icon.png b/app_mail_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_mail_superbar/static/description/icon.png differ diff --git a/app_mail_superbar/static/description/index.html b/app_mail_superbar/static/description/index.html new file mode 100644 index 00000000..0c472b1f --- /dev/null +++ b/app_mail_superbar/static/description/index.html @@ -0,0 +1,486 @@ +
    +
    +

    Mail quick navigator, Superbar with Parent Children Tree

    +

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

    +

    Message navigator

    +
    + +
    +

    Mail navigator

    +
    + +
    +

    Channels Partner navigator

    +
    + +
    +

    Mail navigator

    +
    + +
    +

    The following is the feather of extra paid Apps, which support this apps.

    +
    +
    + +
    +
    +

    App Advance Search Sidebar with Hierarchy Parent Children Tree

    +
    +
    +
    +
    +
    + +
    +

    Advance Search, Advance Filter with Parent Children Tree.

    +

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

    +

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

    +

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

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

     

    +

    So Easy to navigator and search any data.

    +

    Product by category or type in kanban view

    +
    + +
    +
    +
    + +
    +
    +
    +
    +

     

    +

    Filter product or any data in search more windows

    +
    + +
    +
    +
    +
    +
    +

    Free to Use in product category.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in HR employee.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in CRM.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in MRP.

    +
    + +
    +
    +
    + +
    +
    +

    Use in stock.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

    Apps Navigator by Category, Module Navigator is ready.

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

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

    +

    Ready for product category Hierarchy Parent tree in m2o select

    +
    + +
    +

    Ready for Stock Location Hierarchy Parent tree in m2o select

    +
    + +
    +

    Ready for Hr Department Hierarchy Parent tree in m2o select

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • In search view xml, Write the <superbar> tag,
    • +
    • position: [left, right]
    • +
    • view_types: [kanban,tree, pivot, graph view.]
    • +
    • parent_key: key field name of parent child relation. leave blank would auto set.
    • +
    • level: how many level to expend the tree for initialize. Default is 2
    • +
    • limit: how many record to show ztree. Default is 16
    • +
    • order: the field name to order by
    • +
    • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
    • +
    • --
    • +
    • 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_mail_superbar/static/description/mail1.jpg b/app_mail_superbar/static/description/mail1.jpg new file mode 100644 index 00000000..1595fe83 Binary files /dev/null and b/app_mail_superbar/static/description/mail1.jpg differ diff --git a/app_mail_superbar/static/description/mail2.jpg b/app_mail_superbar/static/description/mail2.jpg new file mode 100644 index 00000000..ba7a9711 Binary files /dev/null and b/app_mail_superbar/static/description/mail2.jpg differ diff --git a/app_mail_superbar/static/description/mail3.jpg b/app_mail_superbar/static/description/mail3.jpg new file mode 100644 index 00000000..908f028a Binary files /dev/null and b/app_mail_superbar/static/description/mail3.jpg differ diff --git a/app_mail_superbar/static/description/mail4.jpg b/app_mail_superbar/static/description/mail4.jpg new file mode 100644 index 00000000..049623f8 Binary files /dev/null and b/app_mail_superbar/static/description/mail4.jpg differ diff --git a/app_mail_superbar/static/description/mrp1.gif b/app_mail_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_mail_superbar/static/description/mrp1.gif differ diff --git a/app_mail_superbar/static/description/mrp1.jpg b/app_mail_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_mail_superbar/static/description/mrp1.jpg differ diff --git a/app_mail_superbar/static/description/pos1.jpg b/app_mail_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_mail_superbar/static/description/pos1.jpg differ diff --git a/app_mail_superbar/static/description/pos2.jpg b/app_mail_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_mail_superbar/static/description/pos2.jpg differ diff --git a/app_mail_superbar/static/description/pos3.jpg b/app_mail_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_mail_superbar/static/description/pos3.jpg differ diff --git a/app_mail_superbar/static/description/product1.jpg b/app_mail_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_mail_superbar/static/description/product1.jpg differ diff --git a/app_mail_superbar/static/description/purchase1.jpg b/app_mail_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_mail_superbar/static/description/purchase1.jpg differ diff --git a/app_mail_superbar/static/description/sale1.jpg b/app_mail_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_mail_superbar/static/description/sale1.jpg differ diff --git a/app_mail_superbar/static/description/searchmore.jpg b/app_mail_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_mail_superbar/static/description/searchmore.jpg differ diff --git a/app_mail_superbar/static/description/stock1.jpg b/app_mail_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_mail_superbar/static/description/stock1.jpg differ diff --git a/app_mail_superbar/static/description/superbar.gif b/app_mail_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_mail_superbar/static/description/superbar.gif differ diff --git a/app_mail_superbar/static/description/superbar_use.gif b/app_mail_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_mail_superbar/static/description/superbar_use.gif differ diff --git a/app_mail_superbar/static/description/superbar_use.png b/app_mail_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_mail_superbar/static/description/superbar_use.png differ diff --git a/app_mail_superbar/static/description/use.jpg b/app_mail_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_mail_superbar/static/description/use.jpg differ diff --git a/app_mail_superbar/static/description/use1.jpg b/app_mail_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_mail_superbar/static/description/use1.jpg differ diff --git a/app_mail_superbar/static/description/use2.jpg b/app_mail_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_mail_superbar/static/description/use2.jpg differ diff --git a/app_mail_superbar/static/description/use3.jpg b/app_mail_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_mail_superbar/static/description/use3.jpg differ diff --git a/app_mail_superbar/static/description/use4.jpg b/app_mail_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_mail_superbar/static/description/use4.jpg differ diff --git a/app_mail_superbar/static/description/use5.jpg b/app_mail_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_mail_superbar/static/description/use5.jpg differ diff --git a/app_mail_superbar/static/description/use6.jpg b/app_mail_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_mail_superbar/static/description/use6.jpg differ diff --git a/app_mail_superbar/static/description/use7.jpg b/app_mail_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_mail_superbar/static/description/use7.jpg differ diff --git a/app_mail_superbar/static/description/use8.jpg b/app_mail_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_mail_superbar/static/description/use8.jpg differ diff --git a/app_mail_superbar/static/description/use9.jpg b/app_mail_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_mail_superbar/static/description/use9.jpg differ diff --git a/app_mail_superbar/static/description/usea.jpg b/app_mail_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_mail_superbar/static/description/usea.jpg differ diff --git a/app_mail_superbar/static/description/z_hr1.gif b/app_mail_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_mail_superbar/static/description/z_hr1.gif differ diff --git a/app_mail_superbar/static/description/z_product1.gif b/app_mail_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_mail_superbar/static/description/z_product1.gif differ diff --git a/app_mail_superbar/static/description/z_stock1.gif b/app_mail_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_mail_superbar/static/description/z_stock1.gif differ diff --git a/app_mail_superbar/views/mail_channel_partner_views.xml b/app_mail_superbar/views/mail_channel_partner_views.xml new file mode 100644 index 00000000..d27ad3f3 --- /dev/null +++ b/app_mail_superbar/views/mail_channel_partner_views.xml @@ -0,0 +1,17 @@ + + + + app.mail.channel.partner.search + mail.channel.partner + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_followers_views.xml b/app_mail_superbar/views/mail_followers_views.xml new file mode 100644 index 00000000..23234eda --- /dev/null +++ b/app_mail_superbar/views/mail_followers_views.xml @@ -0,0 +1,18 @@ + + + + app.mail.followers.search + mail.followers + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_mail_views.xml b/app_mail_superbar/views/mail_mail_views.xml new file mode 100644 index 00000000..8bbc0a20 --- /dev/null +++ b/app_mail_superbar/views/mail_mail_views.xml @@ -0,0 +1,17 @@ + + + + app.mail.mail.search + mail.mail + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_message_views.xml b/app_mail_superbar/views/mail_message_views.xml new file mode 100644 index 00000000..ee5c80e6 --- /dev/null +++ b/app_mail_superbar/views/mail_message_views.xml @@ -0,0 +1,18 @@ + + + + app.mail.message.search + mail.message + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mail_superbar/views/mail_tracking_value_views.xml b/app_mail_superbar/views/mail_tracking_value_views.xml new file mode 100644 index 00000000..b8decffc --- /dev/null +++ b/app_mail_superbar/views/mail_tracking_value_views.xml @@ -0,0 +1,16 @@ + + + + app.mail.tracking.value.search + mail.tracking.value + + + + + + + + + + + \ No newline at end of file diff --git a/app_module_superbar/__init__.py b/app_module_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_module_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_module_superbar/__manifest__.py b/app_module_superbar/__manifest__.py new file mode 100644 index 00000000..5c07b1b1 --- /dev/null +++ b/app_module_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': "Apps Navigator by Category, Module Navigator", + 'version': '13.19.10.16', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse Apps by category tree. Browse Module by category. Use for parent children tree list kanban navigator. + Easy to navigator and browse any data. Support Search more list, kanban, pivot, graph view. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'base', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/module_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_module_superbar/hooks.py b/app_module_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_module_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_module_superbar/i18n/zh_CN.po b/app_module_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_module_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_module_superbar/models/__init__.py b/app_module_superbar/models/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_module_superbar/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_module_superbar/report/__init__.py b/app_module_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_module_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_module_superbar/static/description/account1.jpg b/app_module_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_module_superbar/static/description/account1.jpg differ diff --git a/app_module_superbar/static/description/banner.gif b/app_module_superbar/static/description/banner.gif new file mode 100644 index 00000000..48f55f93 Binary files /dev/null and b/app_module_superbar/static/description/banner.gif differ diff --git a/app_module_superbar/static/description/banner.png b/app_module_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_module_superbar/static/description/banner.png differ diff --git a/app_module_superbar/static/description/base1.jpg b/app_module_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_module_superbar/static/description/base1.jpg differ diff --git a/app_module_superbar/static/description/base2.jpg b/app_module_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_module_superbar/static/description/base2.jpg differ diff --git a/app_module_superbar/static/description/base3.jpg b/app_module_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_module_superbar/static/description/base3.jpg differ diff --git a/app_module_superbar/static/description/base4.jpg b/app_module_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_module_superbar/static/description/base4.jpg differ diff --git a/app_module_superbar/static/description/base5.jpg b/app_module_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_module_superbar/static/description/base5.jpg differ diff --git a/app_module_superbar/static/description/base6.jpg b/app_module_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_module_superbar/static/description/base6.jpg differ diff --git a/app_module_superbar/static/description/base7.jpg b/app_module_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_module_superbar/static/description/base7.jpg differ diff --git a/app_module_superbar/static/description/base8.jpg b/app_module_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_module_superbar/static/description/base8.jpg differ diff --git a/app_module_superbar/static/description/base9.jpg b/app_module_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_module_superbar/static/description/base9.jpg differ diff --git a/app_module_superbar/static/description/contacts1.jpg b/app_module_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_module_superbar/static/description/contacts1.jpg differ diff --git a/app_module_superbar/static/description/crm1.jpg b/app_module_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_module_superbar/static/description/crm1.jpg differ diff --git a/app_module_superbar/static/description/demo2.jpg b/app_module_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_module_superbar/static/description/demo2.jpg differ diff --git a/app_module_superbar/static/description/demo_module1.jpg b/app_module_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_module_superbar/static/description/demo_module1.jpg differ diff --git a/app_module_superbar/static/description/demo_module2.jpg b/app_module_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_module_superbar/static/description/demo_module2.jpg differ diff --git a/app_module_superbar/static/description/hr1.jpg b/app_module_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_module_superbar/static/description/hr1.jpg differ diff --git a/app_module_superbar/static/description/hr2.gif b/app_module_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_module_superbar/static/description/hr2.gif differ diff --git a/app_module_superbar/static/description/icon.png b/app_module_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_module_superbar/static/description/icon.png differ diff --git a/app_module_superbar/static/description/index.html b/app_module_superbar/static/description/index.html new file mode 100644 index 00000000..32a6c8ef --- /dev/null +++ b/app_module_superbar/static/description/index.html @@ -0,0 +1,350 @@ +
    +
    +

    Apps Navigator by Category, Module Navigator

    +
    +
    +
    +
    +

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

    +
    +

    Apps Navigator by Category, Module Navigator is ready.

    +
    + +
    +
    + +
    +
    +

    Advance Search, Advance Filter with Parent Children Tree.

    +

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

    +

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

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

     

    +

    So Easy to navigator and search any data.

    +

    Product by category or type in kanban view

    +
    + +
    +
    +
    + +
    +
    +
    +
    +

     

    +

    Filter product or any data in search more windows

    +
    + +
    +
    +
    +
    +
    +

    Free to Use in product category.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in HR employee.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

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

    Technical Help & Support

    +
    +
    +
    +

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

    + + guohuadeng@hotmail.com +

    + Via QQ: 300883

    + + 300883@qq.com +
    +
    +

    + Visit our website for more support.

    + + https://www.sunpop.cn +
    +
    +
    +
    + diff --git a/app_module_superbar/static/description/mrp1.gif b/app_module_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_module_superbar/static/description/mrp1.gif differ diff --git a/app_module_superbar/static/description/mrp1.jpg b/app_module_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_module_superbar/static/description/mrp1.jpg differ diff --git a/app_module_superbar/static/description/pos1.jpg b/app_module_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_module_superbar/static/description/pos1.jpg differ diff --git a/app_module_superbar/static/description/pos2.jpg b/app_module_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_module_superbar/static/description/pos2.jpg differ diff --git a/app_module_superbar/static/description/pos3.jpg b/app_module_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_module_superbar/static/description/pos3.jpg differ diff --git a/app_module_superbar/static/description/product1.jpg b/app_module_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_module_superbar/static/description/product1.jpg differ diff --git a/app_module_superbar/static/description/purchase1.jpg b/app_module_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_module_superbar/static/description/purchase1.jpg differ diff --git a/app_module_superbar/static/description/sale1.jpg b/app_module_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_module_superbar/static/description/sale1.jpg differ diff --git a/app_module_superbar/static/description/searchmore.jpg b/app_module_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_module_superbar/static/description/searchmore.jpg differ diff --git a/app_module_superbar/static/description/stock1.jpg b/app_module_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_module_superbar/static/description/stock1.jpg differ diff --git a/app_module_superbar/static/description/superbar.gif b/app_module_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_module_superbar/static/description/superbar.gif differ diff --git a/app_module_superbar/static/description/superbar_use.gif b/app_module_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.gif differ diff --git a/app_module_superbar/static/description/superbar_use.png b/app_module_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.png differ diff --git a/app_module_superbar/static/description/use.jpg b/app_module_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_module_superbar/static/description/use.jpg differ diff --git a/app_module_superbar/static/description/use1.jpg b/app_module_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_module_superbar/static/description/use1.jpg differ diff --git a/app_module_superbar/static/description/use2.jpg b/app_module_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_module_superbar/static/description/use2.jpg differ diff --git a/app_module_superbar/static/description/use3.jpg b/app_module_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_module_superbar/static/description/use3.jpg differ diff --git a/app_module_superbar/static/description/use4.jpg b/app_module_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_module_superbar/static/description/use4.jpg differ diff --git a/app_module_superbar/static/description/use5.jpg b/app_module_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_module_superbar/static/description/use5.jpg differ diff --git a/app_module_superbar/static/description/use6.jpg b/app_module_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_module_superbar/static/description/use6.jpg differ diff --git a/app_module_superbar/static/description/use7.jpg b/app_module_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_module_superbar/static/description/use7.jpg differ diff --git a/app_module_superbar/static/description/use8.jpg b/app_module_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_module_superbar/static/description/use8.jpg differ diff --git a/app_module_superbar/static/description/use9.jpg b/app_module_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_module_superbar/static/description/use9.jpg differ diff --git a/app_module_superbar/static/description/usea.jpg b/app_module_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_module_superbar/static/description/usea.jpg differ diff --git a/app_module_superbar/static/description/z_hr1.gif b/app_module_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_module_superbar/static/description/z_hr1.gif differ diff --git a/app_module_superbar/static/description/z_product1.gif b/app_module_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_module_superbar/static/description/z_product1.gif differ diff --git a/app_module_superbar/static/description/z_stock1.gif b/app_module_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_module_superbar/static/description/z_stock1.gif differ diff --git a/app_module_superbar/views/module_views.xml b/app_module_superbar/views/module_views.xml new file mode 100644 index 00000000..936e5e03 --- /dev/null +++ b/app_module_superbar/views/module_views.xml @@ -0,0 +1,19 @@ + + + + + ir.module.module.list.select + ir.module.module + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_mrp_superbar/static/description/index.html b/app_mrp_superbar/static/description/index.html index 75e33b20..52f1584b 100644 --- a/app_mrp_superbar/static/description/index.html +++ b/app_mrp_superbar/static/description/index.html @@ -10,7 +10,7 @@

    Advance Search, Advance Filter with Parent Children Tree.

    Buy - + this 1 Advance Search Apps in odoo Store. Get @@ -46,77 +46,77 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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.
  • @@ -136,7 +136,7 @@

    So Easy to navigator and search any data.

    Product by category or type in kanban view

    - +
    @@ -267,13 +267,13 @@

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

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

    diff --git a/app_mrp_superbar/views/mrp_production_views.xml b/app_mrp_superbar/views/mrp_production_views.xml index 96504854..5c26b404 100644 --- a/app_mrp_superbar/views/mrp_production_views.xml +++ b/app_mrp_superbar/views/mrp_production_views.xml @@ -7,7 +7,7 @@ - + diff --git a/app_odoo_customize/static/description/index.html b/app_odoo_customize/static/description/index.html index 7a801bf7..6d7af3d7 100644 --- a/app_odoo_customize/static/description/index.html +++ b/app_odoo_customize/static/description/index.html @@ -4,7 +4,7 @@

    App Odoo Customize

    If you are using odoo enterprise, you can - + get this app for more customize

    @@ -22,7 +22,7 @@
    diff --git a/app_pos_superbar/__init__.py b/app_pos_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_pos_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_pos_superbar/__manifest__.py b/app_pos_superbar/__manifest__.py new file mode 100644 index 00000000..1ffc5c06 --- /dev/null +++ b/app_pos_superbar/__manifest__.py @@ -0,0 +1,65 @@ +# -*- 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 Pos order browse by store salesperson status", + 'version': '13.19.10.16', + 'author': 'Sunpop.cn', + 'category': 'Point of Sale', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 12, + 'summary': """ + Browse pos order by store tree. Use for parent children tree list kanban navigator. + Easy to navigator and browse any data. Support 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': [ + 'point_of_sale', + 'app_product_superbar', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/product_views.xml', + 'views/pos_order_views.xml', + 'views/report_pos_order_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_pos_superbar/hooks.py b/app_pos_superbar/hooks.py new file mode 100644 index 00000000..f7bbfac4 --- /dev/null +++ b/app_pos_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_pos_superbar/i18n/zh_CN.po b/app_pos_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_pos_superbar/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_pos_superbar/models/__init__.py b/app_pos_superbar/models/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_pos_superbar/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_pos_superbar/report/__init__.py b/app_pos_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_pos_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_pos_superbar/static/description/account1.jpg b/app_pos_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_pos_superbar/static/description/account1.jpg differ diff --git a/app_pos_superbar/static/description/banner.gif b/app_pos_superbar/static/description/banner.gif new file mode 100644 index 00000000..3fa07c7f Binary files /dev/null and b/app_pos_superbar/static/description/banner.gif differ diff --git a/app_pos_superbar/static/description/banner.png b/app_pos_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_pos_superbar/static/description/banner.png differ diff --git a/app_pos_superbar/static/description/base1.jpg b/app_pos_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_pos_superbar/static/description/base1.jpg differ diff --git a/app_pos_superbar/static/description/base2.jpg b/app_pos_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_pos_superbar/static/description/base2.jpg differ diff --git a/app_pos_superbar/static/description/base3.jpg b/app_pos_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_pos_superbar/static/description/base3.jpg differ diff --git a/app_pos_superbar/static/description/base4.jpg b/app_pos_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_pos_superbar/static/description/base4.jpg differ diff --git a/app_pos_superbar/static/description/base5.jpg b/app_pos_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_pos_superbar/static/description/base5.jpg differ diff --git a/app_pos_superbar/static/description/base6.jpg b/app_pos_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_pos_superbar/static/description/base6.jpg differ diff --git a/app_pos_superbar/static/description/base7.jpg b/app_pos_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_pos_superbar/static/description/base7.jpg differ diff --git a/app_pos_superbar/static/description/base8.jpg b/app_pos_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_pos_superbar/static/description/base8.jpg differ diff --git a/app_pos_superbar/static/description/base9.jpg b/app_pos_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_pos_superbar/static/description/base9.jpg differ diff --git a/app_pos_superbar/static/description/contacts1.jpg b/app_pos_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_pos_superbar/static/description/contacts1.jpg differ diff --git a/app_pos_superbar/static/description/crm1.jpg b/app_pos_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_pos_superbar/static/description/crm1.jpg differ diff --git a/app_pos_superbar/static/description/demo2.jpg b/app_pos_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_pos_superbar/static/description/demo2.jpg differ diff --git a/app_pos_superbar/static/description/demo_module1.jpg b/app_pos_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_pos_superbar/static/description/demo_module1.jpg differ diff --git a/app_pos_superbar/static/description/demo_module2.jpg b/app_pos_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_pos_superbar/static/description/demo_module2.jpg differ diff --git a/app_pos_superbar/static/description/hr1.jpg b/app_pos_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_pos_superbar/static/description/hr1.jpg differ diff --git a/app_pos_superbar/static/description/hr2.gif b/app_pos_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_pos_superbar/static/description/hr2.gif differ diff --git a/app_pos_superbar/static/description/icon.png b/app_pos_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_pos_superbar/static/description/icon.png differ diff --git a/app_pos_superbar/static/description/index.html b/app_pos_superbar/static/description/index.html new file mode 100644 index 00000000..d07d8525 --- /dev/null +++ b/app_pos_superbar/static/description/index.html @@ -0,0 +1,409 @@ +
    +
    +

    POS 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 20 related apps. + +

    +

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

    +

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

    +
    +
    + Key features: +
      +
    • + + Update: v12.19.05.23, Enhance UI. Add Pos Function. +
    • +
    • + + Easy to show parent children tree for tree, kanban, pivot, graph view.(Note that there would be little different in UI between odoo12,11,10) +
    • +
    • + + 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. + +
    • +
    • + + Pos navigate by category or store 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(Extra pay for support). +
    • +
    +
    +
    +
    +
    + +
    +
    +

     

    +

    So Easy to navigator and search any data.

    +

    Product by category or type in kanban view

    +
    + +
    +
    +
    + +
    +
    +
    +
    +

     

    +

    Filter product or any data in search more windows

    +
    + +
    +
    +
    +
    +
    +

    Free to Use in product category.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in HR employee.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in CRM.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in MRP.

    +
    + +
    +
    +
    + +
    +
    +

    Use in stock.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

    Apps Navigator by Category, Module Navigator is ready.

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

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • 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_pos_superbar/static/description/mrp1.gif b/app_pos_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_pos_superbar/static/description/mrp1.gif differ diff --git a/app_pos_superbar/static/description/mrp1.jpg b/app_pos_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_pos_superbar/static/description/mrp1.jpg differ diff --git a/app_pos_superbar/static/description/pos1.jpg b/app_pos_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_pos_superbar/static/description/pos1.jpg differ diff --git a/app_pos_superbar/static/description/pos2.jpg b/app_pos_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_pos_superbar/static/description/pos2.jpg differ diff --git a/app_pos_superbar/static/description/pos3.jpg b/app_pos_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_pos_superbar/static/description/pos3.jpg differ diff --git a/app_pos_superbar/static/description/product1.jpg b/app_pos_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_pos_superbar/static/description/product1.jpg differ diff --git a/app_pos_superbar/static/description/purchase1.jpg b/app_pos_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_pos_superbar/static/description/purchase1.jpg differ diff --git a/app_pos_superbar/static/description/sale1.jpg b/app_pos_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_pos_superbar/static/description/sale1.jpg differ diff --git a/app_pos_superbar/static/description/searchmore.jpg b/app_pos_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_pos_superbar/static/description/searchmore.jpg differ diff --git a/app_pos_superbar/static/description/stock1.jpg b/app_pos_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_pos_superbar/static/description/stock1.jpg differ diff --git a/app_pos_superbar/static/description/superbar.gif b/app_pos_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_pos_superbar/static/description/superbar.gif differ diff --git a/app_pos_superbar/static/description/superbar_use.gif b/app_pos_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_pos_superbar/static/description/superbar_use.gif differ diff --git a/app_pos_superbar/static/description/use.jpg b/app_pos_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_pos_superbar/static/description/use.jpg differ diff --git a/app_pos_superbar/static/description/use1.jpg b/app_pos_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_pos_superbar/static/description/use1.jpg differ diff --git a/app_pos_superbar/static/description/use2.jpg b/app_pos_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_pos_superbar/static/description/use2.jpg differ diff --git a/app_pos_superbar/static/description/use3.jpg b/app_pos_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_pos_superbar/static/description/use3.jpg differ diff --git a/app_pos_superbar/static/description/use4.jpg b/app_pos_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_pos_superbar/static/description/use4.jpg differ diff --git a/app_pos_superbar/static/description/use5.jpg b/app_pos_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_pos_superbar/static/description/use5.jpg differ diff --git a/app_pos_superbar/static/description/use6.jpg b/app_pos_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_pos_superbar/static/description/use6.jpg differ diff --git a/app_pos_superbar/static/description/use7.jpg b/app_pos_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_pos_superbar/static/description/use7.jpg differ diff --git a/app_pos_superbar/static/description/use8.jpg b/app_pos_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_pos_superbar/static/description/use8.jpg differ diff --git a/app_pos_superbar/static/description/use9.jpg b/app_pos_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_pos_superbar/static/description/use9.jpg differ diff --git a/app_pos_superbar/static/description/usea.jpg b/app_pos_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_pos_superbar/static/description/usea.jpg differ diff --git a/app_pos_superbar/static/description/z_hr1.gif b/app_pos_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_pos_superbar/static/description/z_hr1.gif differ diff --git a/app_pos_superbar/static/description/z_product1.gif b/app_pos_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_pos_superbar/static/description/z_product1.gif differ diff --git a/app_pos_superbar/static/description/z_stock1.gif b/app_pos_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_pos_superbar/static/description/z_stock1.gif differ diff --git a/app_pos_superbar/views/pos_order_views.xml b/app_pos_superbar/views/pos_order_views.xml new file mode 100644 index 00000000..cbdd87b0 --- /dev/null +++ b/app_pos_superbar/views/pos_order_views.xml @@ -0,0 +1,21 @@ + + + + + app.pos.order.list.select + pos.order + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_pos_superbar/views/product_views.xml b/app_pos_superbar/views/product_views.xml new file mode 100644 index 00000000..eb7e7783 --- /dev/null +++ b/app_pos_superbar/views/product_views.xml @@ -0,0 +1,15 @@ + + + + + product.template.search.ztree + product.template + + + + + + + + + \ No newline at end of file diff --git a/app_pos_superbar/views/report_pos_order_views.xml b/app_pos_superbar/views/report_pos_order_views.xml new file mode 100644 index 00000000..06cb1e3d --- /dev/null +++ b/app_pos_superbar/views/report_pos_order_views.xml @@ -0,0 +1,20 @@ + + + + + app.report.pos.order.search + report.pos.order + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_product_superbar/static/description/index.html b/app_product_superbar/static/description/index.html index b35dbae2..b17add02 100644 --- a/app_product_superbar/static/description/index.html +++ b/app_product_superbar/static/description/index.html @@ -10,7 +10,7 @@

    Advance Search, Advance Filter with Parent Children Tree.

    Buy - + this 1 Advance Search Apps in odoo Store. Get @@ -46,77 +46,77 @@
  • Product navigate by category or type is ready. - + Click to download.
  • Pos navigate by category or store 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.
  • @@ -267,13 +267,13 @@

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

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

    diff --git a/app_product_ztree/static/description/index.html b/app_product_ztree/static/description/index.html index b48fc90d..bda595a5 100644 --- a/app_product_ztree/static/description/index.html +++ b/app_product_ztree/static/description/index.html @@ -47,19 +47,19 @@
    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..ae8179c3 --- /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': '13.19.10.16', + '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..28307428 Binary files /dev/null and b/app_purchase_superbar/static/description/account1.jpg differ diff --git a/app_purchase_superbar/static/description/banner.png b/app_purchase_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_purchase_superbar/static/description/banner.png differ diff --git a/app_purchase_superbar/static/description/base1.jpg b/app_purchase_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_purchase_superbar/static/description/base1.jpg differ diff --git a/app_purchase_superbar/static/description/base2.jpg b/app_purchase_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_purchase_superbar/static/description/base2.jpg differ diff --git a/app_purchase_superbar/static/description/base3.jpg b/app_purchase_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_purchase_superbar/static/description/base3.jpg differ diff --git a/app_purchase_superbar/static/description/base4.jpg b/app_purchase_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_purchase_superbar/static/description/base4.jpg differ diff --git a/app_purchase_superbar/static/description/base5.jpg b/app_purchase_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_purchase_superbar/static/description/base5.jpg differ diff --git a/app_purchase_superbar/static/description/base6.jpg b/app_purchase_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_purchase_superbar/static/description/base6.jpg differ diff --git a/app_purchase_superbar/static/description/base7.jpg b/app_purchase_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_purchase_superbar/static/description/base7.jpg differ diff --git a/app_purchase_superbar/static/description/base8.jpg b/app_purchase_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_purchase_superbar/static/description/base8.jpg differ diff --git a/app_purchase_superbar/static/description/base9.jpg b/app_purchase_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_purchase_superbar/static/description/base9.jpg differ diff --git a/app_purchase_superbar/static/description/contacts1.jpg b/app_purchase_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_purchase_superbar/static/description/contacts1.jpg differ diff --git a/app_purchase_superbar/static/description/crm1.jpg b/app_purchase_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_purchase_superbar/static/description/crm1.jpg differ diff --git a/app_purchase_superbar/static/description/demo2.jpg b/app_purchase_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_purchase_superbar/static/description/demo2.jpg differ diff --git a/app_purchase_superbar/static/description/demo_module1.jpg b/app_purchase_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_purchase_superbar/static/description/demo_module1.jpg differ diff --git a/app_purchase_superbar/static/description/demo_module2.jpg b/app_purchase_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_purchase_superbar/static/description/demo_module2.jpg differ diff --git a/app_purchase_superbar/static/description/hr1.jpg b/app_purchase_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_purchase_superbar/static/description/hr1.jpg differ diff --git a/app_purchase_superbar/static/description/hr2.gif b/app_purchase_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_purchase_superbar/static/description/hr2.gif differ diff --git a/app_purchase_superbar/static/description/icon.png b/app_purchase_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_purchase_superbar/static/description/icon.png differ diff --git a/app_purchase_superbar/static/description/index.html b/app_purchase_superbar/static/description/index.html new file mode 100644 index 00000000..be40275d --- /dev/null +++ b/app_purchase_superbar/static/description/index.html @@ -0,0 +1,294 @@ +
    +
    +

    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.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • 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/mrp1.gif b/app_purchase_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_purchase_superbar/static/description/mrp1.gif differ diff --git a/app_purchase_superbar/static/description/mrp1.jpg b/app_purchase_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_purchase_superbar/static/description/mrp1.jpg differ diff --git a/app_purchase_superbar/static/description/pos1.jpg b/app_purchase_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_purchase_superbar/static/description/pos1.jpg differ diff --git a/app_purchase_superbar/static/description/pos2.jpg b/app_purchase_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_purchase_superbar/static/description/pos2.jpg differ diff --git a/app_purchase_superbar/static/description/pos3.jpg b/app_purchase_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_purchase_superbar/static/description/pos3.jpg differ diff --git a/app_purchase_superbar/static/description/product1.jpg b/app_purchase_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_purchase_superbar/static/description/product1.jpg differ diff --git a/app_purchase_superbar/static/description/purchase1.jpg b/app_purchase_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_purchase_superbar/static/description/purchase1.jpg differ diff --git a/app_purchase_superbar/static/description/sale1.jpg b/app_purchase_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_purchase_superbar/static/description/sale1.jpg differ diff --git a/app_purchase_superbar/static/description/searchmore.jpg b/app_purchase_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_purchase_superbar/static/description/searchmore.jpg differ diff --git a/app_purchase_superbar/static/description/stock1.jpg b/app_purchase_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_purchase_superbar/static/description/stock1.jpg differ diff --git a/app_purchase_superbar/static/description/superbar.gif b/app_purchase_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_purchase_superbar/static/description/superbar.gif differ diff --git a/app_purchase_superbar/static/description/superbar_use.gif b/app_purchase_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_purchase_superbar/static/description/superbar_use.gif differ diff --git a/app_purchase_superbar/static/description/superbar_use.png b/app_purchase_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_purchase_superbar/static/description/superbar_use.png differ diff --git a/app_purchase_superbar/static/description/use.jpg b/app_purchase_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_purchase_superbar/static/description/use.jpg differ diff --git a/app_purchase_superbar/static/description/use1.jpg b/app_purchase_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_purchase_superbar/static/description/use1.jpg differ diff --git a/app_purchase_superbar/static/description/use2.jpg b/app_purchase_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_purchase_superbar/static/description/use2.jpg differ diff --git a/app_purchase_superbar/static/description/use3.jpg b/app_purchase_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_purchase_superbar/static/description/use3.jpg differ diff --git a/app_purchase_superbar/static/description/use4.jpg b/app_purchase_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_purchase_superbar/static/description/use4.jpg differ diff --git a/app_purchase_superbar/static/description/use5.jpg b/app_purchase_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_purchase_superbar/static/description/use5.jpg differ diff --git a/app_purchase_superbar/static/description/use6.jpg b/app_purchase_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_purchase_superbar/static/description/use6.jpg differ diff --git a/app_purchase_superbar/static/description/use7.jpg b/app_purchase_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_purchase_superbar/static/description/use7.jpg differ diff --git a/app_purchase_superbar/static/description/use8.jpg b/app_purchase_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_purchase_superbar/static/description/use8.jpg differ diff --git a/app_purchase_superbar/static/description/use9.jpg b/app_purchase_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_purchase_superbar/static/description/use9.jpg differ diff --git a/app_purchase_superbar/static/description/usea.jpg b/app_purchase_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_purchase_superbar/static/description/usea.jpg differ diff --git a/app_purchase_superbar/static/description/z_hr1.gif b/app_purchase_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_purchase_superbar/static/description/z_hr1.gif differ diff --git a/app_purchase_superbar/static/description/z_product1.gif b/app_purchase_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_purchase_superbar/static/description/z_product1.gif differ diff --git a/app_purchase_superbar/static/description/z_stock1.gif b/app_purchase_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_purchase_superbar/static/description/z_stock1.gif differ diff --git a/app_purchase_superbar/views/purchase_views.xml b/app_purchase_superbar/views/purchase_views.xml new file mode 100644 index 00000000..a833ff58 --- /dev/null +++ b/app_purchase_superbar/views/purchase_views.xml @@ -0,0 +1,33 @@ + + + + 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..abc21aba --- /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': '13.19.10.16', + '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_management', + ], + '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..28307428 Binary files /dev/null and b/app_sale_superbar/static/description/account1.jpg differ diff --git a/app_sale_superbar/static/description/banner.png b/app_sale_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_sale_superbar/static/description/banner.png differ diff --git a/app_sale_superbar/static/description/base1.jpg b/app_sale_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_sale_superbar/static/description/base1.jpg differ diff --git a/app_sale_superbar/static/description/base2.jpg b/app_sale_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_sale_superbar/static/description/base2.jpg differ diff --git a/app_sale_superbar/static/description/base3.jpg b/app_sale_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_sale_superbar/static/description/base3.jpg differ diff --git a/app_sale_superbar/static/description/base4.jpg b/app_sale_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_sale_superbar/static/description/base4.jpg differ diff --git a/app_sale_superbar/static/description/base5.jpg b/app_sale_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_sale_superbar/static/description/base5.jpg differ diff --git a/app_sale_superbar/static/description/base6.jpg b/app_sale_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_sale_superbar/static/description/base6.jpg differ diff --git a/app_sale_superbar/static/description/base7.jpg b/app_sale_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_sale_superbar/static/description/base7.jpg differ diff --git a/app_sale_superbar/static/description/base8.jpg b/app_sale_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_sale_superbar/static/description/base8.jpg differ diff --git a/app_sale_superbar/static/description/base9.jpg b/app_sale_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_sale_superbar/static/description/base9.jpg differ diff --git a/app_sale_superbar/static/description/contacts1.jpg b/app_sale_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_sale_superbar/static/description/contacts1.jpg differ diff --git a/app_sale_superbar/static/description/crm1.jpg b/app_sale_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_sale_superbar/static/description/crm1.jpg differ diff --git a/app_sale_superbar/static/description/demo2.jpg b/app_sale_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_sale_superbar/static/description/demo2.jpg differ diff --git a/app_sale_superbar/static/description/demo_module1.jpg b/app_sale_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_sale_superbar/static/description/demo_module1.jpg differ diff --git a/app_sale_superbar/static/description/demo_module2.jpg b/app_sale_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_sale_superbar/static/description/demo_module2.jpg differ diff --git a/app_sale_superbar/static/description/hr1.jpg b/app_sale_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_sale_superbar/static/description/hr1.jpg differ diff --git a/app_sale_superbar/static/description/hr2.gif b/app_sale_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_sale_superbar/static/description/hr2.gif differ diff --git a/app_sale_superbar/static/description/icon.png b/app_sale_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_sale_superbar/static/description/icon.png differ diff --git a/app_sale_superbar/static/description/index.html b/app_sale_superbar/static/description/index.html new file mode 100644 index 00000000..7ea7e572 --- /dev/null +++ b/app_sale_superbar/static/description/index.html @@ -0,0 +1,294 @@ +
    +
    +

    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.

    +
    + +
    +
    +
    + +
    +
    +

    Free to Use in POS point of sale.

    +
    + +
    +

    POS product and order.

    +
    + +
    +

    POS report.

    +
    + +
    +
    +
    +
    +
    +

    Use in Account.

    +
    + +
    +
    +
    + +
    +
    +

    Use in Sale.

    +
    + +
    +
    +
    + +
    +
    +

    Use in purchase.

    +
    + +
    +
    +
    + +
    +
    +

    Use in contacts.

    +
    + +
    +
    +
    + +
    +
    +

     

    +

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

    +
    +

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

    +
    +
    +

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

    +
    +
    +

    3. Easy use of superbar

    +
    +

    Show superbar in list view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in kanban view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in pivot view.

    +
    +
    +
    + +
    +
    +
    +

    Show superbar in graph view.

    +
    +
    +
    + +
    +
    +
    +

    Click switch to show or hide superbar.

    +
    +
    +
    + +
    +
    +
    +

    Click checkbox to set whether to show child nodes data.

    +
    +
    +
    + +
    +
    +
    +

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

    +
    +
    +
    + +
    +
    +
    +

    Set multi field to search or filter

    +
    +
    +
    + +
    +
    +
    +

    Set super bar position, left or right.

    +
    +
    +
    + +
    +
    +
    +
    +

    4. If you want to customize, Use follow param to setup widget(Extra pay for support):

    +
    +
    + +
    +
      +
    • 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/mrp1.gif b/app_sale_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_sale_superbar/static/description/mrp1.gif differ diff --git a/app_sale_superbar/static/description/mrp1.jpg b/app_sale_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_sale_superbar/static/description/mrp1.jpg differ diff --git a/app_sale_superbar/static/description/pos1.jpg b/app_sale_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_sale_superbar/static/description/pos1.jpg differ diff --git a/app_sale_superbar/static/description/pos2.jpg b/app_sale_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_sale_superbar/static/description/pos2.jpg differ diff --git a/app_sale_superbar/static/description/pos3.jpg b/app_sale_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_sale_superbar/static/description/pos3.jpg differ diff --git a/app_sale_superbar/static/description/product1.jpg b/app_sale_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_sale_superbar/static/description/product1.jpg differ diff --git a/app_sale_superbar/static/description/purchase1.jpg b/app_sale_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_sale_superbar/static/description/purchase1.jpg differ diff --git a/app_sale_superbar/static/description/sale1.jpg b/app_sale_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_sale_superbar/static/description/sale1.jpg differ diff --git a/app_sale_superbar/static/description/searchmore.jpg b/app_sale_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_sale_superbar/static/description/searchmore.jpg differ diff --git a/app_sale_superbar/static/description/stock1.jpg b/app_sale_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_sale_superbar/static/description/stock1.jpg differ diff --git a/app_sale_superbar/static/description/superbar.gif b/app_sale_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_sale_superbar/static/description/superbar.gif differ diff --git a/app_sale_superbar/static/description/superbar_use.gif b/app_sale_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_sale_superbar/static/description/superbar_use.gif differ diff --git a/app_sale_superbar/static/description/superbar_use.png b/app_sale_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_sale_superbar/static/description/superbar_use.png differ diff --git a/app_sale_superbar/static/description/use.jpg b/app_sale_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_sale_superbar/static/description/use.jpg differ diff --git a/app_sale_superbar/static/description/use1.jpg b/app_sale_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_sale_superbar/static/description/use1.jpg differ diff --git a/app_sale_superbar/static/description/use2.jpg b/app_sale_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_sale_superbar/static/description/use2.jpg differ diff --git a/app_sale_superbar/static/description/use3.jpg b/app_sale_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_sale_superbar/static/description/use3.jpg differ diff --git a/app_sale_superbar/static/description/use4.jpg b/app_sale_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_sale_superbar/static/description/use4.jpg differ diff --git a/app_sale_superbar/static/description/use5.jpg b/app_sale_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_sale_superbar/static/description/use5.jpg differ diff --git a/app_sale_superbar/static/description/use6.jpg b/app_sale_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_sale_superbar/static/description/use6.jpg differ diff --git a/app_sale_superbar/static/description/use7.jpg b/app_sale_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_sale_superbar/static/description/use7.jpg differ diff --git a/app_sale_superbar/static/description/use8.jpg b/app_sale_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_sale_superbar/static/description/use8.jpg differ diff --git a/app_sale_superbar/static/description/use9.jpg b/app_sale_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_sale_superbar/static/description/use9.jpg differ diff --git a/app_sale_superbar/static/description/usea.jpg b/app_sale_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_sale_superbar/static/description/usea.jpg differ diff --git a/app_sale_superbar/static/description/z_hr1.gif b/app_sale_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_sale_superbar/static/description/z_hr1.gif differ diff --git a/app_sale_superbar/static/description/z_product1.gif b/app_sale_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_sale_superbar/static/description/z_product1.gif differ diff --git a/app_sale_superbar/static/description/z_stock1.gif b/app_sale_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_sale_superbar/static/description/z_stock1.gif differ diff --git a/app_sale_superbar/views/sale_order_views.xml b/app_sale_superbar/views/sale_order_views.xml new file mode 100644 index 00000000..0084cbe7 --- /dev/null +++ b/app_sale_superbar/views/sale_order_views.xml @@ -0,0 +1,37 @@ + + + + + sale.order.search.inherit.quotation.superbar + sale.order + + + + + + + + + + + + + + + sale.order.search.inherit.sale.superbar + sale.order + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/__init__.py b/app_stock_superbar/__init__.py new file mode 100644 index 00000000..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..b6486e73 --- /dev/null +++ b/app_stock_superbar/__manifest__.py @@ -0,0 +1,67 @@ +# -*- 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': '13.19.10.16', + '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', + 'views/stock_picking_views.xml', + 'views/stock_picking_type_views.xml', + 'views/stock_warehouse_orderpoint_views.xml', + 'views/stock_rule_views.xml', + 'views/stock_location_route_views.xml', + 'views/stock_production_lot_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/account1.jpg b/app_stock_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_stock_superbar/static/description/account1.jpg differ diff --git a/app_stock_superbar/static/description/banner.gif b/app_stock_superbar/static/description/banner.gif new file mode 100644 index 00000000..ac3c0327 Binary files /dev/null and b/app_stock_superbar/static/description/banner.gif differ diff --git a/app_stock_superbar/static/description/banner.png b/app_stock_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_stock_superbar/static/description/banner.png differ diff --git a/app_stock_superbar/static/description/base1.jpg b/app_stock_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_stock_superbar/static/description/base1.jpg differ diff --git a/app_stock_superbar/static/description/base2.jpg b/app_stock_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_stock_superbar/static/description/base2.jpg differ diff --git a/app_stock_superbar/static/description/base3.jpg b/app_stock_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_stock_superbar/static/description/base3.jpg differ diff --git a/app_stock_superbar/static/description/base4.jpg b/app_stock_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_stock_superbar/static/description/base4.jpg differ diff --git a/app_stock_superbar/static/description/base5.jpg b/app_stock_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_stock_superbar/static/description/base5.jpg differ diff --git a/app_stock_superbar/static/description/base6.jpg b/app_stock_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_stock_superbar/static/description/base6.jpg differ diff --git a/app_stock_superbar/static/description/base7.jpg b/app_stock_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_stock_superbar/static/description/base7.jpg differ diff --git a/app_stock_superbar/static/description/base8.jpg b/app_stock_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_stock_superbar/static/description/base8.jpg differ diff --git a/app_stock_superbar/static/description/base9.jpg b/app_stock_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_stock_superbar/static/description/base9.jpg differ diff --git a/app_stock_superbar/static/description/contacts1.jpg b/app_stock_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_stock_superbar/static/description/contacts1.jpg differ diff --git a/app_stock_superbar/static/description/crm1.jpg b/app_stock_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_stock_superbar/static/description/crm1.jpg differ diff --git a/app_stock_superbar/static/description/demo1.jpg b/app_stock_superbar/static/description/demo1.jpg new file mode 100644 index 00000000..fd538628 Binary files /dev/null and b/app_stock_superbar/static/description/demo1.jpg differ diff --git a/app_stock_superbar/static/description/demo11.jpg b/app_stock_superbar/static/description/demo11.jpg new file mode 100644 index 00000000..72ad356b Binary files /dev/null and b/app_stock_superbar/static/description/demo11.jpg differ diff --git a/app_stock_superbar/static/description/demo12.jpg b/app_stock_superbar/static/description/demo12.jpg new file mode 100644 index 00000000..ecc58186 Binary files /dev/null and b/app_stock_superbar/static/description/demo12.jpg differ diff --git a/app_stock_superbar/static/description/demo2.jpg b/app_stock_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_stock_superbar/static/description/demo2.jpg differ diff --git a/app_stock_superbar/static/description/demo3.jpg b/app_stock_superbar/static/description/demo3.jpg new file mode 100644 index 00000000..e82b0990 Binary files /dev/null and b/app_stock_superbar/static/description/demo3.jpg differ diff --git a/app_stock_superbar/static/description/demo4.jpg b/app_stock_superbar/static/description/demo4.jpg new file mode 100644 index 00000000..4a4abce1 Binary files /dev/null and b/app_stock_superbar/static/description/demo4.jpg differ diff --git a/app_stock_superbar/static/description/demo5.jpg b/app_stock_superbar/static/description/demo5.jpg new file mode 100644 index 00000000..849b7841 Binary files /dev/null and b/app_stock_superbar/static/description/demo5.jpg differ diff --git a/app_stock_superbar/static/description/demo_module1.jpg b/app_stock_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_stock_superbar/static/description/demo_module1.jpg differ diff --git a/app_stock_superbar/static/description/demo_module2.jpg b/app_stock_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_stock_superbar/static/description/demo_module2.jpg differ diff --git a/app_stock_superbar/static/description/hr1.jpg b/app_stock_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_stock_superbar/static/description/hr1.jpg differ diff --git a/app_stock_superbar/static/description/hr2.gif b/app_stock_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_stock_superbar/static/description/hr2.gif differ diff --git a/app_stock_superbar/static/description/icon.png b/app_stock_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_stock_superbar/static/description/icon.png differ diff --git a/app_stock_superbar/static/description/index.html b/app_stock_superbar/static/description/index.html new file mode 100644 index 00000000..b819b522 --- /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/mrp1.gif b/app_stock_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_stock_superbar/static/description/mrp1.gif differ diff --git a/app_stock_superbar/static/description/mrp1.jpg b/app_stock_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_stock_superbar/static/description/mrp1.jpg differ diff --git a/app_stock_superbar/static/description/pos1.jpg b/app_stock_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_stock_superbar/static/description/pos1.jpg differ diff --git a/app_stock_superbar/static/description/pos2.jpg b/app_stock_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_stock_superbar/static/description/pos2.jpg differ diff --git a/app_stock_superbar/static/description/pos3.jpg b/app_stock_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_stock_superbar/static/description/pos3.jpg differ diff --git a/app_stock_superbar/static/description/product1.jpg b/app_stock_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_stock_superbar/static/description/product1.jpg differ diff --git a/app_stock_superbar/static/description/purchase1.jpg b/app_stock_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_stock_superbar/static/description/purchase1.jpg differ diff --git a/app_stock_superbar/static/description/sale1.jpg b/app_stock_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_stock_superbar/static/description/sale1.jpg differ diff --git a/app_stock_superbar/static/description/searchmore.jpg b/app_stock_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_stock_superbar/static/description/searchmore.jpg differ diff --git a/app_stock_superbar/static/description/setup1.jpg b/app_stock_superbar/static/description/setup1.jpg new file mode 100644 index 00000000..d5ade2b1 Binary files /dev/null and b/app_stock_superbar/static/description/setup1.jpg differ diff --git a/app_stock_superbar/static/description/stock1.jpg b/app_stock_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_stock_superbar/static/description/stock1.jpg differ diff --git a/app_stock_superbar/static/description/superbar.gif b/app_stock_superbar/static/description/superbar.gif new file mode 100644 index 00000000..6e7318a5 Binary files /dev/null and b/app_stock_superbar/static/description/superbar.gif differ diff --git a/app_stock_superbar/static/description/superbar_use.gif b/app_stock_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_stock_superbar/static/description/superbar_use.gif differ diff --git a/app_stock_superbar/static/description/use.jpg b/app_stock_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_stock_superbar/static/description/use.jpg differ diff --git a/app_stock_superbar/static/description/use1.jpg b/app_stock_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_stock_superbar/static/description/use1.jpg differ diff --git a/app_stock_superbar/static/description/use2.jpg b/app_stock_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_stock_superbar/static/description/use2.jpg differ diff --git a/app_stock_superbar/static/description/use3.jpg b/app_stock_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_stock_superbar/static/description/use3.jpg differ diff --git a/app_stock_superbar/static/description/use4.jpg b/app_stock_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_stock_superbar/static/description/use4.jpg differ diff --git a/app_stock_superbar/static/description/use5.jpg b/app_stock_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_stock_superbar/static/description/use5.jpg differ diff --git a/app_stock_superbar/static/description/use6.jpg b/app_stock_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_stock_superbar/static/description/use6.jpg differ diff --git a/app_stock_superbar/static/description/use7.jpg b/app_stock_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_stock_superbar/static/description/use7.jpg differ diff --git a/app_stock_superbar/static/description/use8.jpg b/app_stock_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_stock_superbar/static/description/use8.jpg differ diff --git a/app_stock_superbar/static/description/use9.jpg b/app_stock_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_stock_superbar/static/description/use9.jpg differ diff --git a/app_stock_superbar/static/description/usea.jpg b/app_stock_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_stock_superbar/static/description/usea.jpg differ diff --git a/app_stock_superbar/static/description/z_hr1.gif b/app_stock_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_stock_superbar/static/description/z_hr1.gif differ diff --git a/app_stock_superbar/static/description/z_product1.gif b/app_stock_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_stock_superbar/static/description/z_product1.gif differ diff --git a/app_stock_superbar/static/description/z_stock1.gif b/app_stock_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_stock_superbar/static/description/z_stock1.gif differ diff --git a/app_stock_superbar/static/img/icon_sunpop.png b/app_stock_superbar/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_stock_superbar/static/img/icon_sunpop.png differ diff --git a/app_stock_superbar/static/img/logo_sunpop.png b/app_stock_superbar/static/img/logo_sunpop.png new file mode 100644 index 00000000..90cbe0e2 Binary files /dev/null and b/app_stock_superbar/static/img/logo_sunpop.png differ diff --git a/app_stock_superbar/views/stock_location_route_views.xml b/app_stock_superbar/views/stock_location_route_views.xml new file mode 100644 index 00000000..12f81e25 --- /dev/null +++ b/app_stock_superbar/views/stock_location_route_views.xml @@ -0,0 +1,18 @@ + + + + + stock.location.route.search.superbar + stock.location.route + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_location_views.xml b/app_stock_superbar/views/stock_location_views.xml new file mode 100644 index 00000000..48968a08 --- /dev/null +++ b/app_stock_superbar/views/stock_location_views.xml @@ -0,0 +1,19 @@ + + + + + stock.location.search.superbar + stock.location + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_picking_type_views.xml b/app_stock_superbar/views/stock_picking_type_views.xml new file mode 100644 index 00000000..2c405410 --- /dev/null +++ b/app_stock_superbar/views/stock_picking_type_views.xml @@ -0,0 +1,19 @@ + + + + + stock.picking.type.filter.superbar + stock.picking.type + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_picking_views.xml b/app_stock_superbar/views/stock_picking_views.xml new file mode 100644 index 00000000..563b24ff --- /dev/null +++ b/app_stock_superbar/views/stock_picking_views.xml @@ -0,0 +1,19 @@ + + + + + stock.picking.internal.search.superbar + stock.picking + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_production_lot_views.xml b/app_stock_superbar/views/stock_production_lot_views.xml new file mode 100644 index 00000000..a08e9a9c --- /dev/null +++ b/app_stock_superbar/views/stock_production_lot_views.xml @@ -0,0 +1,21 @@ + + + + + Production Lots Filter superbar + stock.production.lot + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_rule_views.xml b/app_stock_superbar/views/stock_rule_views.xml new file mode 100644 index 00000000..1fd0d36f --- /dev/null +++ b/app_stock_superbar/views/stock_rule_views.xml @@ -0,0 +1,18 @@ + + + + + stock.rule.select.superbar + stock.rule + + + + + + + + + + + + \ No newline at end of file diff --git a/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml b/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml new file mode 100644 index 00000000..df0c0f35 --- /dev/null +++ b/app_stock_superbar/views/stock_warehouse_orderpoint_views.xml @@ -0,0 +1,18 @@ + + + + + stock.warehouse.orderpoint.search.superbar + stock.warehouse.orderpoint + + + + + + + + + + + + \ No newline at end of file diff --git a/app_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..3922cbf7 --- /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': '13.19.10.16', + '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..b819b522 --- /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..643700cf --- /dev/null +++ b/app_stock_ztree/views/stock_views.xml @@ -0,0 +1,17 @@ + + + + + app.stock.location.form + stock.location + + + + + ztree_select + {'ztree_parent_key': 'location_id','ztree_expend_level': '2', 'ztree_name_field': 'name'} + + + + + \ No newline at end of file