[VIEW][TRANS] +menu gender
[burette/bikecoop.git] / bikecoop.py
index 07f8614..37b920a 100644 (file)
@@ -36,15 +36,13 @@ class Theme(osv.osv):
         'name': fields.char('Name', size=128, help='Name of the job or studies', required=True, translate=True),
         'domain': fields.selection([('gender', 'Gender'), ('occupation', 'Occupation'), ('volunteer', 'Volunteer')], 'Domain', required=True, size=24),
         'active': fields.boolean('Active', help='If check, this object is always available'),
-        'sequence': fields.integer('Sequence', help='To order by sequence'),
+        'sequence': fields.integer('Sequence', help='To order by sequence'), #Convert to char field
     }
 
     _defaults = {
         'active': lambda *a: 1,
     }
 
-    _order = 'name'
-
 Theme()