Skip to content

Commit 3c1af55

Browse files
mga-odoooihane
authored andcommittedAug 11, 2015
[ADD] New module <web_group_expand>
1 parent 0f386c1 commit 3c1af55

File tree

8 files changed

+112
-0
lines changed

8 files changed

+112
-0
lines changed
 

‎web_group_expand/__init__.py

Whitespace-only changes.

‎web_group_expand/__openerp__.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name" : "Group Expand Buttons",
3+
"category": "Hidden",
4+
"version" : '1.0',
5+
"author" : 'OpenERP SA',
6+
"description":
7+
"""
8+
A group by list can be expanded and collapased with buttons
9+
===============================================================
10+
You'll see two buttons appear on top right corner of the list when you perform a group by with which you can expand and collapse grouped records by level.
11+
""",
12+
"depends" : ["web"],
13+
"js": ["static/src/js/web_group_expand.js"],
14+
'qweb' : ["static/src/xml/expand_buttons.xml"],
15+
'css' : ["static/src/css/expand_buttons.css"],
16+
'installable': True,
17+
'auto_install': False,
18+
}
19+
Loading
4.77 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<section class="oe_container">
2+
<div class="oe_row oe_spaced">
3+
<div class="oe_span12">
4+
<h2 class="oe_slogan">Expand and Collapse Group By</h2>
5+
<h3 class="oe_slogan">A group by list can be expanded and collapased with buttons</h3>
6+
</div>
7+
<div class="oe_span6">
8+
<div class="oe_demo oe_picture oe_screenshot">
9+
<a href="https://www.openerp.com">
10+
<img src="expand_list.png">
11+
</a>
12+
<div class="oe_demo_footer oe_centeralign">Online Demo</div>
13+
</div>
14+
</div>
15+
<div class="oe_span6">
16+
<p class="oe_mt32">
17+
You'll see two buttons <img src="icon.png" width="50" height="35"> appear on top right corner of the list when you perform a group by with which you can expand and collapse grouped records by level.
18+
</p>
19+
<div class="oe_centeralign oe_websiteonly">
20+
<a href="mailto:sales@openerp.com" class="oe_button oe_big oe_tacky">Contact Us</a>
21+
</div>
22+
</div>
23+
</div>
24+
</section>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
.openerp ul#oe_group_by li.oe_group_expand{
3+
border: none;
4+
border-top: 1px solid #ababab;
5+
position:relative;
6+
font-size:13px;
7+
transform: rotate(90deg);
8+
-webkit-transform: rotate(90deg);
9+
}
10+
.openerp hr.oe_expand_button_hr{
11+
height:2px;
12+
visibility:hidden;
13+
margin-bottom:-7px;
14+
}
15+
.openerp #oe_group_by_reset {
16+
top:3px;
17+
position:relative;
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
openerp.web_group_expand = function(openerp) {
2+
var QWeb = openerp.web.qweb;
3+
openerp.web.ViewManager.include({
4+
switch_mode: function(view_type, no_store, view_options) {
5+
if (view_type != 'list' && view_type != 'tree' ) {
6+
this.$el.find("ul#oe_group_by").remove();
7+
}
8+
if(view_type == 'tree'){
9+
this.load_expand_buttons();
10+
this.$ExpandButtons.find("a#oe_group_by_reset").click(function(){
11+
$('.oe_open .treeview-tr.oe-treeview-first').filter(function(){return ($(this).parents('tr').attr('data-level') == 1)}).click()
12+
});
13+
this.$ExpandButtons.find("a#oe_group_by_expand").click(function(){
14+
$('.treeview-tr.oe-treeview-first').filter(function(){return (!$(this).parents().is('.oe_open')) & ($(this).parents().css( "display" ) != 'none')}).click();
15+
});
16+
}
17+
return this._super.apply(this, arguments);
18+
},
19+
expand: function(domains, contexts, groupbys) {
20+
this.$el.find("ul#oe_group_by").remove();
21+
if(groupbys.length && this.active_view == 'list') {
22+
this.load_expand_buttons();
23+
this.$el.find("a#oe_group_by_reset").click(function(){
24+
$('span.ui-icon-triangle-1-s').click()
25+
});
26+
this.$el.find("a#oe_group_by_expand").click(function(){
27+
$('span.ui-icon-triangle-1-e').click()
28+
});
29+
}
30+
},
31+
load_expand_buttons:function() {
32+
var self = this;
33+
this.$ExpandButtons = $(QWeb.render("GroupExpand.Buttons", {'widget':self}));
34+
this.$el.find("ul.oe_view_manager_switch.oe_button_group.oe_right").before(this.$ExpandButtons);
35+
},
36+
setup_search_view: function(view_id, search_defaults) {
37+
self = this;
38+
res = this._super.apply(this, arguments);
39+
this.searchview.on('search_data', self, this.expand);
40+
return res
41+
},
42+
})
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- vim:fdl=1:
3+
-->
4+
<templates id="template" xml:space="preserve">
5+
<t t-name="GroupExpand.Buttons">
6+
<div class="oe_list_buttons"><ul id="oe_group_by" class="oe_view_manager_switch oe_button_group oe_right"><li class="oe_i oe_group_expand"><a id="oe_group_by_expand"><hr class="oe_expand_button_hr"/>( )</a></li><li class="oe_i"><a id="oe_group_by_reset">P</a></li></ul></div>
7+
</t>
8+
</templates>

0 commit comments

Comments
 (0)
Please sign in to comment.