~jgrandguillaume-c2c/openobject-addons/multi-company-cost-price

« back to all changes in this revision

Viewing changes to survey/wizard/wizard_survey.py

  • Committer: Joël Grand-Guillaume
  • Date: 2010-04-08 09:00:10 UTC
  • mfrom: (2533.3.664)
  • Revision ID: joel.grandguillaume@camptocamp.com-20100408090010-c0pqjan341s18bxs
[MRG] Merge from last trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
 
60
60
_survey_fields = {
61
 
    'partner_ids': {'string':'Partner', 'type':'many2many', 'relation':'res.partner'}, 
 
61
    'partner_ids': {'string':'Partner', 'type':'many2many', 'relation':'res.partner', 'required' : '1'}, 
62
62
    'send_mail': {'string':'Send mail for new user', 'type':'boolean', 'default':lambda *a: 1}, 
63
63
    'send_mail_existing': {'string':'Send reminder for existing user', 'type':'boolean', 'default':lambda *a: 1}, 
64
64
    'mail_subject': {'string':'Subject', 'type':'char', 'default':lambda *a: "New user account.", "size":256},