Commit 98aab9cd authored by Łukasz Nowak's avatar Łukasz Nowak

- fix a way how interface is being declared


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33540 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c0ddbc0d
......@@ -30,19 +30,17 @@
from UserList import UserList
import zope.interface
from Products.ERP5Type import interfaces
from Products.ERP5Type.Globals import InitializeClass
from Products.PythonScripts.Utility import allow_class
from AccessControl import ClassSecurityInfo
from Products.ERP5.interfaces.amount_list \
import IAmountList
class AggregatedAmountList(UserList):
"""
Temporary object needed to aggregate Amount value
And to calculate some report or total value
"""
zope.interface.implements(IAmountList)
zope.interface.implements(interfaces.IAmountList)
meta_type = "AggregatedAmountList"
security = ClassSecurityInfo()
......
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