From fa73e352252af2d13296c806e53b481e88d46f11 Mon Sep 17 00:00:00 2001 From: Yoshinori Okuji <yo@nexedi.com> Date: Fri, 12 May 2006 07:23:53 +0000 Subject: [PATCH] Add a new property "tested" to indicate if a bug is tested or not. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7228 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/PropertySheet/Bug.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/product/ERP5/PropertySheet/Bug.py b/product/ERP5/PropertySheet/Bug.py index a1a0aa38ad..f50a967e6a 100644 --- a/product/ERP5/PropertySheet/Bug.py +++ b/product/ERP5/PropertySheet/Bug.py @@ -31,4 +31,11 @@ class Bug: Bug properties """ + _properties = ( + { 'id' : 'tested', + 'description' : 'if a bug is tested or not', + 'type' : 'boolean', + 'mode' : 'w' }, + ) + _categories = ( 'bug_type', 'bug_priority', 'bug_severity', 'bug_group', 'bug_difficulty',) -- 2.30.9