Commit df6cda9c authored by Fabien Morin's avatar Fabien Morin

typo : fix indentation


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26518 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 413fc431
...@@ -34,37 +34,37 @@ from Products.ERP5.Document.PaySheetLine import PaySheetLine ...@@ -34,37 +34,37 @@ from Products.ERP5.Document.PaySheetLine import PaySheetLine
from zLOG import LOG from zLOG import LOG
class PaySheetModelLine(PaySheetLine, Predicate): class PaySheetModelLine(PaySheetLine, Predicate):
""" """
A PaySheetModelLine object allows to implement lines in A PaySheetModelLine object allows to implement lines in
PaySheetModel. PaySheetModel.
A PaySheetModelLine contain all parameters witch make it possible to A PaySheetModelLine contain all parameters witch make it possible to
calculate a service contribution. calculate a service contribution.
""" """
meta_type = 'ERP5 Pay Sheet Model Line' meta_type = 'ERP5 Pay Sheet Model Line'
portal_type = 'Pay Sheet Model Line' portal_type = 'Pay Sheet Model Line'
add_permission = Permissions.AddPortalContent add_permission = Permissions.AddPortalContent
isPortalContent = 1 isPortalContent = 1
isRADContent = 1 isRADContent = 1
# Declarative security # Declarative security
security = ClassSecurityInfo() security = ClassSecurityInfo()
security.declareObjectProtected(Permissions.AccessContentsInformation) security.declareObjectProtected(Permissions.AccessContentsInformation)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( Interface.Variated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
, PropertySheet.XMLObject , PropertySheet.XMLObject
, PropertySheet.CategoryCore , PropertySheet.CategoryCore
, PropertySheet.Amount , PropertySheet.Amount
, PropertySheet.Task , PropertySheet.Task
, PropertySheet.Arrow , PropertySheet.Arrow
, PropertySheet.Movement , PropertySheet.Movement
, PropertySheet.Price , PropertySheet.Price
, PropertySheet.VariationRange , PropertySheet.VariationRange
, PropertySheet.MappedValue , PropertySheet.MappedValue
, PropertySheet.PaySheetModelLine , PropertySheet.PaySheetModelLine
, PropertySheet.Predicate , PropertySheet.Predicate
) )
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