[IMP/ADD]

bzr revid: apa@tinyerp.com-20120406082937-0q9f1jnbpanabmrg
This commit is contained in:
Amit Patel (OpenERP) 2012-04-06 13:59:37 +05:30
parent fb99473097
commit bc6111db34
3 changed files with 15 additions and 5 deletions

View File

@ -184,11 +184,11 @@
<li ><a type="delete">Delete</a></li>
<li>
<ul class="color-chooser">
<li><a><span class="steelblue square"></span></a></li>
<li><a><span class="firebrick square"></span></a></li>
<li><a><span class="khaki square"></span></a></li>
<li><a><span class="thistle square"></span></a></li>
<li><a><span class="orange square"></span></a></li>
<li><a id="steelblue"><span class="steelblue square"></span></a></li>
<li><a id="firebrick"><span class="firebrick square"></span></a></li>
<li><a id="khaki"><span class="khaki square"></span></a></li>
<li><a id="thistle"><span class="thistle square"></span></a></li>
<li><a id="orange"><span class="orange square"></span></a></li>
</ul>
</li>
</ul>

View File

@ -64,6 +64,7 @@ and decide on their status as they evolve.
'installable': True,
'auto_install': False,
'application': True,
'js': ['static/src/js/project_issue.js'],
'certificate' : '001236490750848623845',
}

View File

@ -0,0 +1,9 @@
openerp.project_issue = function(openerp) {
openerp.web_kanban.ProjectIssueKanban = openerp.web_kanban.KanbanRecord.include({
bind_events: function() {
self = this;
self._super();
console.log("ISSUES :: ",self)
}
});
}