add crm superbar

This commit is contained in:
Ivan Office
2023-09-01 02:42:59 +08:00
parent 61e3578c8e
commit d7934f210c
10 changed files with 717 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
from . import models
from .hooks import post_init_hook

View File

@@ -0,0 +1,86 @@
# -*- coding: utf-8 -*-
# Created on 2018-08-15
# author: 欧度智能https://www.odooai.cn
# email: 300883@qq.com
# resource of odooai
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# Odoo16在线用户手册长期更新
# https://www.odooai.cn/documentation/16.0/zh_CN/index.html
# Odoo16在线开发者手册长期更新
# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html
# Odoo13在线用户手册长期更新
# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html
# Odoo13在线开发者手册长期更新
# https://www.odooai.cn/documentation/13.0/index.html
# Odoo在线中文用户手册长期更新
# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
# Odoo10离线中文用户手册下载
# https://www.odooai.cn/odoo10_user_manual_document_offline/
# Odoo10离线开发手册下载-含python教程jquery参考Jinja2模板PostgresSQL参考odoo开发必备
# https://www.odooai.cn/odoo10_developer_document_offline/
# description:
{
'name': "Crm Advance search, browse by stage and team",
'version': '16.23.09.01',
'author': 'odooai.cn',
'category': 'Base',
'website': 'https://www.odooai.cn',
'license': 'LGPL-3',
'sequence': 10,
'summary': """
CRM Superbar.
odoo Seo Advance Search, Advance Filter for Date search. date range search. Datetime search.
M2M, selection, boolean, number search. Quick search in header.
Support list, kanban, pivot, graph, search more view.
""",
'description': """
Crm free app for app_web_superbar.
Advance quick search for various field in all odoo app. Support list, kanban, pivot, graph, search more views.
Search with Hierarchy Parent Children Tree. seo search.
odoo高级搜索日期搜索时间搜索字符串搜索数字搜索下拉搜索. 列表快速搜索。
超级方便的查询,树状视图导航。可用在任何模块中。
1. Quick Advance Search and navigator for all app data. 20+ free odoo app search in box.
2. Quick search in tree list header. Date range, Datetime, selection, number supported.
3. Advance search sidebar for many2one, many2many field. m2o search, m2m search for multi select.
4. Advance sidebar for date range search, datetime search, boolean search, selection search, number search.
5. Search sidebar for list, kanban.Add more pivot, graph views than origin odoo.
6. Support navigate in search more. Quick filter and search for m2o or m2m field.
7. Easy customize for any app. any module. Use extra param for searchpanel of odoo. Para: view_types, class, name_field, icon, groups, filter_domain
8. Advance search in box: Product, CRM, Sales, Purchase, MRP, Stock, Accounting, HR, Project, Etc.
Extra param for searchpanel. view_types, class, name_field, icon, groups, filter_domain.
""",
'price': 0.00,
'currency': 'EUR',
'depends': [
'crm',
'utm',
],
'images': ['static/description/crm1.jpg'],
'data': [
'views/crm_lead_views.xml',
],
'demo': [
],
'test': [
],
'css': [
],
'qweb': [
'static/src/xml/*.xml',
],
'js': [
],
'post_load': None,
'post_init_hook': 'post_init_hook',
'installable': True,
'application': True,
'auto_install': False,
}

32
app_crm_superbar/hooks.py Normal file
View File

@@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
# Created on 2018-10-12
# author: 欧度智能https://www.odooai.cn
# email: 300883@qq.com
# resource of odooai
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
# Odoo16在线用户手册长期更新
# https://www.odooai.cn/documentation/16.0/zh_CN/index.html
# Odoo16在线开发者手册长期更新
# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html
# Odoo13在线用户手册长期更新
# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html
# Odoo13在线开发者手册长期更新
# https://www.odooai.cn/documentation/13.0/index.html
# Odoo在线中文用户手册长期更新
# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html
# Odoo10离线中文用户手册下载
# https://www.odooai.cn/odoo10_user_manual_document_offline/
# Odoo10离线开发手册下载-含python教程jquery参考Jinja2模板PostgresSQL参考odoo开发必备
# https://www.odooai.cn/odoo10_developer_document_offline/
# description:
def post_init_hook(cr, pool):
pass
# cr.execute("")

View 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"

View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

View File

