From 76bb59d605edc519fa472d39662fa028ef70bcf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com> Date: Tue, 8 Apr 2008 08:54:03 +0000 Subject: [PATCH] Make Calendar a subclass of Delivery, because they contain movements git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20336 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/Calendar.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/product/ERP5/Document/Calendar.py b/product/ERP5/Document/Calendar.py index bf4c6bff03..ae6809e54c 100644 --- a/product/ERP5/Document/Calendar.py +++ b/product/ERP5/Document/Calendar.py @@ -28,10 +28,9 @@ from AccessControl import ClassSecurityInfo from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface -from Products.ERP5Type.XMLObject import XMLObject -from Products.ERP5.Document.Path import Path +from Products.ERP5.Document.Delivery import Delivery -class Calendar(Path, XMLObject): +class Calendar(Delivery): """ Calendar contains Calendar Lines. """ -- 2.30.9