[IMP] visible handle in the list of projects

bzr revid: fp@tinyerp.com-20121213151418-yq1grgu6n1xw5dsl
This commit is contained in:
Fabien Pinckaers 2012-12-13 16:14:18 +01:00
parent 1a94c3193a
commit 0f43de3144
2 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ class project(osv.osv):
ids = self.pool.get('project.task.type').search(cr, uid, [('case_default','=',1)], context=context)
return ids
_order = "sequence"
_order = "sequence, id"
_defaults = {
'active': True,
'type': 'contract',

View File

@ -154,7 +154,7 @@
<field name="field_parent">child_ids</field>
<field name="arch" type="xml">
<tree fonts="bold:message_unread==True" colors="red:date and (date&lt;current_date) and (state == 'open');blue:state in ('draft','pending');grey: state in ('close','cancelled')" string="Projects">
<field name="sequence" invisible="1"/>
<field name="sequence" widget="handle"/>
<field name="message_unread" invisible="1"/>
<field name="date" invisible="1"/>
<field name="name" string="Project Name"/>