Bugzilla – Attachment 61278 Details for
Bug 7534
Add an option on library level to indicate if a library can be chosen as pick-up location
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 7534: (QA-follow-up) Default pickup location to Yes when adding a new library
Bug-7534-QA-follow-up-Default-pickup-location-to-Y.patch (text/plain), 2.37 KB, created by
Biblibre Sandboxes
on 2017-03-20 11:39:58 UTC
(
hide
)
Description:
Bug 7534: (QA-follow-up) Default pickup location to Yes when adding a new library
Filename:
MIME Type:
Creator:
Biblibre Sandboxes
Created:
2017-03-20 11:39:58 UTC
Size:
2.37 KB
patch
obsolete
>From f33993736a5cff8a0d1f961cf79c1426eb9ea3fa Mon Sep 17 00:00:00 2001 >From: Lari Taskula <lari.taskula@jns.fi> >Date: Tue, 7 Mar 2017 17:38:28 +0200 >Subject: [PATCH] Bug 7534: (QA-follow-up) Default pickup location to Yes when > adding a new library > >To test: >1. Apply the patches before this one >2. Go to /cgi-bin/koha/admin/branches.pl >3. Press New library button >4. Scroll down the page and observe Pickup location defaults to No >5. Apply this patch >6. Go to /cgi-bin/koha/admin/branches.pl >7. Press New library button >8. Scroll down the page and observe Pickup location now defaults to Yes > >Signed-off-by: Koha Team AMU <axelle.clarisse@univ-amu.fr> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >index 5ec817a..e325580 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >@@ -192,7 +192,7 @@ tinyMCE.init({ > <li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% library.opac_info |html %]</textarea></li> > <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip" size="15" maxlength="15" value="[% library.branchip |html %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li> > <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes |html %]" /></li> >- <li><label for="pickup_location">Pickup location: </label><select name="pickup_location" id="pickup_location"><option value="1" [% IF library.pickup_location %]selected[% END %]>Yes</option><option value="0" [% IF !library.pickup_location %]selected[% END %]>No</option></select></li> >+ <li><label for="pickup_location">Pickup location: </label><select name="pickup_location" id="pickup_location"><option value="1" [% IF !library || library.pickup_location == 1 %]selected="selected"[% END %]>Yes</option><option value="0" [% IF library && library.pickup_location == 0 %]selected="selected"[% END %]>No</option></select></li> > </ol> > </fieldset> > <fieldset class="action"> >-- >2.7.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 7534
:
60014
|
60015
|
60016
|
60017
|
60018
|
60022
|
60023
|
60781
|
60794
|
60795
|
60796
|
60797
|
60798
|
60799
|
60878
|
60879
|
60880
|
60881
|
60882
|
60883
|
61044
|
61045
|
61046
|
61047
|
61273
|
61274
|
61275
|
61276
|
61277
|
61278
|
61279
|
61280
|
77847
|
77848
|
77849
|
77850
|
77851
|
77852
|
77853
|
77854
|
77855
|
77856
|
78160
|
78161
|
78162
|
78163
|
78164
|
78165
|
78166
|
78167
|
78168
|
78169
|
78170
|
78171
|
78477
|
78478
|
78479
|
78480
|
78481
|
78482
|
78483
|
78484
|
78485
|
78486
|
78487
|
78488
|
78489
|
78495
|
78540
|
78548
|
84852