From 4afaf2809fa4000ca3d56271cd8a15f234e77ccb Mon Sep 17 00:00:00 2001 From: Nicolas Legrand Date: Wed, 21 Oct 2020 13:29:00 +0200 Subject: [PATCH] Bug 24412: (follow-up) qa-tools fix obvious problems: 1. qa -c 8 -v 2 2. should be green --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 12 ++++++------ koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 2 +- t/db_dependent/Koha/Holds.t | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index 0ebc0d6..5ac0979 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -161,15 +161,15 @@ $(document).ready(function() { if ( oObj.waiting_here ) { data += __("Item is waiting here"); - if (oObj.desk_name) { - data += ", " + __("at %s").format( oObj.desk_name ); - } + if (oObj.desk_name) { + data += ", " + __("at %s").format(oObj.desk_name); + } } else { data += __("Item is waiting"); data += " " + __("at %s").format(oObj.waiting_at); - if (oObj.desk_name) { - data += ", " + __("at %s").format( oObj.desk_name ); - } + if (oObj.desk_name) { + data += ", " + __("at %s").format(oObj.desk_name); + } } diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc index b4068f3..dd5736d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc @@ -100,7 +100,7 @@ [% IF ( HOLD.is_at_destination ) %] Item waiting at [% HOLD.branch.branchname | html %] - [% IF ( HOLD.desk_id ) %], [% Desks.GetName ( HOLD.desk_id ) | html %],[% END %] + [% IF ( HOLD.desk_id ) %], [% Desks.GetName ( HOLD.desk_id ) | html %],[% END %] [% IF ( HOLD.waitingdate ) %] since [% HOLD.waitingdate | $KohaDates %] [% IF HOLD.expirationdate %] diff --git a/t/db_dependent/Koha/Holds.t b/t/db_dependent/Koha/Holds.t index cc61fc0..538e711 100755 --- a/t/db_dependent/Koha/Holds.t +++ b/t/db_dependent/Koha/Holds.t @@ -373,9 +373,9 @@ subtest 'Desks' => sub { my $library = $builder->build_object( { class => 'Koha::Libraries' } ); my $desk = Koha::Desk->new({ - desk_name => 'my_desk_name_for_test', - branchcode => $library->branchcode , - })->store; + desk_name => 'my_desk_name_for_test', + branchcode => $library->branchcode , + })->store; ok($desk, "Desk created"); my $item = $builder->build_sample_item({ library => $library->branchcode }); my $manager = $builder->build_object( { class => "Koha::Patrons" } ); @@ -386,7 +386,7 @@ subtest 'Desks' => sub { class => 'Koha::Patrons', value => { branchcode => $library->branchcode, } } - ); + ); my $reserve_id = C4::Reserves::AddReserve( { -- 2.1.4