@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,526 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
# -*- coding: utf-8 -*-
##############################################################################
# Copyright (C) 2009~2023 odooAi.cn
##############################################################################
-->
<html>
<!-- begin title-->
<section class="oe_container container o_cc o_cc2">
<h1 class="text-center bg-warning text-white pt24 pb24">CRM browse by stage and team, Super with Parent Children Tree</h1>
<h3 class="text-center">Advance quick search for various field in all odoo app.</h3>
<h4 class="text-center">Support list, kanban, pivot, graph, search more views.</h4>
</section>
<!-- end title-->
<!-- begin features-->
<section class="oe_container container s_text_block o_colored_level pt16 pb16">
<h2 class="text-center bg-info text-white pt16 pb16">
- Get
<a href="https://www.odoo.com/apps/modules/16.0/app_web_superbar/"> app_web_super for more Features</a>
-
</h2>
</section>
<section class="s_features_grid pt24 pb24 o_colored_level" data-snippet="s_features_grid" data-name="Features Grid">
<div class="container">
<div class="row">
<div class="col-lg-6 s_col_no_bgcolor pb24">
<div class="row">
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box" data-tilt-feature="">
<i class="fa fa-search bg-primary text-white s_features_grid_icon rounded fa-2x"></i>
<div class="s_features_grid_content">
<h4 class="pt16">1. Quick Advance Search and navigator for all app data.</h4>
<p>20+ free odoo app search in box.<br></p></div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box">
<i class="fa fa-check fa-2x rounded bg-primary text-white s_features_grid_icon"></i>
<div class="s_features_grid_content">
<h4 class="pt16">2. Quick search in tree list header.&nbsp;</h4>
<p>Date range, Datetime, selection, number supported.<br></p>
</div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box" data-tilt-feature="">
<i class="fa fa-check bg-primary text-white s_features_grid_icon rounded fa-2x"></i>
<div class="s_features_grid_content">
<h4 class="pt16">3. Advance search sidebar for many2one, many2many field.&nbsp;</h4>
<p>m2o search, m2m search for multi select.</p></div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box" data-tilt-feature="">
<i class="fa fa-check bg-primary text-white s_features_grid_icon rounded fa-2x"></i>
<div class="s_features_grid_content">
<h4 class="pt16">4. Advance siderbar for date range search, datetime search.</h4>
<p>Extra for boolean search, selection search, number search.<br></p></div>
</div>
</div>
</div>
<div class="col-lg-6 s_col_no_bgcolor pb24">
<div class="row">
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box" data-tilt-feature="">
<i class="fa fa-check fa-2x rounded bg-primary text-white s_features_grid_icon"></i>
<div class="s_features_grid_content">
<h4 class="pt16">5. Search sidebar for list, kanban.</h4>
<p>Add more pivot, graph views than origin odoo.<br></p></div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box" data-tilt-feature="">
<i class="fa fa-check fa-2x rounded bg-primary text-white s_features_grid_icon"></i>
<div class="s_features_grid_content">
<h4 class="pt16">6. Support navigate in search more.</h4>
<p>Quick filter and search for m2o or m2m field.</p></div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box">
<i class="fa fa-check fa-2x rounded bg-primary text-white s_features_grid_icon"></i>
<div class="s_features_grid_content">
<h4 class="pt16">7. Easy customize for any app. any module.&nbsp;</h4>
<p>Extra param for searchpanel. view_types, class, name_field, icon</p>
</div>
</div>
<div class="col-lg-12 pt16 pb16 o_colored_level" data-name="Box">
<i class="fa fa-check fa-2x rounded bg-primary text-white s_features_grid_icon"></i>
<div class="s_features_grid_content">
<h4 class="pt16">8. Advance search in box.</h4>
<p>Product, CRM, Sales, Purchase, MRP, Stock, Accounting, HR, Project, Etc.<br></p></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end features-->
<!-- begin video-->
<section class="s_text_block o_colored_level pt16 pb16">
<div class="container s_allow_columns">
<h2 class="text-center bg-info text-white pt16 pb16">- Demo Video -</h2>
</div>
</section>
<section class="oe_container container s_text_block pt24 pb24 o_colored_level" data-snippet="s_text_block" data-name="文本">
<div class="s_allow_columns container">
<div data-oe-expression="//www.youtube.com/embed/whnmkTWsQkQ?rel=0&amp;autoplay=0" class="media_iframe_video">
<div class="css_editable_mode_display"></div>
<div class="media_iframe_video_size"></div>
<iframe src="//www.youtube.com/embed/whnmkTWsQkQ?rel=0&amp;autoplay=1" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
</div>
<p class="o_default_snippet_text"><br></p>
</div>
<div class="oe_row text-center">
<span>Click above to Play. or go </span>
<a href="https://youtu.be/whnmkTWsQkQ" target="_blank" role="button"> Youtube Video of odoo Advance Search Superbar</a>
</div>
<div class="oe_row text-center">
<p class="o_default_snippet_text">Demo Gif Animation if you can not get video</p>
<img class="oe_demo oe_screenshot img img-fluid" src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/superbar.gif">
</div>
</section>
<!-- end video-->
<!-- begin snapshot-->
<section class="s_text_block o_colored_level pt16 pb16">
<div class="container s_allow_columns">
<h2 class="text-center bg-info text-white pt16 pb16">- Feature Guide -</h2>
</div>
</section>
<section class="s_table_of_content pt24 pb24 o_cc o_cc1 o_colored_level" data-snippet="s_table_of_content" data-name="Table of Content">
<div class="container">
<div class="row s_nb_column_fixed">
<div class="col-lg-2 col-md3 s_table_of_content_navbar_wrap s_table_of_content_navbar_sticky s_table_of_content_vertical_navbar d-print-none d-none d-lg-block o_not_editable o_cc o_cc1 o_colored_level"
data-name="Navbar">
<div class="s_table_of_content_navbar list-group o_no_link_popover" style="top: 82px; max-height: calc(100vh - 102px);">
<a href="#toc_01"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0 active">All in One Search</a>
<a href="#toc_02"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Product Search</a>
<a href="#toc_03"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Sale Search</a>
<a href="#toc_04"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Purchase Search</a>
<a href="#toc_05"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Stock Search</a>
<a href="#toc_06"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">CRM Search</a>
<a href="#toc_07"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">MRP Search</a>
<a href="#toc_08"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">POS Search</a>
<a href="#toc_09"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">HR Search</a>
<a href="#toc_10"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Account Search</a>
<a href="#toc_11"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Project Search</a>
<a href="#toc_12"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Contacts Search</a>
<a href="#toc_13"
class="table_of_content_link list-group-item list-group-item-action py-2 border-0 rounded-0">Admin Search</a>
</div>
</div>
<div class="col-lg-10 col-md2 s_table_of_content_main oe_structure oe_empty o_colored_level" data-name="Content">
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_01">All in One Search</h3>
<h4 class="oe_slogan">Quick Advance Search and navigator for all app data.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/banner.png">
</div>
<h4 class="oe_slogan">Quick search in tree list header.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/banner_header_search.jpg">
</div>
<h4 class="oe_slogan">Search sidebar for M2O M2M, date range, boolean search, selection search, number search.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/banner_sidebar_search.jpg">
</div>
<h4 class="oe_slogan">Filter any data like product in search more windows</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/banner_searchmore.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_02">Product Search</h3>
<h4 class="oe_slogan">Use in product and Category.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/product1.jpg">
</div>
<h4 class="oe_slogan">Filter product or any data in search more windows</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/searchmore.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_03">Sale Search with list header</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/sale1.jpg">
</div>
<h4 class="pt16">Sale Search with sidebar</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/sale2.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_04">Purchase Search with sidebar and list header</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/purchase1.jpg">
</div>
<h4 class="pt16">Vender Price Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/purchase2.jpg">
</div>
<h4 class="pt16">Purchase report Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/purchase3.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_05">Stock Inventory Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/stock1.jpg">
</div>
<h4 class="pt16">Operation Type Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/stock2.jpg">
</div>
<h4 class="pt16">Lot Serial Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/stock3.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_06">CRM Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/crm1.jpg">
</div>
<h4 class="pt16">Leads Report Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/crm2.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_07">MRP Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/mrp1.jpg">
</div>
<h4 class="pt16">Work Order</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/mrp2.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_08">POS point of sale Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/pos1.jpg">
</div>
<h4 class="pt16">POS Report</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/pos3.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_09">HR employee Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/hr1.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_10">Account Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/account1.jpg">
</div>
<h4 class="pt16">Customer Invoice, Vendor Bill, Journal Entries Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/account2.jpg">
</div>
<h4 class="pt16">Journal Item Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/account3.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_11">Project Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/project1.jpg">
</div>
<h4 class="pt16">Task Report Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/project2.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_12">Partner contacts Search</h3>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/contacts1.jpg">
</div>
</section>
<section class="pb16 o_colored_level" style="background-image: none;">
<h3 class="text-center" data-anchor="true" id="toc_13">Admin Search</h3>
<h4 class="pt16">Menu Quick Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/base1.jpg">
</div>
<h4 class="pt16">Action Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/base2.jpg">
</div>
<h4 class="pt16">Report Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/base3.jpg">
</div>
<h4 class="pt16">Views Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/base6.jpg">
</div>
<h4 class="pt16">Attachment Search</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/base9.jpg">
</div>
</section>
</div>
</div>
</div>
</section>
<!-- end snapshot-->
<!-- begin free-->
<section class="oe_container container s_text_block o_colored_level pt16 pb16">
<h2 class="text-center bg-info text-white pt16 pb16">Get
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
free 20+ Free related apps.
</a>
</h2>
<h3 class="oe_slogan">Visit to get our [app_web_superbar] Demo</h3>
<h4 class="pt16">https://demo.odooapp.cn</h4>
</section>
<section class="oe_container container">
<div class="alert alert-info">
<i class="fa fa-hand-o-right"></i><b> Free download: </b>
<ul class="list-unstyled">
<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/16.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>
Sale order navigate by partner and channel is ready.
<a href="http://www.odoo.com/apps/modules/16.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/16.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>
Stock location navigate by parent, Picking by type is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_stock_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>
CRM browse by stage and team is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_crm_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>
MRP manufacture order navigate by state workcenter is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_mrp_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>
Pos navigate by category or store is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_pos_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/16.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>
Account chart navigate by type is ready.
<a href="http://www.odoo.com/apps/modules/16.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>
Project Advance search with superbar is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_project_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/16.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>
Admin Navigator with menu, report, etc. is ready.
<a href="http://www.odoo.com/apps/modules/16.0/app_base_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>
There is also 10+ free ztree widget addons of product, sale, stock ready for you.
<a href="https://apps.odoo.com/apps/modules/browse?search=ztree" 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(Extra pay for support).
</li>
</ul>
</div>
</section>
<!-- end free-->
<!-- begin howto-->
<section class="oe_container container s_text_block o_colored_level pt16 pb16">
<h2 class="text-center bg-info text-white pt16 pb16">- How to use -</h2>
<h3>This app need no extra module. The price already included</h3>
</section>
<section class="oe_container container">
<div class="oe_row oe_spaced">
<h4 class="pt16">
1. Buy and Install <a href="http://www.odoo.com/apps/modules/16.0/app_web_superbar/" target="_blank">app_web_superbar. </a>
</h4>
<h4 class="pt16">2. Easy use of superbar</h4>
<div class="oe_span12">
<h4 class="pt16">Show superbar in list view.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/use7.jpg">
</div>
<h4 class="pt16">Show superbar in kanban view.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/use8.jpg">
</div>
<h4 class="pt16">Show superbar in pivot view.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/use9.jpg">
</div>
<h4 class="pt16">Show superbar in graph view.</h4>
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/usea.jpg">
</div>
</div>
<h4 class="pt16">3. If you want to customize, Use follow param to setup widget(Extra pay for support):</h4>
<div class="oe_span12">
<div class="oe_demo oe_screenshot img img-fluid">
<img src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/superbar_use.png">
</div>
</div>
</div>
</section>
<!-- end howto-->
<!-- begin upsell-->
<section class="oe_container container">
<div class="oe_row">
<div class="oe_span12">
<img class="oe_demo oe_screenshot img img-fluid" src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/superbar.gif">
</div>
<p>Also We provide pro version app_web_superbar_pro. Just pay extra $68 if you already buy [app_web_superbar]</p>
<h2 class="bg-warning text-white text-center pt8 pb8">
You can get more detail for
<a href="https://www.odoo.com/apps/modules/16.0/app_web_superbar_pro/">
the pro version.
</a>
</h2>
<div class="oe_span12">
<img class="oe_demo oe_screenshot img img-fluid" src="https://apps.odoocdn.com/apps/assets/16.0/app_web_superbar/superbar_pro.gif">
</div>
</div>
</section>
<!-- end upsell-->
<!-- begin support-->
<section class="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 class="pt16">
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 class="pt16">
Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)</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">
<h4 class="pt16">Visit our website for more support.</h4>
<h4 class="pt16">https://www.odooai.cn</h4>
</div>
</div>
</div>
</section>
<!-- end support-->
</html>

