Commit 487642af authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix syntax errors.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26530 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0fbd3a2f
......@@ -1073,14 +1073,14 @@ class Movement(XMLObject, Amount):
def getSourceArrowList(self, context=None):
# Naive implementation - XXX
return self._getCategoryMembershipList(self, ('source', 'source_section', 'source_project',
'source_trade', 'source_function', )):
'source_trade', 'source_function', ))
security.declareProtected(Permissions.AccessContentsInformation, 'getDestinationArrowList')
def getDestinationArrowList(self, context=None):
# Naive implementation - XXX
return self._getCategoryMembershipList(self, ('destination', 'destination_section',
'destination_project',
'destination_trade', 'destination_function', )):
'destination_trade', 'destination_function', ))
security.declareProtected(Permissions.ModifyPortalContent, 'setSourceArrowList')
def setSourceArrowList(self, path):
......
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