-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathbika_artemplates.py
131 lines (111 loc) · 4.33 KB
/
bika_artemplates.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
# -*- 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-2020 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 IARTemplates
from bika.lims.permissions import AddARTemplate
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
class TemplatesView(BikaListingView):
implements(IFolderContentsView, IViewView)
def __init__(self, context, request):
super(TemplatesView, self).__init__(context, request)
self.catalog = "bika_setup_catalog"
self.contentFilter = {
"portal_type": "ARTemplate",
"sort_on": "sortable_title",
"sort_order": "ascending",
"path": {
"query": api.get_path(context),
"level": 0},
}
self.context_actions = {
_("Add"): {
"url": "createObject?type_name=ARTemplate",
"permission": AddARTemplate,
"icon": "++resource++bika.lims.images/add.png"}
}
self.title = self.context.translate(_("Sample Templates"))
self.icon = "{}/{}".format(
self.portal_url,
"/++resource++bika.lims.images/artemplate_big.png"
)
self.show_select_row = False
self.show_select_column = True
self.columns = collections.OrderedDict((
("Title", {
"title": _("Profile"),
"index": "sortable_title"}),
("Description", {
"title": _("Description"),
"index": "Description",
"toggle": True,
}),
))
self.review_states = [
{
"id": "default",
"title": _("Active"),
"contentFilter": {"is_active": True},
"columns": self.columns.keys(),
}, {
"id": "inactive",
"title": _("Inactive"),
"contentFilter": {'is_active': False},
"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
return item
schema = ATFolderSchema.copy()
class ARTemplates(ATFolder):
implements(IARTemplates, IHideActionsMenu)
displayContentsTab = False
schema = schema
schemata.finalizeATCTSchema(schema, folderish=True, moveDiscussion=False)
atapi.registerType(ARTemplates, PROJECTNAME)