From: Ludovic CHEVALIER Date: Mon, 4 Jan 2016 14:41:08 +0000 (+0100) Subject: [MODULE] ~comment sequence field for theme. Need to be char type X-Git-Url: http://git.cyclocoop.org/?p=burette%2Fbikecoop.git;a=commitdiff_plain;h=6ee0e24889da9d09e9888fd869b32936566f8e15 [MODULE] ~comment sequence field for theme. Need to be char type --- diff --git a/bikecoop.py b/bikecoop.py index 818dbb9..37b920a 100644 --- a/bikecoop.py +++ b/bikecoop.py @@ -36,7 +36,7 @@ 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 = {