Bugzilla – Attachment 52834 Details for
Bug 16807
Frameworks unordered in dropdown when adding/editing a biblio
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16807 - Use Koha::BiblioFrameworks instead of GetFrameWorkLoop
Bug-16807---Use-KohaBiblioFrameworks-instead-of-Ge.patch (text/plain), 2.53 KB, created by
Kyle M Hall (khall)
on 2016-06-24 16:16:20 UTC
(
hide
)
Description:
Bug 16807 - Use Koha::BiblioFrameworks instead of GetFrameWorkLoop
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-06-24 16:16:20 UTC
Size:
2.53 KB
patch
obsolete
>From ad625774f847187b390b3b835c8ee5c913d03bc9 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 24 Jun 2016 12:04:43 -0400 >Subject: [PATCH] Bug 16807 - Use Koha::BiblioFrameworks instead of > GetFrameWorkLoop > >Refactor code to use work from 14889 > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > cataloguing/addbiblio.pl | 5 +++-- > koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 6 +++--- > 2 files changed, 6 insertions(+), 5 deletions(-) > >diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl >index ef7b845..1e7cb61 100755 >--- a/cataloguing/addbiblio.pl >+++ b/cataloguing/addbiblio.pl >@@ -35,6 +35,7 @@ use C4::Branch; > use C4::ClassSource; > use C4::ImportBatch; > use C4::Charset; >+use Koha::BiblioFrameworks; > > use Date::Calc qw(Today); > use MARC::File::USMARC; >@@ -745,8 +746,8 @@ if ($frameworkcode eq 'FA'){ > print $input->redirect( '/cgi-bin/koha/cataloguing/editor.pl' . ( $biblionumber ? ( '#catalog/' . $biblionumber ) : '' ) ); > } > >- >-$template->param( frameworkcodeloop => GetFrameworksLoop( $frameworkcode ) , >+my $frameworkcodeloop = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); >+$template->param( frameworkcodeloop => $frameworkcodeloop , > breedingid => $breedingid ); > > # ++ Global >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >index 0dcd73e..df7b4a2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >@@ -494,13 +494,13 @@ function Changefwk(FwkList) { > </li> > [% FOREACH frameworkcodeloo IN frameworkcodeloop %] > <li> >- <a href="#" class="change-framework" data-frameworkcode="[% frameworkcodeloo.value %]"> >- [% IF ( frameworkcodeloo.selected ) %] >+ <a href="#" class="change-framework" data-frameworkcode="[% frameworkcodeloo.frameworkcode %]"> >+ [% IF ( frameworkcodeloo.frameworkcode == frameworkcode ) %] > <i class="fa fa-fw fa-check"></i> > [% ELSE %] > <i class="fa fa-fw"> </i> > [% END %] >- [% frameworkcodeloo.description %] >+ [% frameworkcodeloo.frameworktext %] > </a> > </li> > [% END %] >-- >2.1.4
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 16807
:
52799
|
52808
|
52828
|
52833
| 52834