Commit 10f07eb9 authored by Arnaud Fontaine's avatar Arnaud Fontaine

Fix missing commas on tuple definitions in filesystem Property Sheets

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39728 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 60cab506
......@@ -51,7 +51,7 @@ class Arrow:
'description' : 'The title of the source person of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Person'),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
......@@ -60,7 +60,7 @@ class Arrow:
'description' : 'The title of the source organisation of this movement',
'type' : 'string',
'acquisition_base_category' : ('source',),
'acquisition_portal_type' : ('Organisation'),
'acquisition_portal_type' : ('Organisation',),
'acquisition_copy_value' : 0,
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
......@@ -79,7 +79,7 @@ class Arrow:
'description' : 'The title of the destination person of this movement',
'type' : 'string',
'acquisition_base_category' : ('destination',),
'acquisition_portal_type' : ('Person'),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
......@@ -88,7 +88,7 @@ class Arrow:
'description' : 'The title of the destination organisation of this movement',
'type' : 'string',
'acquisition_base_category' : ('destination',),
'acquisition_portal_type' : ('Organisation'),
'acquisition_portal_type' : ('Organisation',),
'acquisition_copy_value' : 0,
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
......
......@@ -45,9 +45,9 @@ class Organisation:
{ 'id' : 'social_capital_currency_id',
'description' : "The currency in which the social capital is expressed",
'type' : 'string',
'portal_type' : ('Currency'),
'acquisition_base_category' : ('price_currency'),
'acquisition_portal_type' : ('Currency'),
'portal_type' : ('Currency',),
'acquisition_base_category' : ('price_currency',),
'acquisition_portal_type' : ('Currency',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 1,
'acquisition_sync_value' : 0,
......@@ -56,9 +56,9 @@ class Organisation:
{ 'id' : 'social_capital_currency_title',
'description' : "The currency in which the social capital is expressed",
'type' : 'string',
'portal_type' : ('Currency'),
'acquisition_base_category' : ('price_currency'),
'acquisition_portal_type' : ('Currency'),
'portal_type' : ('Currency',),
'acquisition_base_category' : ('price_currency',),
'acquisition_portal_type' : ('Currency',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 1,
'acquisition_sync_value' : 0,
......@@ -90,7 +90,7 @@ class Organisation:
'storage_id' : 'default_address',
'description' : 'The default address of this organisations',
'type' : 'content',
'portal_type' : ('Address'),
'portal_type' : ('Address',),
'acquired_property_id' : ( 'text', 'street_address', 'city',
'zip_code', 'region', 'region_title',
'prefecture'),
......@@ -106,7 +106,7 @@ class Organisation:
'storage_id' : 'default_telephone',
'description' : 'The default phone for this organisation',
'type' : 'content',
'portal_type' : ('Telephone'),
'portal_type' : ('Telephone',),
'acquired_property_id' : ( 'text', 'telephone_number' ),
'acquisition_base_category' : ('region', ),
'acquisition_portal_type' : ('Category',),
......@@ -120,7 +120,7 @@ class Organisation:
'storage_id' : 'mobile_telephone',
'description' : 'A default mobile phone for this organisation',
'type' : 'content',
'portal_type' : ('Telephone'),
'portal_type' : ('Telephone',),
'acquired_property_id' : ( 'text', 'telephone_number' ),
'acquisition_base_category' : ('region', ),
'acquisition_portal_type' : ('Category',),
......@@ -134,7 +134,7 @@ class Organisation:
'storage_id' : 'default_fax',
'description' : 'The defaut fax phone number for this organisation',
'type' : 'content',
'portal_type' : ('Fax'),
'portal_type' : ('Fax',),
'acquired_property_id' : ( 'text', 'telephone_number' ),
'acquisition_base_category' : ('region', ),
'acquisition_portal_type' : ('Category',),
......@@ -148,7 +148,7 @@ class Organisation:
'storage_id' : 'default_email',
'description' : 'The default email address for this organisation',
'type' : 'content',
'portal_type' : ('Email'),
'portal_type' : ('Email',),
'acquired_property_id' : ( 'text', ),
'acquisition_base_category' : ('region', ),
'acquisition_portal_type' : ('Category',),
......@@ -162,7 +162,7 @@ class Organisation:
'storage_id' : 'alternate_email',
'description' : 'An alternate email address for this organisation',
'type' : 'content',
'portal_type' : ('Email'),
'portal_type' : ('Email',),
'acquired_property_id' : ( 'text', ),
'acquisition_base_category' : ('region', ),
'acquisition_portal_type' : ('Category',),
......
......@@ -38,7 +38,7 @@ class BankingOperation:
'storage_id' : 'movement',
'description' : 'The current amount',
'type' : 'content',
'portal_type' : ('Banking Operation Line'),
'portal_type' : ('Banking Operation Line',),
'acquired_property_id' : ('source_debit', 'source_credit'),
'mode' : 'w' },
)
......
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