-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathanalysisrequests.py
44 lines (36 loc) · 1.6 KB
/
analysisrequests.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
# -*- 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.
from bika.lims import api
from bika.lims.browser.analysisrequest import AnalysisRequestsView
class ClientAnalysisRequestsView(AnalysisRequestsView):
def __init__(self, context, request):
super(ClientAnalysisRequestsView, self).__init__(context, request)
self.contentFilter["path"] = {
"query": api.get_path(context),
"level": 0}
self.remove_column("Client")
def update(self):
super(ClientAnalysisRequestsView, self).update()
# always redirect to the /analysisrequets view
request_path = self.request.PATH_TRANSLATED
if (request_path.endswith(self.context.getId())):
object_url = api.get_url(self.context)
redirect_url = "{}/{}".format(object_url, "analysisrequests")
self.request.response.redirect(redirect_url)