[MERGE]: survey: fixed a bug in warning message when users exceed maximal number...
authorThibault Delavallée <tde@openerp.com>
Thu, 12 Jan 2012 15:05:15 +0000 (16:05 +0100)
committerThibault Delavallée <tde@openerp.com>
Thu, 12 Jan 2012 15:05:15 +0000 (16:05 +0100)
bzr revid: tde@openerp.com-20120112150515-sxozygi6n4m6hs0f

1  2 
addons/survey/wizard/survey_selection.py

@@@ -63,7 -63,7 +63,7 @@@ class survey_name_wiz(osv.osv_memory)
          res = cr.fetchone()[0]
          sur_rec = survey_obj.browse(cr,uid,survey_id,context=context)
          if sur_rec.response_user and res >= sur_rec.response_user:
-             raise osv.except_osv(_('Warning !'),_("You can not give response for this survey more than %s times") % (user_limit))
 -            raise osv.except_osv(_('Warning !'),_("You can not give response for this survey more than %s times") % (sur_rec))
++            raise osv.except_osv(_('Warning !'),_("You can not give response for this survey more than %s times") % (sur_rec.response_user))
  
          if sur_rec.max_response_limit and sur_rec.max_response_limit <= sur_rec.tot_start_survey:
              raise osv.except_osv(_('Warning !'),_("You can not give more response. Please contact the author of this survey for further assistance."))