[Erp5-report] r17132 - /erp5/trunk/products/ERP5/Tool/SimulationTool.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Oct 23 16:11:09 CEST 2007


Author: vincent
Date: Tue Oct 23 16:11:09 2007
New Revision: 17132

URL: http://svn.erp5.org?rev=17132&view=rev
Log:
Do not display warning when value don't match for columns in which they are not supposed to match.

Modified:
    erp5/trunk/products/ERP5/Tool/SimulationTool.py

Modified: erp5/trunk/products/ERP5/Tool/SimulationTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Tool/SimulationTool.py?rev=17132&r1=17131&r2=17132&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Tool/SimulationTool.py (original)
+++ erp5/trunk/products/ERP5/Tool/SimulationTool.py Tue Oct 23 16:11:09 2007
@@ -1106,7 +1106,7 @@
                         result[key] = value_b
                     elif line_a[key] == line_b[key]:
                       result[key] = line_a[key]
-                    else:
+                    elif key not in ('date', 'stock_uid', 'path'):
                       LOG('InventoryTool.getInventoryList.addLineValues', 0,
                           'missmatch for %s column: %s and %s' % \
                           (key, line_a[key], line_b[key]))




More information about the Erp5-report mailing list