[add] port web_export_view to OpenERP 7

This commit is contained in:
Leonardo Pistone
2013-06-04 11:06:55 +02:00
committed by Pedro M. Baeza
parent d6ee226cd4
commit 5327689b97
6 changed files with 72 additions and 70 deletions

View File

@@ -19,48 +19,25 @@
//
//#############################################################################
openerp.web_export_view = function(openerp) {
openerp.web_export_view = function(instance, m) {
_t = openerp.web._t;
var _t = instance.web._t,
QWeb = instance.web.qweb;
openerp.web.Sidebar = openerp.web.Sidebar.extend({
add_default_sections: function() {
// IMHO sections should be registered objects
// as views and retrieved using a specific registry
// so that we don't have to override this
var self = this,
view = this.widget_parent,
view_manager = view.widget_parent,
action = view_manager.action;
if (this.session.uid === 1) {
this.add_section(_t('Customize'), 'customize');
this.add_items('customize', [{
label: _t("Translate"),
callback: view.on_sidebar_translate,
title: _t("Technical translation")
}]);
}
this.add_section(_t('Other Options'), 'other');
this.add_items('other', [
{
label: _t("Export"),
callback: view.on_sidebar_export
},
{
label: _t("Export current view"),
callback: this.on_sidebar_export_view
}
]);
instance.web.Sidebar.include({
redraw: function() {
var self = this;
this._super.apply(this, arguments);
self.$el.find('.oe_sidebar').append(QWeb.render('AddExportViewMain', {widget: self}));
self.$el.find('.oe_sidebar_export_view_xls').on('click', self.on_sidebar_export_view_xls);
},
on_sidebar_export_view: function() {
on_sidebar_export_view_xls: function() {
// Select the first list of the current (form) view
// or assume the main view is a list view and use that
var self = this,
view = this.widget_parent; // valid for list view
view = this.getParent(),
columns = view.visible_columns;
if (view.widget_children) {
view.widget_children.every(function(child) {
if (child.field && child.field.type == 'one2many') {
@@ -74,7 +51,6 @@ openerp.web_export_view = function(openerp) {
return true;
});
}
var columns = view.visible_columns;
export_columns_keys = [];
export_columns_names = [];
$.each(columns,function(){
@@ -84,19 +60,22 @@ openerp.web_export_view = function(openerp) {
export_columns_names.push(this.string);
}
});
rows = view.$element.find('.ui-widget-content tr');
rows = view.$el.find('.oe_list_content > tbody > tr');
export_rows = [];
$.each(rows,function(){
$row = $(this);
// find only rows with data
if($row.attr('data-id')){
export_row = [];
$.each(export_columns_keys,function(){
cell = $row.find('td[data-field="'+this+'"]').get(0);
text = cell.text || cell.textContent || cell.innerHTML || "";
export_row.push(text.trim());
});
export_rows.push(export_row);
checked = $row.find('th input[type=checkbox]').attr("checked");
if (checked === "checked"){
$.each(export_columns_keys,function(){
cell = $row.find('td[data-field="'+this+'"]').get(0);
text = cell.text || cell.textContent || cell.innerHTML || "";
export_row.push(text.trim());
});
export_rows.push(export_row);
}
}
});
$.blockUI();
@@ -113,4 +92,4 @@ openerp.web_export_view = function(openerp) {
});
}
};

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- vim:fdl=1:
-->
<templates id="template" xml:space="preserve">
<t t-name="AddExportViewMain">
<div class="oe_form_dropdown_section">
<button class="oe_dropdown_toggle oe_dropdown_arrow">Export Current View</button>
<ul class="oe_dropdown_menu">
<li class="oe_sidebar_export_view_xls"><span>Excel</span></li>
</ul>
</div>
</t>
</templates>