From 29c6f4388b52cff703a5ee15d220ff7eb20204f8 Mon Sep 17 00:00:00 2001 From: Romain Courteaud <romain@nexedi.com> Date: Mon, 7 Mar 2005 09:13:12 +0000 Subject: [PATCH] Supply Cell must be a subclass of PredicateGroup in order to call test method. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2643 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/SupplyCell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/product/ERP5/Document/SupplyCell.py b/product/ERP5/Document/SupplyCell.py index 169bed52b6..d0ea536021 100755 --- a/product/ERP5/Document/SupplyCell.py +++ b/product/ERP5/Document/SupplyCell.py @@ -34,8 +34,9 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5.Document.DeliveryCell import DeliveryCell from Products.ERP5.Document.Path import Path +from Products.ERP5.Document.PredicateGroup import PredicateGroup -class SupplyCell(DeliveryCell, Path): +class SupplyCell(PredicateGroup, DeliveryCell, Path): """ A DeliveryCell allows to define specific quantities for each variation of a resource in a delivery line. -- 2.30.9