From 7e4c8ea77cd18893443d20386152b57099c1a7c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com>
Date: Tue, 14 Jul 2009 11:58:14 +0000
Subject: [PATCH] telephone and geographic coordinates have an int_index field
 in their views, but they lack the sort index property sheet.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28069 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/GeographicAddress.py | 1 +
 product/ERP5/Document/Telephone.py         | 1 +
 2 files changed, 2 insertions(+)

diff --git a/product/ERP5/Document/GeographicAddress.py b/product/ERP5/Document/GeographicAddress.py
index 5748da3e04..676fcfa2ee 100644
--- a/product/ERP5/Document/GeographicAddress.py
+++ b/product/ERP5/Document/GeographicAddress.py
@@ -60,6 +60,7 @@ class GeographicAddress(Coordinate, Base):
     # Declarative properties
     property_sheets = ( PropertySheet.Base
                       , PropertySheet.SimpleItem
+                      , PropertySheet.SortIndex
                       , PropertySheet.CategoryCore
                       , PropertySheet.GeographicAddress
                       )
diff --git a/product/ERP5/Document/Telephone.py b/product/ERP5/Document/Telephone.py
index 085329714f..c294e8b183 100644
--- a/product/ERP5/Document/Telephone.py
+++ b/product/ERP5/Document/Telephone.py
@@ -65,6 +65,7 @@ class Telephone(Coordinate, Base):
   property_sheets = ( PropertySheet.Base
                     , PropertySheet.SimpleItem
                     , PropertySheet.CategoryCore
+                    , PropertySheet.SortIndex
                     , PropertySheet.Telephone
                     )
   # This is a list of regex.
-- 
2.30.9