[Erp5-report] r33264 kazuhiko - in /erp5/trunk/products: ERP5/Document/ ERP5Legacy/Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Mar 2 11:02:22 CET 2010


Author: kazuhiko
Date: Tue Mar  2 11:02:20 2010
New Revision: 33264

URL: http://svn.erp5.org?rev=33264&view=rev
Log:
change rule class locations.

Modified:
    erp5/trunk/products/ERP5/Document/DeliveryRootSimulationRule.py
    erp5/trunk/products/ERP5/Document/InvoiceRootSimulationRule.py
    erp5/trunk/products/ERP5/Document/InvoiceSimulationRule.py
    erp5/trunk/products/ERP5/Document/InvoiceTransactionSimulationRule.py
    erp5/trunk/products/ERP5/Document/OpenOrderRule.py
    erp5/trunk/products/ERP5/Document/OrderRootSimulationRule.py
    erp5/trunk/products/ERP5/Document/ProductionOrderModelRootSimulationRule.py
    erp5/trunk/products/ERP5/Document/ProductionOrderRootSimulationRule.py
    erp5/trunk/products/ERP5/Document/TaxRule.py
    erp5/trunk/products/ERP5/Document/TradeModelSimulationRule.py
    erp5/trunk/products/ERP5Legacy/Document/InvoiceRule.py
    erp5/trunk/products/ERP5Legacy/Document/OrderRule.py
    erp5/trunk/products/ERP5Legacy/Document/ProductionOrderModelRule.py
    erp5/trunk/products/ERP5Legacy/Document/ProductionOrderRule.py

Modified: erp5/trunk/products/ERP5/Document/DeliveryRootSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/DeliveryRootSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/DeliveryRootSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/DeliveryRootSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions
-from Products.ERP5.Document.DeliveryRule import DeliveryRule
+from Products.ERP5Legacy.Document.DeliveryRule import DeliveryRule
 
 class DeliveryRootSimulationRule(DeliveryRule):
   """

Modified: erp5/trunk/products/ERP5/Document/InvoiceRootSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/InvoiceRootSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/InvoiceRootSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/InvoiceRootSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions
-from Products.ERP5.Document.InvoiceRule import InvoiceRule
+from Products.ERP5Legacy.Document.InvoiceRule import InvoiceRule
 
 class InvoiceRootSimulationRule(InvoiceRule):
   """

Modified: erp5/trunk/products/ERP5/Document/InvoiceSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/InvoiceSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/InvoiceSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/InvoiceSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions
-from Products.ERP5.Document.InvoicingRule import InvoicingRule
+from Products.ERP5Legacy.Document.InvoicingRule import InvoicingRule
 
 class InvoiceSimulationRule(InvoicingRule):
   """

Modified: erp5/trunk/products/ERP5/Document/InvoiceTransactionSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/InvoiceTransactionSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/InvoiceTransactionSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/InvoiceTransactionSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions
-from Products.ERP5.Document.InvoiceTransactionRule import InvoiceTransactionRule
+from Products.ERP5Legacy.Document.InvoiceTransactionRule import InvoiceTransactionRule
 
 class InvoiceTransactionSimulationRule(InvoiceTransactionRule):
   """

Modified: erp5/trunk/products/ERP5/Document/OpenOrderRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/OpenOrderRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/OpenOrderRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/OpenOrderRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -28,7 +28,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.DeliveryRule import DeliveryRule
+from Products.ERP5Legacy.Document.DeliveryRule import DeliveryRule
 from zLOG import LOG, WARNING
 from DateTime import DateTime
 

Modified: erp5/trunk/products/ERP5/Document/OrderRootSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/OrderRootSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/OrderRootSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/OrderRootSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -29,7 +29,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
-from Products.ERP5.Document.OrderRule import OrderRule
+from Products.ERP5Legacy.Document.OrderRule import OrderRule
 from zLOG import LOG, WARNING
 
 class OrderRootSimulationRule(OrderRule):

Modified: erp5/trunk/products/ERP5/Document/ProductionOrderModelRootSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/ProductionOrderModelRootSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/ProductionOrderModelRootSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/ProductionOrderModelRootSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -28,7 +28,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, interfaces
-from Products.ERP5.Document.ProductionOrderModelRule import ProductionOrderModelRule
+from Products.ERP5Legacy.Document.ProductionOrderModelRule import ProductionOrderModelRule
 
 class ProductionOrderModelRootSimulationRule(ProductionOrderModelRule):
   """

Modified: erp5/trunk/products/ERP5/Document/ProductionOrderRootSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/ProductionOrderRootSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/ProductionOrderRootSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/ProductionOrderRootSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -28,7 +28,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, interfaces
-from Products.ERP5.Document.ProductionOrderRule import ProductionOrderRule
+from Products.ERP5Legacy.Document.ProductionOrderRule import ProductionOrderRule
 
 class ProductionOrderRootSimulationRule(ProductionOrderRule):
   """

Modified: erp5/trunk/products/ERP5/Document/TaxRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/TaxRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/TaxRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/TaxRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -30,7 +30,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.DeliveryRule import DeliveryRule
+from Products.ERP5Legacy.Document.DeliveryRule import DeliveryRule
 
 class TaxRule(DeliveryRule):
   """

Modified: erp5/trunk/products/ERP5/Document/TradeModelSimulationRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/TradeModelSimulationRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/TradeModelSimulationRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/TradeModelSimulationRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions
-from Products.ERP5.Document.TradeModelRule import TradeModelRule
+from Products.ERP5Legacy.Document.TradeModelRule import TradeModelRule
 
 class TradeModelSimulationRule(TradeModelRule):
   """

Modified: erp5/trunk/products/ERP5Legacy/Document/InvoiceRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Legacy/Document/InvoiceRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Legacy/Document/InvoiceRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5Legacy/Document/InvoiceRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -30,7 +30,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.DeliveryRule import DeliveryRule
+from Products.ERP5Legacy.Document.DeliveryRule import DeliveryRule
 
 from zLOG import LOG
 

Modified: erp5/trunk/products/ERP5Legacy/Document/OrderRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Legacy/Document/OrderRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Legacy/Document/OrderRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5Legacy/Document/OrderRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -30,7 +30,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.DeliveryRule import DeliveryRule
+from Products.ERP5Legacy.Document.DeliveryRule import DeliveryRule
 from zLOG import LOG, WARNING
 
 class OrderRule(DeliveryRule):

Modified: erp5/trunk/products/ERP5Legacy/Document/ProductionOrderModelRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Legacy/Document/ProductionOrderModelRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Legacy/Document/ProductionOrderModelRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5Legacy/Document/ProductionOrderModelRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -29,7 +29,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.OrderRule import OrderRule
+from Products.ERP5Legacy.Document.OrderRule import OrderRule
 from Products.ERP5.Document.TransformationModelRule import TransformationModelRuleMixin
 
 from zLOG import LOG, WARNING

Modified: erp5/trunk/products/ERP5Legacy/Document/ProductionOrderRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Legacy/Document/ProductionOrderRule.py?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Legacy/Document/ProductionOrderRule.py [utf8] (original)
+++ erp5/trunk/products/ERP5Legacy/Document/ProductionOrderRule.py [utf8] Tue Mar  2 11:02:20 2010
@@ -29,7 +29,7 @@
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Rule import Rule
-from Products.ERP5.Document.OrderRule import OrderRule
+from Products.ERP5Legacy.Document.OrderRule import OrderRule
 from Products.ERP5.Document.TransformationSourcingRule import\
                                             TransformationSourcingRuleMixin
 




More information about the Erp5-report mailing list