Commit 1e606522 authored by Vincent Pelletier's avatar Vincent Pelletier

Improve docstring.

Remove useless tic function : it was originally forsaw to implement nightly jobs on delivery builders, which can now be done using alarm tool.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6898 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b259001c
...@@ -37,8 +37,7 @@ from Products.ERP5 import _dtmldir ...@@ -37,8 +37,7 @@ from Products.ERP5 import _dtmldir
class OrderTool(BaseTool): class OrderTool(BaseTool):
""" """
The OrderTool implements portal object OrderTool is a container for Order Builders.
orders building policies.
""" """
id = 'portal_orders' id = 'portal_orders'
meta_type = 'ERP5 Order Tool' meta_type = 'ERP5 Order Tool'
...@@ -51,11 +50,4 @@ class OrderTool(BaseTool): ...@@ -51,11 +50,4 @@ class OrderTool(BaseTool):
security.declareProtected( Permissions.ManagePortal, 'manage_overview' ) security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
manage_overview = DTMLFile( 'explainOrderTool', _dtmldir ) manage_overview = DTMLFile( 'explainOrderTool', _dtmldir )
security.declareProtected(Permissions.ModifyPortalContent, 'tic')
def tic(self):
"""
We will look at all order builder and activate them.
"""
pass
InitializeClass(OrderTool) InitializeClass(OrderTool)
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