forked from senaite/senaite.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbika_analysisprofiles.py
140 lines (118 loc) · 4.68 KB
/
bika_analysisprofiles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# -*- coding: utf-8 -*-
#
# This file is part of SENAITE.CORE.
#
# SENAITE.CORE is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, version 2.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2018-2021 by it's authors.
# Some rights reserved, see README and LICENSE.
import collections
from Products.ATContentTypes.content import schemata
from Products.Archetypes import atapi
from bika.lims import api
from bika.lims import bikaMessageFactory as _
from bika.lims.browser.bika_listing import BikaListingView
from bika.lims.config import PROJECTNAME
from bika.lims.interfaces import IAnalysisProfiles
from bika.lims.permissions import AddAnalysisProfile
from bika.lims.utils import get_link
from plone.app.content.browser.interfaces import IFolderContentsView
from plone.app.folder.folder import ATFolder
from plone.app.folder.folder import ATFolderSchema
from plone.app.layout.globals.interfaces import IViewView
from senaite.core.interfaces import IHideActionsMenu
from zope.interface.declarations import implements
# TODO: Separate content and view into own modules!
class AnalysisProfilesView(BikaListingView):
implements(IFolderContentsView, IViewView)
def __init__(self, context, request):
super(AnalysisProfilesView, self).__init__(context, request)
self.catalog = "senaite_catalog_setup"
self.contentFilter = {
"portal_type": "AnalysisProfile",
"sort_on": "sortable_title",
"sort_order": "ascending",
}
self.context_actions = {
_("Add"): {
"url": "createObject?type_name=AnalysisProfile",
"permission": AddAnalysisProfile,
"icon": "++resource++bika.lims.images/add.png"}
}
self.title = self.context.translate(_("Analysis Profiles"))
self.icon = "{}/{}".format(
self.portal_url,
"/++resource++bika.lims.images/analysisprofile_big.png"
)
self.show_select_row = False
self.show_select_column = True
self.pagesize = 25
self.columns = collections.OrderedDict((
("Title", {
"title": _("Profile"),
"index": "sortable_title"}),
("Description", {
"title": _("Description"),
"index": "Description",
"toggle": True,
}),
("ProfileKey", {
"title": _("Profile Key"),
"sortable": False,
"toggle": True,
}),
))
self.review_states = [
{
"id": "default",
"title": _("Active"),
"contentFilter": {"is_active": True},
"transitions": [{"id": "deactivate"}, ],
"columns": self.columns.keys(),
}, {
"id": "inactive",
"title": _("Inactive"),
"contentFilter": {'is_active': False},
"transitions": [{"id": "activate"}, ],
"columns": self.columns.keys(),
}, {
"id": "all",
"title": _("All"),
"contentFilter": {},
"columns": self.columns.keys(),
},
]
def folderitem(self, obj, item, index):
"""Service triggered each time an item is iterated in folderitems.
The use of this service prevents the extra-loops in child objects.
:obj: the instance of the class to be foldered
:item: dict containing the properties of the object to be used by
the template
:index: current index of the item
"""
obj = api.get_object(obj)
title = obj.Title()
description = obj.Description()
url = obj.absolute_url()
item["replace"]["Title"] = get_link(url, value=title)
item["Description"] = description
item["ProfileKey"] = obj.ProfileKey
return item
schema = ATFolderSchema.copy()
class AnalysisProfiles(ATFolder):
implements(IAnalysisProfiles, IHideActionsMenu)
displayContentsTab = False
schema = schema
schemata.finalizeATCTSchema(schema, folderish=True, moveDiscussion=False)
atapi.registerType(AnalysisProfiles, PROJECTNAME)