From 91ae7f0709dc10a4a613d608546e39c2ff700b4e Mon Sep 17 00:00:00 2001 From: Kazuhiko Shiozaki <kazuhiko@nexedi.com> Date: Mon, 14 Dec 2009 17:06:44 +0000 Subject: [PATCH] enable isIndexable, because we need to index Solver Decision so as to find the related Solver Decision document from a Target Solver document. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31292 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/SolverDecision.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/product/ERP5/Document/SolverDecision.py b/product/ERP5/Document/SolverDecision.py index 88a22e13d9..92a8847503 100644 --- a/product/ERP5/Document/SolverDecision.py +++ b/product/ERP5/Document/SolverDecision.py @@ -64,7 +64,9 @@ class SolverDecision(XMLObject): meta_type = 'ERP5 Solver Decision' portal_type = 'Solver Decision' add_permission = Permissions.AddPortalContent - isIndexable = 0 # We do not want to fill the catalog with objects on which we need no reporting + # XXX we need to index Solver Decision so as to find the related Solver + # Decision document from a Target Solver document. + # isIndexable = 0 # We do not want to fill the catalog with objects on which we need no reporting # Declarative security security = ClassSecurityInfo() -- 2.30.9