openerp.web_kanban = function (openerp) { QWeb.add_template('/web_kanban/static/src/xml/web_kanban.xml'); openerp.web.views.add('kanban', 'openerp.web_kanban.KanbanView'); openerp.web_kanban.KanbanView = openerp.web.View.extend({ init: function (parent, element_id, dataset, view_id, options) { this._super(parent, element_id); this.set_default_options(options); this.dataset = dataset; this.model = dataset.model; this.domain = dataset.domain; this.context = dataset.context; this.view_id = view_id; this.fields_view = {}; this.group_by = []; this.source_index = {}; this.all_display_data = false; this.groups = []; this.qweb = new QWeb2.Engine(); }, start: function() { return this.rpc("/web/view/load", {"model": this.model, "view_id": this.view_id, "view_type": "kanban"}, this.on_loaded); }, on_loaded: function(data) { var self = this; this.fields_view = data; this.add_qweb_template(); if (this.qweb.has_template('kanban-box')) { self.dataset.read_slice(_.keys(self.fields_view.fields), { context: self.dataset.get_context(), domain: self.dataset.get_domain() }, function (records) { self.all_display_data = [{'records': records, 'value': false, 'header': false, 'ids': self.dataset.ids}]; self.on_show_data(self.all_display_data); } ); } }, add_qweb_template: function() { for (var i=0, ii=this.fields_view.arch.children.length; i < ii; i++) { var child = this.fields_view.arch.children[i]; if (child.tag === "templates") { this.transform_qweb_template(child); this.qweb.add_template(openerp.web.json_node_to_xml(child)); break; } } }, do_get_kanban_color: function(variable) { var number_of_color_schemes = 2, index = 0; switch (typeof(variable)) { case 'string': for (var i=0, ii=variable.length; i 0) { drag_handel = ".oe_kanban_draghandle"; } this.$element.find(".oe_column").sortable({ connectWith: ".oe_column", handle : drag_handel, start: function(event, ui) { self.source_index['index'] = ui.item.index(); self.source_index['column'] = ui.item.parent().attr('id'); }, stop: self.on_receive_record, }); this.$element.find(".oe_column").disableSelection() this.$element.find('button.oe_kanban_button_new').click(this.do_add_record); }, on_button_click: function (button_attrs, record_id) { var self = this; if (this.groups.length) { _.each(this.groups, function (group) { group.list([], function (groups) {}, function (dataset) { dataset.read_slice([], {}, function(records) { var index = parseInt(_.indexOf(dataset.ids, record_id)); if(index >= 0) { self.on_confirm_click(dataset, button_attrs, index, record_id); } }); } ); }); } else { var index = parseInt(_.indexOf(self.dataset.ids, record_id)); if (index >= 0) { _.extend(self.dataset, {domain: self.domain, context: self.context}); self.on_confirm_click(self.dataset, button_attrs, index, record_id); } } }, on_confirm_click: function (dataset, button_attrs, index, record_id) { if (button_attrs.type == 'edit') { this.do_edit_record(dataset, index); } else { this.on_execute_button_click(dataset, button_attrs, record_id); } }, do_add_record: function () { this.do_edit_record(this.dataset, null); }, do_edit_record: function (dataset, index) { var self = this; _.extend(this.dataset, { domain: dataset.domain, context: dataset.get_context() }).read_slice([], {}, function () { self.dataset.index = index; self.do_switch_view('form'); }); }, do_delete: function (id) { var self = this; return $.when(this.dataset.unlink([id])).then(function () { self.drop_records(id); }); }, drop_records: function (id) { var self = this; _.each(self.all_display_data, function(data, index) { _.each(data.records, function(record, index_row) { if (parseInt(record.id) == id) { self.all_display_data[index]['records'].splice(index_row, 1); self.all_display_data[index]['ids'].splice(index_row, 1); return false; } }); }); self.$element.find("#main_" + id).remove(); }, on_execute_button_click: function (dataset, button_attrs, record_id) { var self = this; this.execute_action( button_attrs, dataset, record_id, function () { var count = 1; _.each(self.all_display_data, function(data, index) { self.dataset.read_ids( data.ids, [], function(records){ self.all_display_data[index].records = records; if(self.all_display_data.length == count) { self.do_actual_search(); } count++; }); }); } ); }, on_receive_record: function (event, ui) { var self = this; var from = ui.item.index(); var search_action = false; var to = ui.item.prev().index() || 0; if (!ui.item.attr("id")) { return false; } // TODO fme: check what was this sequence if (self.fields_view.fields.sequence && (self.source_index.index >= 0 && self.source_index.index != from) || (self.source_index.column && self.source_index.column != ui.item.parent().attr('id'))) { var child_record = ui.item.parent().children(); var data, sequence = 1, index = to; child_record.splice(0, to); var flag = false; if (to >= 0 && child_record) { var record_id = parseInt($(child_record).attr("id").split("_")[1]); if (record_id) { _.each(self.all_display_data, function(data, index) { _.each(data.records, function(record, index_row) { if(record_id == record.id && record.sequence) { sequence = record.sequence; flag = true; return false; } }); if(flag) {return false;} }); } } _.each(child_record, function (child) { var child_id = parseInt($(child).attr("id").split("_")[1]); if (child_id) { flag = false; _.each(self.all_display_data, function(data, index) { _.each(data.records, function(record, index_row) { if(parseInt(record.id) == child_id) { self.all_display_data[index]['records'][index_row]['sequence'] = sequence; flag = true; return false; } }); if (flag) {return false;} }); self.dataset.write(child_id, {sequence: sequence}); sequence++; search_action = true; } }); } if (self.group_by.length > 0 && self.source_index.column && self.source_index.column != ui.item.parent().attr('id')) { var value = ui.item.closest("td").attr("id"); if (value) { var data_val = {}; var wirte_id = parseInt(ui.item.attr("id").split("_")[1]); value = value.split("_")[1]; if (value == 'false') { value = false; } var update_record = false; _.each(self.all_display_data, function(data, index) { _.each(data.records, function(record, index_row) { if(parseInt(record.id) == wirte_id) { self.all_display_data[index]['records'][index_row][self.group_by[0]] = value; update_record = self.all_display_data[index]['records'].splice(index_row,1) return false; } }); if (update_record) {return false;} }); _.each(self.all_display_data, function(data, index) { if (data.value == value || (data.value == 'false' && value == false)) { self.all_display_data[index]['records'].push(update_record[0]); } }); data_val[self.group_by[0]] = value; self.dataset.write(wirte_id, data_val); search_action = true; } } if (search_action) { self.on_reload_kanban(); } this.source_index = {}; }, on_reload_kanban: function (){ var self = this; _.each(self.all_display_data, function(data, index) { if (data.records.length > 0){ _.each(data.records, function(record) { self.$element.find("#main_" + record.id).children().remove(); self.$element.find("#main_" + record.id).append(self.qweb.render('kanban-box', self.do_transform_record(record))); }); } else { self.$element.find("#column_" + data.value).remove(); self.all_display_data.splice(index, 1); } }); this.$element.find('.oe_kanban_action').click(function() { var record_id = $(this).closest(".oe_kanban_record").attr("id"); if (record_id) { record_id = parseInt(record_id.split("_")[1]) if (record_id) { if ($(this).data("type") == "delete") { self.do_delete(record_id); } else { var button_attrs = $(this).data() self.on_button_click(button_attrs, record_id); } } } }); this.$element.find('.oe_kanban_record').click(function() { $(this).find('.oe_kanban_box_show_onclick').removeClass('oe_kanban_box_show_onclick'); }); }, do_transform_record: function(record) { var self = this, new_record = {}; _.each(record, function(value, name) { var r = _.clone(self.fields_view.fields[name]); r.raw_value = value; r.value = openerp.web.format_value(value, r); new_record[name] = r; }); new_record.__kanban_color = this.do_get_kanban_color; return new_record; }, do_search: function (domains, contexts, group_by) { var self = this; this.rpc('/web/session/eval_domain_and_context', { domains: domains, contexts: contexts, group_by_seq: group_by }, function (results) { self.domain = results.domain; self.context = results.context; self.group_by = results.group_by; self.do_actual_search(); }); }, do_actual_search : function () { var self = this; self.datagroup = new openerp.web.DataGroup(self, self.model, self.domain, self.context, self.group_by || []); self.dataset.context = self.context; self.dataset.domain = self.domain; self.datagroup.list([], function (groups) { self.groups = groups; self.do_render_group(groups); }, function (dataset) { self.domain = dataset.domain; self.context = dataset.context; self.groups = []; self.dataset.read_slice([], {}, function(records) { self.all_display_data = [{'records': records, 'value':false, 'header' : false, 'ids': self.dataset.ids}]; self.$element.find(".oe_kanban_view").remove(); self.on_show_data(self.all_display_data); }); } ); }, do_render_group : function (datagroups) { this.all_display_data = []; var self = this; _.each(datagroups, function (group) { self.dataset.context = group.context; self.dataset.domain = group.domain; var group_name = group.value; var group_value = group.value; if (!group.value) { group_name = "Undefined"; group_value = 'false'; } else if (group.value instanceof Array) { group_name = group.value[1]; group_value = group.value[0]; } self.dataset.read_slice([], {}, function(records) { self.all_display_data.push({"value" : group_value, "records": records, 'header':group_name, 'ids': self.dataset.ids}); if (datagroups.length == self.all_display_data.length) { self.$element.find(".oe_kanban_view").remove(); self.on_show_data(self.all_display_data); } }); }); }, do_show: function () { this.$element.show(); }, do_hide: function () { this.$element.hide(); } }); }; // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: