Added dataMatrix as recognizer in auto_attach module.

This commit is contained in:
Albert Cervera i Areny 2008-12-29 00:43:08 +01:00
parent ec3b13fac2
commit 6bd9b496e4
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class nan_template_box(osv.osv):
'feature_height' : fields.float('Feature Height'),
'name' : fields.char('Name', 256),
'text' : fields.char('Text', 256),
'recognizer': fields.selection( [('text','Text'),('barcode','Barcode')], 'Recognizer' ),
'recognizer': fields.selection( [('text','Text'),('barcode','Barcode'),('dataMatrix','Data Matrix')], 'Recognizer' ),
'type' : fields.selection( [('matcher','Matcher'),('input','Input')], 'Type' ),
'filter' : fields.selection( [('numeric','Numeric'), ('alphabetic','Alphabetic'), ('alphanumeric','Alphanumeric'), ('exists', 'Exists'), ('none', 'None')], 'Filter' )
}