Commit bff9e408 authored by Nicolas Delaby's avatar Nicolas Delaby

Define new properties useful for events.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41766 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 796f8187
......@@ -56,6 +56,44 @@ class Arrow:
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
'mode' : 'r' },
{ 'id' : 'source_person_first_name',
'description' : 'The first name of source person of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 0,
'acquisition_accessor_id' : 'getFirstName',
'mode' : 'w' },
{ 'id' : 'source_person_last_name',
'description' : 'The last name of source person of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 0,
'acquisition_accessor_id' : 'getLastName',
'mode' : 'w' },
{ 'id' : 'source_person_default_email_text',
'description' : 'The email address of source person'\
' of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 0,
'acquisition_accessor_id' : 'getDefaultEmailText',
'mode' : 'w' },
{ 'id' : 'source_person_default_telephone_text',
'description' : 'The telephone number of source person'\
' of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 0,
'acquisition_accessor_id' : 'getDefaultTelephoneText',
'mode' : 'w' },
{ 'id' : 'source_organisation_title',
'description' : 'The title of the source organisation of this movement',
'type' : 'string',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment