Commit 924debc6 authored by Jean-Paul Smets's avatar Jean-Paul Smets

New inheritance and more property sheets.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15835 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3d4d0120
...@@ -29,11 +29,11 @@ ...@@ -29,11 +29,11 @@
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.XMLObject import XMLObject
from Products.ERP5.Document.Movement import Movement from Products.ERP5.Document.Movement import Movement
from Products.ERP5.Document.EmailDocument import EmailDocument
from Products.CMFCore.utils import getToolByName from Products.CMFCore.utils import getToolByName
class Event(XMLObject, Movement): class Event(EmailDocument, Movement):
""" """
Event is the base class for all events in ERP5. Event is the base class for all events in ERP5.
...@@ -61,13 +61,20 @@ class Event(XMLObject, Movement): ...@@ -61,13 +61,20 @@ class Event(XMLObject, Movement):
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
, PropertySheet.XMLObject , PropertySheet.XMLObject
, PropertySheet.CategoryCore , PropertySheet.CategoryCore
, PropertySheet.Document
, PropertySheet.DublinCore , PropertySheet.DublinCore
, PropertySheet.Snapshot
, PropertySheet.Task , PropertySheet.Task
, PropertySheet.Url
, PropertySheet.TextDocument
, PropertySheet.Arrow , PropertySheet.Arrow
, PropertySheet.Movement , PropertySheet.Movement
, PropertySheet.Event , PropertySheet.Event
, PropertySheet.ItemAggregation
) )
security.declareProtected(Permissions.AccessContentsInformation,
'isAccountable')
def isAccountable(self): def isAccountable(self):
""" """
Returns 1 if this needs to be accounted Returns 1 if this needs to be accounted
...@@ -75,3 +82,11 @@ class Event(XMLObject, Movement): ...@@ -75,3 +82,11 @@ class Event(XMLObject, Movement):
Whenever delivery is there, delivery has priority Whenever delivery is there, delivery has priority
""" """
return 1 return 1
security.declareProtected(Permissions.AccessContentsInformation, 'defQuantity')
def defQuantity(self):
"""
Quantity is set automatically on Events.
"""
return 1 # Provide opportunity to script this
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