Commit 5c461be 1 parent d484286 commit 5c461be Copy full SHA for 5c461be
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ Changelog
9
9
10
10
**Changed **
11
11
12
+ - #157 Changed Base Catalog Tool
13
+
12
14
13
15
**Removed **
14
16
Original file line number Diff line number Diff line change 20
20
21
21
from App .class_init import InitializeClass
22
22
from bika .health .interfaces import IBikaHealthCatalogPatientListing
23
- from bika .lims .catalog .bika_catalog_tool import BikaCatalogTool
23
+ from bika .lims .catalog .base import BaseCatalog
24
24
from bika .lims .catalog .catalog_basic_template import BASE_CATALOG_COLUMNS
25
25
from bika .lims .catalog .catalog_basic_template import BASE_CATALOG_INDEXES
26
26
from zope .interface import implements
74
74
}
75
75
76
76
77
- class BikaHealthCatalogPatientListing (BikaCatalogTool ):
77
+ class BikaHealthCatalogPatientListing (BaseCatalog ):
78
78
"""
79
79
Catalog to list patients in BikaListing
80
80
"""
81
81
implements (IBikaHealthCatalogPatientListing )
82
82
83
83
def __init__ (self ):
84
- BikaCatalogTool .__init__ (
84
+ BaseCatalog .__init__ (
85
85
self , CATALOG_PATIENTS ,
86
86
"Senaite Health Catalog Patients" ,
87
87
"BikaHealthCatalogPatientListing" )
You can’t perform that action at this time.
0 commit comments