From 2db94e5f0f8925a5e3f3c7fee7b24e3aedb190bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20Calonne?= <aurel@nexedi.com>
Date: Tue, 3 Aug 2010 18:24:18 +0000
Subject: [PATCH] change inheritance order as we do not want movement class to
 override method from ProperyRecordableMixin

git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/amount_generator@37458 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/SimulationMovement.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/ERP5/Document/SimulationMovement.py b/product/ERP5/Document/SimulationMovement.py
index 141ac3e12f..41538adcee 100644
--- a/product/ERP5/Document/SimulationMovement.py
+++ b/product/ERP5/Document/SimulationMovement.py
@@ -61,7 +61,7 @@ parent_to_movement_simulation_state = {
   'invoiced'         : 'planned',
 }
 
-class SimulationMovement(Movement, PropertyRecordableMixin, ExplainableMixin):
+class SimulationMovement(PropertyRecordableMixin, Movement, ExplainableMixin):
   """
       Simulation movements belong to a simulation workflow which includes
       the following steps
-- 
2.30.9