From 48ca3736808ad39572e87b3e322c6c11d55bf056 Mon Sep 17 00:00:00 2001 From: Kazuhiko Shiozaki <kazuhiko@nexedi.com> Date: Tue, 23 Feb 2010 12:33:55 +0000 Subject: [PATCH] PaymentCondition now inherits from BusinessPath instead of XMLObject. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33021 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/PaymentCondition.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/product/ERP5/Document/PaymentCondition.py b/product/ERP5/Document/PaymentCondition.py index 566b9cf485..5ea4fe6ab1 100644 --- a/product/ERP5/Document/PaymentCondition.py +++ b/product/ERP5/Document/PaymentCondition.py @@ -30,9 +30,9 @@ from Products.ERP5Type.Globals import InitializeClass, PersistentMapping from AccessControl import ClassSecurityInfo from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces -from Products.ERP5Type.XMLObject import XMLObject +from Products.ERP5.Document.BusinessPath import BusinessPath -class PaymentCondition(XMLObject): +class PaymentCondition(BusinessPath): """ Payment Conditions are used to define all the parameters of a payment """ @@ -52,6 +52,7 @@ class PaymentCondition(XMLObject): , PropertySheet.DublinCore , PropertySheet.Amount , PropertySheet.PaymentCondition + , PropertySheet.Chain , PropertySheet.SortIndex + , PropertySheet.BusinessPath ) - -- 2.30.9