Browse Source

Bug 18936: Fix warning about page about wrong lengthunit

Signed-off-by: Minna Kivinen <minna.kivinen@hamk.fi>
Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Jonathan Druart 4 years ago
committed by Martin Renvoize
parent
commit
4ec3fe042d
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 7
      about.pl
  2. 6
      koha-tmpl/intranet-tmpl/prog/en/modules/about.tt

7
about.pl

@ -456,12 +456,9 @@ $template->param( 'bad_yaml_prefs' => \@bad_yaml_prefs ) if @bad_yaml_prefs;
# Circ rule warnings
{
my $dbh = C4::Context->dbh;
my $units = $dbh->selectall_arrayref(
q|SELECT branchcode, categorycode, itemtype, lengthunit FROM issuingrules WHERE lengthunit NOT IN ( 'days', 'hours' ); |,
{ Slice => {} }
);
my $units = Koha::CirculationRules->search({ rule_name => 'lengthunit', rule_value => { -not_in => ['days', 'hours'] } });
if (@$units) {
if ( $units->count ) {
$template->param(
warnIssuingRules => 1,
ir_units => $units,

6
koha-tmpl/intranet-tmpl/prog/en/modules/about.tt

@ -412,9 +412,9 @@
[% FOREACH unit IN ir_units %]
<tr>
<th scope="row"><b>Warning</b></th>
<td>The [% unit.branchcode | html %], [% unit.categorycode | html %], [% unit.itemtype | html %]
issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as
[% unit.lengthunit | html %].
<td>The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %]
issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as
[% unit.rule_value | html %].
</td>
</tr>
[% END %]

Loading…
Cancel
Save