forked from guohuadeng/app-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e750967
commit 98c9b20
Showing
26 changed files
with
312 additions
and
0 deletions.
There are no files selected for viewing
Binary file modified
BIN
-11.5 KB
(83%)
app_account_invoice_product_multi_add/static/description/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+139 KB
(100%)
app_account_invoice_product_multi_add/static/description/sale1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from . import models | ||
from .hooks import post_init_hook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Created on 2018-08-15 | ||
# author: 广州尚鹏,http://www.sunpop.cn | ||
# email: [email protected] | ||
# resource of Sunpop | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
# Odoo在线中文用户手册(长期更新) | ||
# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html | ||
|
||
# Odoo10离线中文用户手册下载 | ||
# http://www.sunpop.cn/odoo10_user_manual_document_offline/ | ||
# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) | ||
# http://www.sunpop.cn/odoo10_developer_document_offline/ | ||
# description: | ||
|
||
{ | ||
'name': "app product browse by category navigator", | ||
'version': '12.0.10.29', | ||
'author': 'Sunpop.cn', | ||
'category': 'Base', | ||
'website': 'http://www.sunpop.cn', | ||
'license': 'LGPL-3', | ||
'sequence': 2, | ||
'summary': """ | ||
Browse Product by category tree. Use for parent children tree list kanban navigator. | ||
ztree widget. | ||
""", | ||
'description': """ | ||
Superbar, zTree widget. | ||
Advance search with real parent children tree, ListView or KanbanView , | ||
eg: Product category tree ,Department tree, stock location tree. | ||
超级方便的查询,树状视图。 | ||
""", | ||
'price': 0.00, | ||
'currency': 'EUR', | ||
'depends': [ | ||
'product', | ||
], | ||
'images': ['static/description/banner.png'], | ||
'data': [ | ||
'views/product_views.xml', | ||
], | ||
'demo': [ | ||
], | ||
'test': [ | ||
], | ||
'css': [ | ||
], | ||
'qweb': [ | ||
'static/src/xml/*.xml', | ||
], | ||
'js': [ | ||
], | ||
'post_load': None, | ||
'post_init_hook': 'post_init_hook', | ||
'installable': True, | ||
'application': True, | ||
'auto_install': False, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Created on 2018-10-12 | ||
# author: 广州尚鹏,http://www.sunpop.cn | ||
# email: [email protected] | ||
# resource of Sunpop | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
# Odoo在线中文用户手册(长期更新) | ||
# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html | ||
|
||
# Odoo10离线中文用户手册下载 | ||
# http://www.sunpop.cn/odoo10_user_manual_document_offline/ | ||
# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) | ||
# http://www.sunpop.cn/odoo10_developer_document_offline/ | ||
# description: | ||
|
||
def post_init_hook(cr, pool): | ||
pass | ||
# cr.execute("") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * felive_home | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2018-01-08 14:28+0000\n" | ||
"PO-Revision-Date: 2018-01-08 14:28+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: \n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# -*- coding: utf-8 -*- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
<section class="oe_container"> | ||
<div class="oe_row oe_spaced" style="max-width: 95%;"> | ||
<h2 class="oe_slogan" style="color:#875A7B;">Product Super Sidebar for Advance Search with Parent Children Tree</h2> | ||
<h3 class="oe_slogan">Advance Search, Advance Filter with Parent Children Tree. | ||
Easy to navigator and browser any data. Support list, kanban, pivot, graph view. </h3> | ||
<h1>!This moduld Do Need extra paid Apps | ||
<a href="http://www.odoo.com/apps/modules/11.0/app_web_superbar/" target="_blank"> | ||
<i class="fa fa-download text-warning"></i>Click to download. | ||
</a> </h1> | ||
</div> | ||
</section> | ||
<section class="oe_container"> | ||
<div class="oe_row"> | ||
<div class="oe_span12"> | ||
<img class="oe_demo oe_picture oe_screenshot" src="banner.png"> | ||
</div> | ||
<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> | ||
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> | ||
Product navigate by category or type is ready. | ||
<a href="http://www.odoo.com/apps/modules/11.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/11.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/11.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/11.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/11.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 coming soon. | ||
</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_picture oe_screenshot"> | ||
<img oe_demo oe_picture oe_screenshot src="superbar.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> | ||
<h4 class="oe_slogan oe_spaced">1. Install zTree widget | ||
<a href="http://www.odoo.com/apps/modules/11.0/app_web_widget_ztree/" target="_blank"> | ||
<i class="fa fa-download text-warning"></i>Click to download. | ||
</a> | ||
</h4> | ||
<h4 class="oe_slogan oe_spaced">2. Install app_web_superbar. <span class="text-warning">Important! Reboot odoo after installed.</span> | ||
</h4> | ||
<div class="oe_demo oe_picture oe_screenshot"> | ||
<img src="demo2.jpg"> | ||
</div> | ||
<h4 class="oe_slogan oe_spaced">3. If you want to customize, Use follow param to setup widget:</h4> | ||
<div class="oe_span12"> | ||
<div class="oe_demo oe_picture oe_screenshot"> | ||
<img src="superbar_use.gif"> | ||
</div> | ||
<div class="alert alert-info" style="padding:8px;font-weight: 300; font-size: 20px;"> | ||
<h4>In searchview xml, Write the <superbar> tag,</h4> | ||
<h4>position: [left, right]</h4> | ||
<h4>view_mode: [kanban,tree, pivot, graph view.] </h4> | ||
<h4>parent_key: key field name of parent child relation. leave blank would auto set.</h4> | ||
<h4>level: how many level to expend the tree for initialize. Default is 2</h4> | ||
<h4>limit: how many record to show ztree. Default is 16</h4> | ||
<h4>order: the field name to order by</h4> | ||
<h4>domain: set the domain for data, eg: [[('is_company', '=', 1)]]</h4> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="oe_container"> | ||
<div class="oe_row oe_spaced"> | ||
<h4 class="oe_slogan">Use in product category.</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 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">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 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:[email protected]"><span | ||
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span> | ||
<i class="fa fa-envelope"></i> [email protected]</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:[email protected]"><span | ||
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span> | ||
<i class="fa fa-envelope"></i> [email protected]</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="http://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>http://www.sunpop.cn</a> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<odoo> | ||
<data> | ||
<!-- Product --> | ||
<record id="product_template_search_view_superbar" model="ir.ui.view"> | ||
<field name="name">product.template.search.ztree</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="product.product_template_search_view"/> | ||
<field name="arch" type="xml"> | ||
<xpath expr="//search"> | ||
<superbar position="right" view_mode="kanban,tree"> | ||
<field name="categ_id" domain="[]" | ||
parent_key="parent_id" level="2"/> | ||
<field name="type"/> | ||
</superbar> | ||
</xpath> | ||
</field> | ||
</record> | ||
</data> | ||
</odoo> |
Binary file modified
BIN
-11.5 KB
(83%)
app_purchase_product_multi_add/static/description/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11.5 KB
(83%)
app_stock_picking_product_multi_add/static/description/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+139 KB
(100%)
app_stock_picking_product_multi_add/static/description/sale1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.