diff --git a/product/ERP5/interfaces/aggregated_amount_list.py b/product/ERP5/interfaces/amount_list.py similarity index 94% rename from product/ERP5/interfaces/aggregated_amount_list.py rename to product/ERP5/interfaces/amount_list.py index ca2d743b76f14141209d3153c3b43f44a044adf9..7c12e02a7c4c78de3119041944709255578994a2 100644 --- a/product/ERP5/interfaces/aggregated_amount_list.py +++ b/product/ERP5/interfaces/amount_list.py @@ -30,8 +30,8 @@ from zope.schema.interfaces import ISequence -class IAggregatedAmountList(ISequence): - """Aggregated amount list interface specification +class IAmountList(ISequence): + """Amount list interface specification A sequence of objects implementing IAmount interface. """ diff --git a/product/ERP5/interfaces/aggregated_movement_list.py b/product/ERP5/interfaces/movement_list.py similarity index 88% rename from product/ERP5/interfaces/aggregated_movement_list.py rename to product/ERP5/interfaces/movement_list.py index 134b0d418f79e89d4bf771a2878f0cf482010fc5..5962d31fe004cac4efc0d6d396d770eb855801bc 100644 --- a/product/ERP5/interfaces/aggregated_movement_list.py +++ b/product/ERP5/interfaces/movement_list.py @@ -28,10 +28,10 @@ # ############################################################################## -from Products.ERP5.interfaces.aggregated_amount_list import IAggregatedAmountList +from Products.ERP5.interfaces.amount_list import IAmountList -class IAggregatedMovementList(IAggregatedAmountList): - """Aggregated movement list interface specification +class IMovementList(IAmountList): + """Movement list interface specification A sequence of objects implementing IMovement interface. """