~zaber/openobject-addons/document-ftp-ports

« back to all changes in this revision

Viewing changes to crm/crm.py

  • Committer: Geoff Gardiner
  • Date: 2009-01-27 11:15:46 UTC
  • mto: (2159.2.1 addons)
  • mto: This revision was merged to the branch mainline in revision 2164.
  • Revision ID: gsg@pinot-grigio-20090127111546-96d4h0r74pvs43qu
Many label changes, one functional (spelling) fix in passing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        'code': fields.char('Section Code',size=8),
60
60
        'active': fields.boolean('Active'),
61
61
        'sequence': fields.integer('Sequence'),
62
 
        'user_id': fields.many2one('res.users', 'Responsible'),
63
 
        'reply_to': fields.char('Reply-To', size=64, help="The email address wich is the 'Reply-To' of all email sent by Open ERP for cases in this section"),
 
62
        'user_id': fields.many2one('res.users', 'Responsible User'),
 
63
        'reply_to': fields.char('Reply-To', size=64, help="The email address put in the 'Reply-To' of all emails sent by Open ERP about cases in this section"),
64
64
        'parent_id': fields.many2one('crm.case.section', 'Parent Section'),
65
 
        'child_ids': fields.one2many('crm.case.section', 'parent_id', 'Childs Sections'),
 
65
        'child_ids': fields.one2many('crm.case.section', 'parent_id', 'Child Sections'),
66
66
    }
67
67
    _defaults = {
68
68
        'active': lambda *a: 1,