[FIX]procurement : put back size limit on field message since some db in saas were not update and we need to truncate to size=124 for those

bzr revid: csn@openerp.com-20130213154137-4jl6h3c8dn4xpguf
This commit is contained in:
csn-openerp 2013-02-13 16:41:37 +01:00
parent aa6cd343e8
commit b409abe3ad
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,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', help="Exception occurred while computing procurement orders."),
'message': fields.char('Latest error', size=124, help="Exception occurred while computing procurement orders."),
'state': fields.selection([
('draft','Draft'),
('cancel','Cancelled'),