[Erp5-report] r31116 kazuhiko - /erp5/trunk/products/ERP5/Document/BusinessPath.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Dec 7 13:47:48 CET 2009


Author: kazuhiko
Date: Mon Dec  7 13:47:48 2009
New Revision: 31116

URL: http://svn.erp5.org?rev=31116&view=rev
Log:
remove duplicates and add missings from PropertySheet.Arrow definition.

Modified:
    erp5/trunk/products/ERP5/Document/BusinessPath.py

Modified: erp5/trunk/products/ERP5/Document/BusinessPath.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/BusinessPath.py?rev=31116&r1=31115&r2=31116&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/BusinessPath.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/BusinessPath.py [utf8] Mon Dec  7 13:47:48 2009
@@ -100,9 +100,19 @@
       of this Arrow
     """
     # Naive implementation - we must use category groups instead - XXX
-    return ('source', 'source_section', 'source_payment', 'source_project',
-        'source_administration', 'source_project', 'source_function',
-        'source_payment', 'source_account')
+    return ('source',
+            'source_account',
+            'source_administration',
+            'source_advice',
+            'source_carrier',
+            'source_decision',
+            'source_function',
+            'source_payment',
+            'source_project',
+            'source_referral',
+            'source_section',
+            'source_trade',
+            'source_transport')
 
   security.declareProtected(Permissions.AccessContentsInformation,
                             'getDestinationArrowBaseCategoryList')
@@ -112,9 +122,19 @@
       of this Arrow
     """
     # Naive implementation - we must use category groups instead - XXX
-    return ('destination', 'destination_section', 'destination_payment', 'destination_project',
-        'destination_administration', 'destination_project', 'destination_function',
-        'destination_payment', 'destination_account')
+    return ('destination',
+            'destination_account',
+            'destination_administration',
+            'destination_advice',
+            'destination_carrier',
+            'destination_decision',
+            'destination_function',
+            'destination_payment',
+            'destination_project',
+            'destination_referral',
+            'destination_section',
+            'destination_trade',
+            'destination_transport')
 
   # ICategoryAccessProvider overridden methods
   def _getCategoryMembershipList(self, category, **kw):




More information about the Erp5-report mailing list