add search panel
4
app_account_searchpanel/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
from .hooks import post_init_hook
|
||||||
66
app_account_searchpanel/__manifest__.py
Normal file
@@ -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 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': "Account Searchpanel Hierarchy Tree, quick kanban filter",
|
||||||
|
'version': '12.19.04.22',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'https://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 20,
|
||||||
|
'summary': """
|
||||||
|
Browse journal by account chart... Use for parent children kanban navigator.
|
||||||
|
dynanmic kanban. Hierarchy Tree. Parent Children relation tree filter, navigator.
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
Advance Search, Advance Filter with Parent Children Tree.
|
||||||
|
Easy to navigator and browse any data.
|
||||||
|
Ready for any odoo module. Like product, partner, sales order, purchase order, account, stock.
|
||||||
|
easy use, like:
|
||||||
|
<searchpanel>
|
||||||
|
<field name='partner_id'/>
|
||||||
|
</searchpanel>
|
||||||
|
The limit of the apps is only support many2one field and kanban view. also not good for domain filter of panel.
|
||||||
|
If you want more powerful function. please go to https://www.odoo.com/apps/modules/12.0/app_web_superbar
|
||||||
|
""",
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'EUR',
|
||||||
|
'depends': [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
'images': ['static/description/banner.png'],
|
||||||
|
'data': [
|
||||||
|
'views/account_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
'static/src/xml/*.xml',
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': 'post_init_hook',
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
20
app_account_searchpanel/hooks.py
Normal file
@@ -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("")
|
||||||
14
app_account_searchpanel/i18n/zh_CN.po
Normal file
@@ -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"
|
||||||
1
app_account_searchpanel/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_account_searchpanel/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
BIN
app_account_searchpanel/static/description/account1.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
app_account_searchpanel/static/description/banner.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
app_account_searchpanel/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 982 KiB |
BIN
app_account_searchpanel/static/description/contacts1.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
app_account_searchpanel/static/description/demo2.jpg
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
app_account_searchpanel/static/description/demo_module1.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
app_account_searchpanel/static/description/hr1.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
app_account_searchpanel/static/description/hr2.gif
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
app_account_searchpanel/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
316
app_account_searchpanel/static/description/index.html
Normal file
@@ -0,0 +1,316 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">Account Search Panel Hierarchy Tree, quick kanban filter</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_searchpanel/">
|
||||||
|
this 1 Advance Search panel app
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=searchpanel+hierarchy" target="_blank">
|
||||||
|
free 8 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. </h3>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children filter panel for kanban view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Stock picking navigate by picking type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_stock_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h1> </h1>
|
||||||
|
<h1 class="text-danger text-center">So Easy to navigator and search any data.</h1>
|
||||||
|
<h4 class="oe_slogan">Product by category or type in kanban view</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="product1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Sale.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in purchase.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in stock.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in contacts.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="contacts1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in HR emploee.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="hr2.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Account.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Apps Navigator by Category, Module Navigator is ready.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="demo_module1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<br/><h1 class="oe_slogan text-danger">At last, we strong suggest you get another Superbar app for more power feature.</h1>
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_superbar/" target="_blank">
|
||||||
|
this 1 Advance Search Apps
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
|
||||||
|
free 16 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view. </h3>
|
||||||
|
<h2>Online demo <i class="fa fa-user text-primary"></i> user/password: demo/demo
|
||||||
|
<a href="http://demo.odooapp.cn/web?#action=263&model=sale.order&view_type=list&menu_id=141" target="_blank">
|
||||||
|
<i class="fa fa-arrow-right text-warning"></i>Click to get demo.
|
||||||
|
</a> </h2>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to make custom parent children tree for and data.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children tree for tree, kanban, pivot, graph view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Filter product of any data in "Search More..." popup windows.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Responsive UI.Only show when width > 992px;
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="superbar.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="https://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>https://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_account_searchpanel/static/description/product1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_account_searchpanel/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 638 KiB |
BIN
app_account_searchpanel/static/description/purchase1.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
app_account_searchpanel/static/description/sale1.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
app_account_searchpanel/static/description/stock1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_account_searchpanel/static/description/superbar.gif
Normal file
|
After Width: | Height: | Size: 6.3 MiB |
BIN
app_account_searchpanel/static/description/superbar_use.gif
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
app_account_searchpanel/static/description/superbar_use.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
app_account_searchpanel/static/description/use1.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
app_account_searchpanel/static/description/use2.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app_account_searchpanel/static/description/use3.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app_account_searchpanel/static/description/use4.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
app_account_searchpanel/static/description/use5.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
app_account_searchpanel/static/description/use6.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
app_account_searchpanel/static/description/use7.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
app_account_searchpanel/static/description/use8.jpg
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
app_account_searchpanel/static/description/use9.jpg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
app_account_searchpanel/static/description/usea.jpg
Normal file
|
After Width: | Height: | Size: 77 KiB |
57
app_account_searchpanel/views/account_views.xml
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<!-- account.account -->
|
||||||
|
<record id="app_view_account_account_kanban" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.account.kanban</field>
|
||||||
|
<field name="model">account.account</field>
|
||||||
|
<field name="inherit_id" ref="account.view_account_account_kanban"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="group_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<!-- account.invoice -->
|
||||||
|
<record id="app_invoice_kanban" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.invoice.kanban</field>
|
||||||
|
<field name="model">account.invoice</field>
|
||||||
|
<field name="inherit_id" ref="account.invoice_kanban"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="partner_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<!-- account.move -->
|
||||||
|
<record id="app_view_account_move_kanban" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.move.kanban</field>
|
||||||
|
<field name="model">account.move</field>
|
||||||
|
<field name="inherit_id" ref="account.view_account_move_kanban"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="journal_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<!-- account.move.line -->
|
||||||
|
<record id="app_account_move_line_view_kanban" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.move.line.kanban</field>
|
||||||
|
<field name="model">account.move.line</field>
|
||||||
|
<field name="inherit_id" ref="account.account_move_line_view_kanban"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="partner_id"/>
|
||||||
|
<field name="account_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
4
app_contacts_searchpanel/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
from .hooks import post_init_hook
|
||||||
66
app_contacts_searchpanel/__manifest__.py
Normal file
@@ -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': "Contact Searchpanel Hierarchy Tree, quick kanban filter",
|
||||||
|
'version': '12.19.04.22',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'https://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 20,
|
||||||
|
'summary': """
|
||||||
|
Browse contacts by company. Use for parent children kanban navigator.
|
||||||
|
dynanmic kanban. Hierarchy Tree. Parent Children relation tree filter, navigator.
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
Advance Search, Advance Filter with Parent Children Tree.
|
||||||
|
Easy to navigator and browse any data.
|
||||||
|
Ready for any odoo module. Like product, partner, sales order, purchase order, account, stock.
|
||||||
|
easy use, like:
|
||||||
|
<searchpanel>
|
||||||
|
<field name='partner_id'/>
|
||||||
|
</searchpanel>
|
||||||
|
The limit of the apps is only support many2one field and kanban view. also not good for domain filter of panel.
|
||||||
|
If you want more powerful function. please go to https://www.odoo.com/apps/modules/12.0/app_web_superbar
|
||||||
|
""",
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'EUR',
|
||||||
|
'depends': [
|
||||||
|
'contacts',
|
||||||
|
],
|
||||||
|
'images': ['static/description/banner.png'],
|
||||||
|
'data': [
|
||||||
|
'views/res_partner_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
'static/src/xml/*.xml',
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': 'post_init_hook',
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
20
app_contacts_searchpanel/hooks.py
Normal file
@@ -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("")
|
||||||
14
app_contacts_searchpanel/i18n/zh_CN.po
Normal file
@@ -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"
|
||||||
1
app_contacts_searchpanel/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_contacts_searchpanel/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
BIN
app_contacts_searchpanel/static/description/account1.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
app_contacts_searchpanel/static/description/banner.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
app_contacts_searchpanel/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 982 KiB |
BIN
app_contacts_searchpanel/static/description/contacts1.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
app_contacts_searchpanel/static/description/demo_module1.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
app_contacts_searchpanel/static/description/hr1.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
app_contacts_searchpanel/static/description/hr2.gif
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
app_contacts_searchpanel/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
308
app_contacts_searchpanel/static/description/index.html
Normal file
@@ -0,0 +1,308 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">Search Panel Hierarchy Tree, quick kanban filter</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_searchpanel/">
|
||||||
|
this 1 Advance Search panel app
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=searchpanel+hierarchy" target="_blank">
|
||||||
|
free 8 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. </h3>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children filter panel for kanban view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h1> </h1>
|
||||||
|
<h1 class="text-danger text-center">So Easy to navigator and search any data.</h1>
|
||||||
|
<h4 class="oe_slogan">Product by category or type in kanban view</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="product1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Sale.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in purchase.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in stock.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in contacts.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="contacts1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in HR emploee.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="hr2.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Account.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Apps Navigator by Category, Module Navigator is ready.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="demo_module1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<br/><h1 class="oe_slogan text-danger">At last, we strong suggest you get another Superbar app for more power feature.</h1>
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_superbar/" target="_blank">
|
||||||
|
this 1 Advance Search Apps
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
|
||||||
|
free 16 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view. </h3>
|
||||||
|
<h2>Online demo <i class="fa fa-user text-primary"></i> user/password: demo/demo
|
||||||
|
<a href="http://demo.odooapp.cn/web?#action=263&model=sale.order&view_type=list&menu_id=141" target="_blank">
|
||||||
|
<i class="fa fa-arrow-right text-warning"></i>Click to get demo.
|
||||||
|
</a> </h2>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to make custom parent children tree for and data.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children tree for tree, kanban, pivot, graph view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Filter product of any data in "Search More..." popup windows.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Responsive UI.Only show when width > 992px;
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="superbar.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="https://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>https://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_contacts_searchpanel/static/description/product1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_contacts_searchpanel/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 638 KiB |
BIN
app_contacts_searchpanel/static/description/purchase1.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
app_contacts_searchpanel/static/description/sale1.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
app_contacts_searchpanel/static/description/stock1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_contacts_searchpanel/static/description/superbar.gif
Normal file
|
After Width: | Height: | Size: 6.3 MiB |
18
app_contacts_searchpanel/views/res_partner_views.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<!-- contact -->
|
||||||
|
<record id="app_res_partner_kanban_view" model="ir.ui.view">
|
||||||
|
<field name="name">app.res.partner.kanban</field>
|
||||||
|
<field name="model">res.partner</field>
|
||||||
|
<field name="inherit_id" ref="base.res_partner_kanban_view"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="user_id"/>
|
||||||
|
<field name="country_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
4
app_hr_searchpanel/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
from .hooks import post_init_hook
|
||||||
67
app_hr_searchpanel/__manifest__.py
Normal file
@@ -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': "Employee Navigator by department, hr superbar",
|
||||||
|
'version': '12.19.01.10',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Human Resources',
|
||||||
|
'website': 'https://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'summary': """
|
||||||
|
Browse employees by departments tree. hr organization chart.
|
||||||
|
Easy to navigator and browse any data. Support Search more list, kanban, pivot, graph view.
|
||||||
|
ztree widget. hr Hierarchy organization chart Tree.
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
Advance Search, Advance Filter with Parent Children Tree.
|
||||||
|
Easy to navigator and browse any data.
|
||||||
|
Ready for any odoo module. Like product, partner, sales order, purchase order, account, stock.
|
||||||
|
easy use, like:
|
||||||
|
<searchpanel>
|
||||||
|
<field name='partner_id'/>
|
||||||
|
</searchpanel>
|
||||||
|
The limit of the apps is only support many2one field and kanban view. also not good for domain filter of panel.
|
||||||
|
If you want more powerful function. please go to https://www.odoo.com/apps/modules/12.0/app_web_superbar
|
||||||
|
""",
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'EUR',
|
||||||
|
'depends': [
|
||||||
|
'hr',
|
||||||
|
],
|
||||||
|
'images': ['static/description/hr2.gif'],
|
||||||
|
'data': [
|
||||||
|
'views/hr_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
'static/src/xml/*.xml',
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': 'post_init_hook',
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
20
app_hr_searchpanel/hooks.py
Normal file
@@ -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("")
|
||||||
14
app_hr_searchpanel/i18n/zh_CN.po
Normal file
@@ -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"
|
||||||
4
app_hr_searchpanel/models/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
2
app_hr_searchpanel/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
BIN
app_hr_searchpanel/static/description/account1.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
app_hr_searchpanel/static/description/banner.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
app_hr_searchpanel/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 982 KiB |
BIN
app_hr_searchpanel/static/description/contacts1.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
app_hr_searchpanel/static/description/demo_module1.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
app_hr_searchpanel/static/description/hr1.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
app_hr_searchpanel/static/description/hr2.gif
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
app_hr_searchpanel/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
308
app_hr_searchpanel/static/description/index.html
Normal file
@@ -0,0 +1,308 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">Search Panel Hierarchy Tree, quick kanban filter</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_searchpanel/">
|
||||||
|
this 1 Advance Search panel app
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=searchpanel+hierarchy" target="_blank">
|
||||||
|
free 8 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. </h3>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children filter panel for kanban view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h1> </h1>
|
||||||
|
<h1 class="text-danger text-center">So Easy to navigator and search any data.</h1>
|
||||||
|
<h4 class="oe_slogan">Product by category or type in kanban view</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="product1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Sale.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in purchase.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in stock.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in contacts.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="contacts1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in HR emploee.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="hr2.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Account.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Apps Navigator by Category, Module Navigator is ready.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="demo_module1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<br/><h1 class="oe_slogan text-danger">At last, we strong suggest you get another Superbar app for more power feature.</h1>
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_superbar/" target="_blank">
|
||||||
|
this 1 Advance Search Apps
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
|
||||||
|
free 16 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view. </h3>
|
||||||
|
<h2>Online demo <i class="fa fa-user text-primary"></i> user/password: demo/demo
|
||||||
|
<a href="http://demo.odooapp.cn/web?#action=263&model=sale.order&view_type=list&menu_id=141" target="_blank">
|
||||||
|
<i class="fa fa-arrow-right text-warning"></i>Click to get demo.
|
||||||
|
</a> </h2>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to make custom parent children tree for and data.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children tree for tree, kanban, pivot, graph view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Filter product of any data in "Search More..." popup windows.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Responsive UI.Only show when width > 992px;
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="superbar.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="https://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>https://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_hr_searchpanel/static/description/product1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_hr_searchpanel/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 638 KiB |
BIN
app_hr_searchpanel/static/description/purchase1.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
app_hr_searchpanel/static/description/sale1.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
app_hr_searchpanel/static/description/stock1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_hr_searchpanel/static/description/superbar.gif
Normal file
|
After Width: | Height: | Size: 6.3 MiB |
19
app_hr_searchpanel/views/hr_views.xml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<!-- Hr -->
|
||||||
|
<record id="app_hr_kanban_view_employees" model="ir.ui.view">
|
||||||
|
<field name="name">app.hr.employee.kanban</field>
|
||||||
|
<field name="model">hr.employee</field>
|
||||||
|
<field name="inherit_id" ref="hr.hr_kanban_view_employees"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//templates">
|
||||||
|
<searchpanel>
|
||||||
|
<field name="department_id"/>
|
||||||
|
<field name="job_id"/>
|
||||||
|
</searchpanel>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
4
app_module_searchpanel/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
from .hooks import post_init_hook
|
||||||
67
app_module_searchpanel/__manifest__.py
Normal file
@@ -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 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': '12.19.01.14',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'https://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'summary': """
|
||||||
|
Browse Apps by category tree. Use for parent children kanban navigator.
|
||||||
|
dynanmic kanban. Hierarchy Tree. Parent Children relation tree filter, navigator.
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
migrate from odoo13. Support one2many field and kanban view.
|
||||||
|
Advance Search, Advance Filter with Parent Children Tree.
|
||||||
|
Easy to navigator and browse any data.
|
||||||
|
Ready for any odoo module. Like product, partner, sales order, purchase order, account, stock.
|
||||||
|
easy use, like:
|
||||||
|
<searchpanel>
|
||||||
|
<field name='partner_id'/>
|
||||||
|
</searchpanel>
|
||||||
|
The limit of the apps is only support many2one field and kanban view. also not good for domain filter of panel.
|
||||||
|
If you want more powerful function. please go to https://www.odoo.com/apps/modules/12.0/app_web_superbar
|
||||||
|
""",
|
||||||
|
'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,
|
||||||
|
}
|
||||||
20
app_module_searchpanel/hooks.py
Normal file
@@ -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("")
|
||||||
14
app_module_searchpanel/i18n/zh_CN.po
Normal file
@@ -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"
|
||||||
2
app_module_searchpanel/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
2
app_module_searchpanel/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
BIN
app_module_searchpanel/static/description/account1.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
app_module_searchpanel/static/description/banner.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
app_module_searchpanel/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 982 KiB |
BIN
app_module_searchpanel/static/description/contacts1.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
app_module_searchpanel/static/description/demo2.jpg
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
app_module_searchpanel/static/description/demo_module1.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
app_module_searchpanel/static/description/demo_module2.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
app_module_searchpanel/static/description/hr1.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
app_module_searchpanel/static/description/hr2.gif
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
app_module_searchpanel/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
308
app_module_searchpanel/static/description/index.html
Normal file
@@ -0,0 +1,308 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">Search Panel Hierarchy Tree, quick kanban filter</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_searchpanel/">
|
||||||
|
this 1 Advance Search panel app
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=searchpanel+hierarchy" target="_blank">
|
||||||
|
free 8 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. </h3>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children filter panel for kanban view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_searchpanel/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h1> </h1>
|
||||||
|
<h1 class="text-danger text-center">So Easy to navigator and search any data.</h1>
|
||||||
|
<h4 class="oe_slogan">Product by category or type in kanban view</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="product1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Sale.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in purchase.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in stock.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in contacts.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="contacts1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in HR emploee.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="hr2.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Use in Account.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="oe_slogan">Apps Navigator by Category, Module Navigator is ready.</h4>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="demo_module1.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<br/><h1 class="oe_slogan text-danger">At last, we strong suggest you get another Superbar app for more power feature.</h1>
|
||||||
|
<div class="oe_row">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<img class="oe_demo oe_picture oe_screenshot" src="banner.gif">
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree.</h3>
|
||||||
|
<h1 class="text-danger text-center">Buy
|
||||||
|
<a href="https://www.odoo.com/apps/modules/12.0/app_web_superbar/" target="_blank">
|
||||||
|
this 1 Advance Search Apps
|
||||||
|
</a>
|
||||||
|
in odoo Store. Get
|
||||||
|
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
|
||||||
|
free 16 related apps.
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<h3 class="oe_slogan">Easy to navigator and browse any data. Support Search more, list, kanban, pivot, graph view. </h3>
|
||||||
|
<h2>Online demo <i class="fa fa-user text-primary"></i> user/password: demo/demo
|
||||||
|
<a href="http://demo.odooapp.cn/web?#action=263&model=sale.order&view_type=list&menu_id=141" target="_blank">
|
||||||
|
<i class="fa fa-arrow-right text-warning"></i>Click to get demo.
|
||||||
|
</a> </h2>
|
||||||
|
<div class="oe_span12 oe_spaced">
|
||||||
|
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||||
|
<i class="fa fa-hand-o-right"></i><b> Key features: </b>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Update: v12.19.02.26, Fix bug when go deep into relate views.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to make custom parent children tree for and data.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Easy to show custom parent children tree for tree, kanban, pivot, graph view.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Filter product of any data in "Search More..." popup windows.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Responsive UI.Only show when width > 992px;
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Product navigate by category or type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_product_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Account chart navigate by type is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_account_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Contacts navigate by company is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_contacts_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Sale order navigate by partner and channel is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_sale_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Purchase order navigate by partner is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_purchase_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
HR employee navigate by department is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_hr_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
Apps Navigator by Category, Module Navigator is ready.
|
||||||
|
<a href="http://www.odoo.com/apps/modules/12.0/app_module_superbar/" target="_blank">
|
||||||
|
<i class="fa fa-download text-warning"></i>Click to download.
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-check-square-o text-primary"></i>
|
||||||
|
It is so easy to customize, you can use it in anywhere in odoo.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="superbar.gif">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="https://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>https://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_module_searchpanel/static/description/product1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
app_module_searchpanel/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 638 KiB |
BIN
app_module_searchpanel/static/description/purchase1.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
app_module_searchpanel/static/description/sale1.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |