Bug 23095: Correctly display circulation rules (0 vs undef)
From the following commit:
commit d1303ca834
Bug 18925: (follow-up) Fix null/empty behavior
The global test must have been adjusted as well to catch empty strings.
Actually we are expecting the plugin to return undef but the template variable contains an empty string.
So the test should only be [% IF var != '' %] instead of [% IF var.defined && var != '' %]
but I prefer to keep it as it for now.
Test plan:
In the section "Default checkout, hold policy by patron category"
Set total checkouts = blank
total on-site checkouts = blank
total holds = 0
Save
=> Without this patch the line will not appear
=> With this patch applied there must be "unlimited, unlimited, 0"
Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
18f2074f8d
commit
3de89b98ce
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@
|
|||
[% SET patron_maxonsiteissueqty = CirculationRules.Search( branchcode, c, undef, 'patron_maxonsiteissueqty' ) %]
|
||||
[% SET max_holds = CirculationRules.Search( branchcode, c, undef, 'max_holds' ) %]
|
||||
|
||||
[% IF patron_maxissueqty || patron_maxonsiteissueqty || max_holds %]
|
||||
[% IF ( patron_maxissueqty.defined && patron_maxissueqty != '' ) || ( patron_maxonsiteissueqty.defined && patron_maxonsiteissueqty != '' ) || ( max_holds.defined && max_holds != '' ) %]
|
||||
<tr>
|
||||
<td>
|
||||
[% IF c == '*'%]
|
||||
|
|
Loading…
Reference in a new issue