Commit 2e65993a authored by Fabien Morin's avatar Fabien Morin

cosmetics changes : remove unused import, split line to 79 caracters, ...


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26956 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 296531f5
...@@ -29,10 +29,9 @@ ...@@ -29,10 +29,9 @@
# #
############################################################################## ##############################################################################
from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet
from Products.ERP5.Document.Transformation import Transformation from Products.ERP5.Document.Transformation import Transformation
from Products.ERP5.Document.Path import Path from Products.ERP5.Document.Path import Path
from Products.ERP5.AggregatedAmountList import AggregatedAmountList from Products.ERP5.AggregatedAmountList import AggregatedAmountList
...@@ -139,7 +138,8 @@ class TradeCondition(Path, Transformation): ...@@ -139,7 +138,8 @@ class TradeCondition(Path, Transformation):
need_to_run = 0 need_to_run = 0
for model in trade_model_line_composed_list: for model in trade_model_line_composed_list:
model_result = model.getAggregatedAmountList(context, model_result = model.getAggregatedAmountList(context,
movement_list=movement_list, current_aggregated_amount_list = result, movement_list = movement_list,
current_aggregated_amount_list = result,
**kw) **kw)
result.extend(model_result) result.extend(model_result)
if len(result) != len(movement_list): if len(result) != len(movement_list):
......
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