Bugzilla – Attachment 172368 Details for
Bug 38076
Librarians with only fast add permission can no longer edit or create fast add records
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38076: Fix inability of fast catalogers to add/edit FA framework records
Bug-38076-Fix-inability-of-fast-catalogers-to-adde.patch (text/plain), 1.99 KB, created by
Tomás Cohen Arazi (tcohen)
on 2024-10-03 18:50:47 UTC
(
hide
)
Description:
Bug 38076: Fix inability of fast catalogers to add/edit FA framework records
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2024-10-03 18:50:47 UTC
Size:
1.99 KB
patch
obsolete
>From 1cdcde1c57fc84f94eb8a5e0f5fc0ef6cd52deaa Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 3 Oct 2024 14:09:18 +0000 >Subject: [PATCH] Bug 38076: Fix inability of fast catalogers to add/edit FA > framework records > >If a librarian does not have the editcatalogue permission, but does have the fast_cataloging permission, they should be able to add and edit fast cataloging records. Instead they are presented with a login screen and the message that they do not have sufficient permissions. > >Test Plan: >1) Create a librarian with only fast add cataloging permissions >2) Attempt to create a fast cat item from the circ menu >3) Note the login screen and error >4) Apply this patch >5) Restart all the things! >6) Try again, you can now create FA records! > >Signed-off-by: Brendan Lawlor <blawlor@clamsnet.org> >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > cataloguing/addbiblio.pl | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > >diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl >index 397d1c92fe7..4ff9fc31513 100755 >--- a/cataloguing/addbiblio.pl >+++ b/cataloguing/addbiblio.pl >@@ -517,6 +517,13 @@ my $fa_duedatespec = $input->param('duedatespec'); > > my $userflags = 'edit_catalogue'; > >+$frameworkcode = &GetFrameworkCode($biblionumber) >+ if ( $biblionumber and not( defined $frameworkcode) and $op ne 'cud-addbiblio' ); >+ >+if ($frameworkcode eq 'FA'){ >+ $userflags = 'fast_cataloging'; >+} >+ > my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > { > template_name => "cataloguing/addbiblio.tt", >@@ -526,13 +533,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > } > ); > >-$frameworkcode = &GetFrameworkCode($biblionumber) >- if ( $biblionumber and not( defined $frameworkcode) and $op ne 'cud-addbiblio' ); >- >-if ($frameworkcode eq 'FA'){ >- $userflags = 'fast_cataloging'; >-} >- > $frameworkcode = '' if ( $frameworkcode eq 'Default' ); > > # Set default values for global variable >-- >2.46.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38076
:
172341
|
172363
| 172368 |
172411