[Erp5-report] r33051 seb - /erp5/trunk/products/ERP5/Document/TradeCondition.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Tue Feb 23 17:05:32 CET 2010
Author: seb
Date: Tue Feb 23 17:05:25 2010
New Revision: 33051
URL: http://svn.erp5.org?rev=33051&view=rev
Log:
fixed typo error
Modified:
erp5/trunk/products/ERP5/Document/TradeCondition.py
Modified: erp5/trunk/products/ERP5/Document/TradeCondition.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/TradeCondition.py?rev=33051&r1=33050&r2=33051&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/TradeCondition.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/TradeCondition.py [utf8] Tue Feb 23 17:05:25 2010
@@ -179,7 +179,7 @@
reference_list = []
trade_model_line_composed_list = []
- containting_object_list = []
+ containing_object_list = []
start_date = None
stop_date = None
if context is not None:
@@ -188,14 +188,14 @@
# if context is movement it is needed to ask its explanation
# for contained Trade Model Lines
document = context.getExplanationValue()
- containting_object_list.append(document)
+ containing_object_list.append(document)
start_date = document.getStartDate()
stop_date = document.getStopDate()
- containting_object_list.extend(\
+ containing_object_list.extend(\
self.findEffectiveSpecialiseValueList(context=self,
start_date=start_date, stop_date=stop_date))
- for specialise in containting_object_list:
+ for specialise in containing_object_list:
for trade_model_line in specialise.contentValues(
portal_type=portal_type_list):
reference = trade_model_line.getReference()
More information about the Erp5-report
mailing list