[MRG] fix 1079548: Message field(char) too short to allow long messages
authorls@numerigraphe.com <ls@numerigraphe.com>
Fri, 11 Apr 2014 07:32:03 +0000 (07:32 +0000)
committerStefan Rijnhart <stefan@therp.nl>
Wed, 2 Jul 2014 17:44:12 +0000 (19:44 +0200)
https://launchpad.net/bugs/1079548

addons/procurement/procurement.py

index 450608a..a76f4cf 100644 (file)
@@ -104,7 +104,7 @@ class procurement_order(osv.osv):
             readonly=True, required=True, help="If you encode manually a Procurement, you probably want to use" \
             " a make to order method."),
         'note': fields.text('Note'),
-        'message': fields.char('Latest error', size=124, help="Exception occurred while computing procurement orders."),
+        'message': fields.char('Latest error', help="Exception occurred while computing procurement orders."),
         'state': fields.selection([
             ('draft','Draft'),
             ('cancel','Cancelled'),