From 3538d36232459161a67a4f45192642cf9d4e566f Mon Sep 17 00:00:00 2001
From: Romain Courteaud <romain@nexedi.com>
Date: Mon, 30 May 2005 11:57:33 +0000
Subject: [PATCH] Rename selectMovement to searchMovementList.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3116 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/DeliveryBuilder.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/product/ERP5/Document/DeliveryBuilder.py b/product/ERP5/Document/DeliveryBuilder.py
index 3bb671c35c..1ab93450f6 100755
--- a/product/ERP5/Document/DeliveryBuilder.py
+++ b/product/ERP5/Document/DeliveryBuilder.py
@@ -103,7 +103,7 @@ class DeliveryBuilder(XMLObject, Amount, Predicate):
       or to Simulation Movements related to a limited set of existing
     """
     # Select
-    movement_list = self.selectMovement(applied_rule_uid=applied_rule_uid)
+    movement_list = self.searchMovementList(applied_rule_uid=applied_rule_uid)
     # Collect
     root_group = self.collectMovement(movement_list)
     # Build
@@ -123,7 +123,7 @@ class DeliveryBuilder(XMLObject, Amount, Predicate):
       
     return delivery_list
 
-  def selectMovement(self, applied_rule_uid=None):
+  def searchMovementList(self, applied_rule_uid=None):
     """
       defines how to query all Simulation Movements which meet certain criteria
       (including the above path path definition).
-- 
2.30.9