View File

@@ -0,0 +1,52 @@
<odoo>
<data>
<record id="app_view_crm_case_opportunities_filter" model="ir.ui.view">
<field name="name">app.crm.lead.search.opportunity</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.view_crm_case_opportunities_filter"/>
<field name="arch" type="xml">
<xpath expr="//search">
<searchpanel view_types="tree,kanban">
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
<field name="team_id"/>
<field name="stage_id"/>
<!--<field name="tag_ids"/>-->
</searchpanel>
</xpath>
</field>
</record>
<record id="app_view_crm_case_leads_filter" model="ir.ui.view">
<field name="name">app.crm.lead.search.lead</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.view_crm_case_leads_filter"/>
<field name="arch" type="xml">
<xpath expr="//search">
<searchpanel view_types="tree,kanban">
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
<field name="team_id"/>
<field name="campaign_id"/>
<field name="medium_id"/>
<field name="source_id"/>
</searchpanel>
</xpath>
</field>
</record>
<!-- report-->
<record id="app_crm_opportunity_report_view_search" model="ir.ui.view">
<field name="name">app.crm.lead.search</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_opportunity_report_view_search"/>
<field name="arch" type="xml">
<xpath expr="//search">
<searchpanel view_types="list,kanban,pivot,graph">
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
<field name="team_id"/>
<field name="campaign_id"/>
<field name="medium_id"/>
<field name="source_id"/>
</searchpanel>
</xpath>
</field>
</record>
</data>
</odoo>