mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
release super pro
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
'images': ['static/description/banner.png'],
|
||||
'data': [
|
||||
'views/sale_order_views.xml',
|
||||
'report/sale_report_views.xml',
|
||||
],
|
||||
'demo': [
|
||||
],
|
||||
|
||||
18
app_sale_superbar/report/sale_report_views.xml
Normal file
18
app_sale_superbar/report/sale_report_views.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="app_view_order_product_search" model="ir.ui.view">
|
||||
<field name="name">app.sale.report.search</field>
|
||||
<field name="model">sale.report</field>
|
||||
<field name="inherit_id" ref="sale.view_order_product_search"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//search" position="inside">
|
||||
<searchpanel view_types="tree,kanban,pivot,graph">
|
||||
<field name="team_id"/>
|
||||
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
|
||||
</searchpanel>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
@@ -7,10 +7,11 @@
|
||||
<field name="inherit_id" ref="sale.sale_order_view_search_inherit_quotation"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//search">
|
||||
<searchpanel view_types="list,kanban,pivot,graph,activity">
|
||||
<field name="date_order"/>
|
||||
<field name="delivery_rating_success"/>
|
||||
<field name="currency_rate"/>
|
||||
<searchpanel view_types="list,kanban,pivot,graph">
|
||||
<field name="team_id"/>
|
||||
<field name="user_id"/>
|
||||
<field name="partner_id" filter_domain="[('customer_rank','>', 0)]" limit="1000"/>
|
||||
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
|
||||
</searchpanel>
|
||||
</xpath>
|
||||
</field>
|
||||
|
||||
4
app_sale_superbar_pro/__init__.py
Normal file
4
app_sale_superbar_pro/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from .hooks import post_init_hook
|
||||
62
app_sale_superbar_pro/__manifest__.py
Normal file
62
app_sale_superbar_pro/__manifest__.py
Normal file
@@ -0,0 +1,62 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Created on 2018-08-15
|
||||
# author: 广州尚鹏,https://www.sunpop.cn
|
||||
# email: 300883@qq.com
|
||||
# resource of Sunpop
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
# Odoo在线中文用户手册(长期更新)
|
||||
# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html
|
||||
|
||||
# Odoo10离线中文用户手册下载
|
||||
# https://www.sunpop.cn/odoo10_user_manual_document_offline/
|
||||
# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备)
|
||||
# https://www.sunpop.cn/odoo10_developer_document_offline/
|
||||
# description:
|
||||
|
||||
{
|
||||
'name': "Advance sale order navigator by partner and channel",
|
||||
'version': '16.23.03.05',
|
||||
'author': 'Sunpop.cn',
|
||||
'category': 'Base',
|
||||
'website': 'https://www.sunpop.cn',
|
||||
'license': 'LGPL-3',
|
||||
'sequence': 2,
|
||||
'summary': """
|
||||
Browse sale order by partner and sale channel. Use for parent children tree list kanban navigator.
|
||||
ztree widget.Hierarchy Tree.Parent Children relation tree..
|
||||
""",
|
||||
'description': """
|
||||
Superbar, zTree widget.
|
||||
Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree,
|
||||
eg: Product category tree ,Department tree, stock location tree.
|
||||
超级方便的查询,树状视图。
|
||||
""",
|
||||
'price': 0.00,
|
||||
'currency': 'EUR',
|
||||
'depends': [
|
||||
'app_sale_superbar',
|
||||
],
|
||||
'images': ['static/description/banner.png'],
|
||||
'data': [
|
||||
'views/sale_order_views.xml',
|
||||
'report/sale_report_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_sale_superbar_pro/hooks.py
Normal file
20
app_sale_superbar_pro/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_sale_superbar_pro/i18n/zh_CN.po
Normal file
14
app_sale_superbar_pro/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_sale_superbar_pro/models/__init__.py
Normal file
1
app_sale_superbar_pro/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
2
app_sale_superbar_pro/report/__init__.py
Normal file
2
app_sale_superbar_pro/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
15
app_sale_superbar_pro/report/sale_report_views.xml
Normal file
15
app_sale_superbar_pro/report/sale_report_views.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="app_view_order_product_search_pro" model="ir.ui.view">
|
||||
<field name="name">app.pro.sale.report.search</field>
|
||||
<field name="model">sale.report</field>
|
||||
<field name="inherit_id" ref="app_sale_superbar.app_view_order_product_search"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//searchpanel//field[1]" position="before">
|
||||
<field name="date"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
BIN
app_sale_superbar_pro/static/description/banner.png
Normal file
BIN
app_sale_superbar_pro/static/description/banner.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 109 KiB |
BIN
app_sale_superbar_pro/static/description/icon.png
Normal file
BIN
app_sale_superbar_pro/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 90 KiB |
521
app_sale_superbar_pro/static/description/index.html
Normal file
521
app_sale_superbar_pro/static/description/index.html
Normal file
@@ -0,0 +1,521 @@
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||
<h2 class="oe_slogan" style="color:#875A7B;">Advance Sale search Sidebar with Parent Children Tree</h2>
|
||||
</div>
|
||||
</section>
|
||||
<section class="oe_container">
|
||||
<div class="oe_row">
|
||||
<div class="oe_span12">
|
||||
<img class="oe_demo oe_screenshot" src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/superbar_pro.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/13.0/app_web_superbar_pro/">
|
||||
this 1 Advance Search Apps
|
||||
</a>
|
||||
in odoo Store. Get
|
||||
<a href="https://www.odoo.com/apps/modules/browse?search=ztree" target="_blank">
|
||||
free 20+ 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><span class="text-warning">What you see is what you get. </span>
|
||||
</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: v13.20.07.26, Support instant and lazy mode.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
1. Can Add search sidebar in any odoo app. Easy to navigator and browse any data.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
2. Provide over 10 free search app like Like Product, CRM, Sale order, Purchase order, MRP, Inventory, Accounting vouchers, Mrp order, HR etc.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
3. Support variety of field type like many2one relation, many2many relation, date and datetime, number and money, char search.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
4. Fully compatible with all odoo apps and odoo search. like search build inside
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
5. Support instant or lazy search. Instant for just one click to search. Lazy for set all filter then click to search, good perform for big data.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
6. Support lot kind of view like list / tree, kanban, pivot, graph view.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
7. Support search more view, easy to find product for sale / purchase order. (Only for instant mode)
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
8. Show Advance Search, Advance Filter with Parent Children Tree.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
9. Mobile ok for Adaptive responsive view. also optimize for big screen hd view > 992px;
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
10. Easy to customize or add advance search sidebar to 3rd apps. Follow reference.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
11. Multi-language Support.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
12. Multi-Company Support.
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
13. Support Odoo 13, Enterprise and Community Edition. Also you can find odoo 12,11,10 support in
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_web_superbar/" target="_blank">app_web_superbar</a>
|
||||
</li>
|
||||
</ul>
|
||||
<i class="fa fa-hand-o-right"></i><b> Get the follow 20+ free demo in follow link </b>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
Pro Product navigate by category or type is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_product_superbar_pro/" 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>
|
||||
Pro Sale order navigate by partner and channel is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_sale_superbar_pro/" 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>
|
||||
Normal Product navigate by category or type is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Normal Sale order navigate by partner and channel is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Pos navigate by category or store is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Account chart navigate by type is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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/13.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>
|
||||
CRM browse by stage and team is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Purchase order navigate by partner is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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/13.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>
|
||||
HR employee navigate by department is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
MRP manufacture order navigate by state workcenter is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Project Navigator by partner, user, Task Navigator by project. Module Navigator is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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>
|
||||
Apps Navigator by Category, Module Navigator is ready.
|
||||
<a href="http://www.odoo.com/apps/modules/13.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(Extra pay for support).
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
Extra bonus apps. This apps depend on [app_web_widget_ztree]<br/>
|
||||
<a href="https://www.odoo.com/apps/modules/13.0/app_web_widget_ztree/" target="_blank">
|
||||
click to get free apps Hierarchy Parent tree in m2o select.
|
||||
</a>
|
||||
you can get follow
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-check-square-o text-primary"></i>
|
||||
Stock Location Hierarchy Parent tree in m2o select
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_stock_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>
|
||||
Product category Hierarchy Parent tree in m2o select
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_product_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>
|
||||
Hr Department Parent tree in m2o select
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_hr_ztree/" target="_blank">
|
||||
<i class="fa fa-download text-warning"></i>Click to download.
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h1> </h1>
|
||||
<h1 class="text-danger text-center">Instant Search in 1 Click. Lazy Search for big data.</h1>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img oe_demo oe_screenshot src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/searchmode.jpg"/>
|
||||
</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">Sale by date and team, saleman, etc.., list, kanban, pivot, search more view</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img oe_demo oe_screenshot src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/banner.png"/>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
</div>
|
||||
<div class="oe_row oe_spaced">
|
||||
<h1> </h1>
|
||||
<h4 class="oe_slogan">Filter product or any data in search more windows</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img oe_demo oe_screenshot src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/searchmore.jpg"/>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Free to Use in Sale. Search date range, search ammount in lazy mode</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/sale1.gif">
|
||||
</div>
|
||||
<h4 class="oe_slogan">Use in Sale. Search date, search team in instant mode</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/sale2.gif">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Free to Use in product category.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar_pro/product1.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Free to Use in POS point of sale.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/pos1.jpg">
|
||||
</div>
|
||||
<h4 class="oe_slogan">POS product and order.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/pos2.jpg">
|
||||
</div>
|
||||
<h4 class="oe_slogan">POS report.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/pos3.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Use in HR employee.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/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="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/account1.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Use in CRM.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/crm1.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="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/purchase1.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h4 class="oe_slogan">Use in MRP.</h4>
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/mrp1.gif">
|
||||
</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="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/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="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/contacts1.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 class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/demo_module2.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h1 class="text-danger text-center">Buy this apps, get Extra bonus apps, App zTree widget, Hierarchy Parent tree in m2o select</h1>
|
||||
<h4 class="oe_slogan">Ready for product category Hierarchy Parent tree in m2o select</h4>
|
||||
<div class="oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/z_product1.gif">
|
||||
</div>
|
||||
<h4 class="oe_slogan">Ready for Stock Location Hierarchy Parent tree in m2o select</h4>
|
||||
<div class="oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/z_stock1.gif">
|
||||
</div>
|
||||
<h4 class="oe_slogan">Ready for Hr Department Hierarchy Parent tree in m2o select</h4>
|
||||
<div class="oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/z_hr1.gif">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h1> </h1>
|
||||
<h1 class="text-danger text-center">How to use! This app do need extra module. The price already included</h1>
|
||||
<div class="oe_span12">
|
||||
<h4 class="oe_slogan oe_spaced">1. Buy and Install zTree widget.
|
||||
<a href="http://www.odoo.com/apps/modules/13.0/app_web_widget_ztree/" target="_blank">
|
||||
<i class="fa fa-download text-warning"></i>Click to download.
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<h4 class="oe_slogan oe_spaced">2. Buy and Install <a href="http://www.odoo.com/apps/modules/13.0/app_web_superbar/" target="_blank">app_web_superbar. </a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<h4 class="oe_slogan oe_spaced">3. Easy use of super search sidebar</h4>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Show Super search sidebar in list view.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/use7.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Show Super search sidebar in search more view.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/searchmore.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Show Super search sidebar in kanban view.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/use8.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Show Super search sidebar in pivot view.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/use9.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Show Super search sidebar in graph view.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="//apps.odoocdn.com/apps/assets/13.0/app_web_superbar/usea.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Click switch to show or hide superbar.</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="use1.jpg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12 oe_spaced">
|
||||
<h4 class="oe_slogan">Set multi field to search or filter</h4>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<div class="oe_demo oe_screenshot">
|
||||
<img src="use4.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span12">
|
||||
<h4 class="oe_slogan oe_spaced">4. 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 src="superbar_use.gif">
|
||||
</div>
|
||||
<h4 class="oe_slogan oe_spaced">Attribute of superbar</h4>
|
||||
<ul class="oe_spaced" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||
<li>In search view xml, Write the <superbar> tag,</li>
|
||||
<li>position: [left, right]</li>
|
||||
<li>view_mode: [kanban,tree,pivot,search]</li>
|
||||
<li>field: like normal field define</li>
|
||||
</ul>
|
||||
<h4 class="oe_slogan oe_spaced">Attribute of field define</h4>
|
||||
<ul class="oe_spaced" style="padding:8px;font-weight: 300; font-size: 20px;">
|
||||
<li>parent_key: key field name of parent child relation. leave blank would auto set.</li>
|
||||
<li>level: how many level to expend the tree for initialize. Default is 2</li>
|
||||
<li>limit: how many record to show ztree. Default is 16</li>
|
||||
<li>order: the field name to order by</li>
|
||||
<li>domain: set the domain for data, eg: [[('is_company', '=', 1)]]</li>
|
||||
<li>--</li>
|
||||
<li>Or you can set dynamic domain in .py file.</li>
|
||||
<li>use param: searchpanel_domain_xxx , xxx is a field name.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</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 (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>
|
||||
Visit our website for more support.</h4>
|
||||
<h4>https://www.sunpop.cn</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
BIN
app_sale_superbar_pro/static/description/superbar_pro.gif
Normal file
BIN
app_sale_superbar_pro/static/description/superbar_pro.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 MiB |
32
app_sale_superbar_pro/views/sale_order_views.xml
Normal file
32
app_sale_superbar_pro/views/sale_order_views.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<odoo>
|
||||
<data>
|
||||
<!-- sale quotation -->
|
||||
<record id="sale_order_view_search_inherit_quotation_superbarpro" model="ir.ui.view">
|
||||
<field name="name">sale.order.search.inherit.quotation.superbarpro</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="app_sale_superbar.sale_order_view_search_inherit_quotation_superbar"/>
|
||||
<field name="arch" type="xml">
|
||||
<!--使用 lazy 模式-->
|
||||
<xpath expr="//searchpanel" position="attributes">
|
||||
<attribute name="options">{'is_lazy':1}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//searchpanel//field[@name='team_id']" position="before">
|
||||
<field name="date_order"/>
|
||||
<field name="amount_total"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<!-- sale order -->
|
||||
<record id="sale_order_view_search_inherit_sale_superbarpro" model="ir.ui.view">
|
||||
<field name="name">sale.order.search.inherit.sale.superbarpro</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="app_sale_superbar.sale_order_view_search_inherit_sale_superbar"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//searchpanel//field[@name='team_id']" position="before">
|
||||
<field name="date_order"/>
|
||||
<field name="amount_total"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user