Merge lp:~openerp-dev/openerp-web/7.0-imp-task-kanban-fka into lp:openerp-web/7.0

Proposed by Foram Katharotiya (OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openerp-web/7.0-imp-task-kanban-fka
Merge into: lp:openerp-web/7.0
Diff against target: 50 lines (+8/-3)
3 files modified
addons/web/static/src/css/base.css (+3/-0)
addons/web/static/src/css/base.sass (+2/-0)
addons/web_kanban/static/src/js/kanban.js (+3/-3)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/7.0-imp-task-kanban-fka
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+154320@code.launchpad.net

Description of the change

Hello,

 - I have change icon into pen icon in project kanban.
 - In kaban view remove Remaining time" below column header if time estimations on tasks are not activated in the project settings.
 - select task form project, solve the issue of all projects appear in kanban of tasks when drag & drop column.

Thanks,
FKA

To post a comment you must log in.
3854. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3855. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3856. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3857. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3858. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3859. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3860. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3861. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3862. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3863. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3864. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3865. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3866. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3867. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3868. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3869. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3870. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3871. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3872. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3873. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3874. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3875. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3876. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3877. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3878. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3879. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

Unmerged revisions

3879. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3878. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3877. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3876. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3875. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3874. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3873. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3872. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3871. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

3870. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'addons/web/static/src/css/base.css'
2--- addons/web/static/src/css/base.css 2013-06-27 09:17:05 +0000
3+++ addons/web/static/src/css/base.css 2013-07-01 10:30:15 +0000
4@@ -347,6 +347,9 @@
5 font-size: 34px;
6 font-weight: 300 !important;
7 }
8+.openerp .oe_e .edit_icon:after {
9+ content: "&";
10+}
11 .openerp .oe_left {
12 float: left;
13 margin-right: 8px;
14
15=== modified file 'addons/web/static/src/css/base.sass'
16--- addons/web/static/src/css/base.sass 2013-06-27 09:17:05 +0000
17+++ addons/web/static/src/css/base.sass 2013-07-01 10:30:15 +0000
18@@ -366,6 +366,8 @@
19 font-family: "entypoRegular" !important
20 font-size: 34px
21 font-weight: 300 !important
22+ .edit_icon:after
23+ content: "&"
24 .oe_left
25 float: left
26 margin-right: 8px
27
28=== modified file 'addons/web_kanban/static/src/js/kanban.js'
29--- addons/web_kanban/static/src/js/kanban.js 2013-04-30 09:48:43 +0000
30+++ addons/web_kanban/static/src/js/kanban.js 2013-07-01 10:30:15 +0000
31@@ -111,7 +111,7 @@
32 */
33 extract_aggregates: function(node) {
34 for (var j = 0, jj = this.group_operators.length; j < jj; j++) {
35- if (node.attrs[this.group_operators[j]]) {
36+ if (node.attrs[this.group_operators[j]] && !node.attrs.invisible) {
37 this.aggregates[node.attrs.name] = node.attrs[this.group_operators[j]];
38 break;
39 }
40@@ -380,8 +380,8 @@
41 stop: function(event, ui) {
42 var stop_index = ui.item.index();
43 if (start_index !== stop_index) {
44- var $start_column = $('.oe_kanban_groups_records .oe_kanban_column').eq(start_index);
45- var $stop_column = $('.oe_kanban_groups_records .oe_kanban_column').eq(stop_index);
46+ var $start_column = self.$('.oe_kanban_groups_records .oe_kanban_column').eq(start_index);
47+ var $stop_column = self.$('.oe_kanban_groups_records .oe_kanban_column').eq(stop_index);
48 var method = (start_index > stop_index) ? 'insertBefore' : 'insertAfter';
49 $start_column[method]($stop_column);
50 var tmp_group = self.groups.splice(start_index, 1)[0];