From f909777315d80af4c0f3af539fd7f9c9424dc726 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=81ukasz=20Nowak?= <luke@nexedi.com>
Date: Wed, 6 May 2009 15:41:51 +0000
Subject: [PATCH]  - missing properties (thanks Yusuke)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26853 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/PropertySheet/BusinessPath.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/product/ERP5/PropertySheet/BusinessPath.py b/product/ERP5/PropertySheet/BusinessPath.py
index 7cb2a2f2ee..df64b21978 100644
--- a/product/ERP5/PropertySheet/BusinessPath.py
+++ b/product/ERP5/PropertySheet/BusinessPath.py
@@ -44,5 +44,15 @@ class BusinessPath:
             'description' : 'ID of method to get destination list of categories',
             'type'        : 'string',
             'mode'        : 'w' },
+        {   'id'          : 'lead_time',
+            'description' : 'How much time shall be spent on path',
+            'default'     : 0.0,
+            'type'        : 'float',
+            'mode'        : 'w' },
+        {   'id'          : 'wait_time',
+            'description' : 'How much time to wait before initiating path',
+            'default'     : 0.0,
+            'type'        : 'float',
+            'mode'        : 'w' },
     )
     _categories = ( )
-- 
2.30.9