ソースを参照

Bug 28092: Add reserve notes column to holds to pull

To test:
-PLace a hold and add a reserve note to that hold
-Go to Circulation > Holds to pull
-Notice there is no reserve notes column
-Apply patch and restart all the things
-Reload the Holds to pull report and you should see a reserve notes column
-Go to table settings (/cgi-bin/koha/admin/columns_settings.pl) and make sure you can properly hide the column.
-Test other columns in the table and make sure you can properly hide them

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Signed-off-by: Petro Vashchuk <stalkernoid@gmail.com>
Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Lucas Gass 3年前
committed by Jonathan Druart
コミット
7523bb35bf
  1. 2
      admin/columns_settings.yml
  2. 3
      koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt

2
admin/columns_settings.yml

@ -1195,6 +1195,8 @@ modules:
columnname: locations
-
columnname: hold_date
-
columnname: reserve_notes
-
columnname: action

3
koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt

@ -78,6 +78,7 @@
<th class="string-sort">Available item types</th>
<th class="string-sort">Available locations</th>
<th>Earliest hold date</th>
<th>Reserve notes</th>
<th>Action</th>
</tr>
</thead>
@ -177,6 +178,7 @@
<td data-order="[% hold.reservedate | html %]">
[% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]
</td>
<td>[% hold.reservenotes | html %]</td>
<td>
<form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post">
<input type="hidden" name="op" value="cancel_reserve" />
@ -238,6 +240,7 @@
<td id="locationfilter"></td>
<td></td>
<td></td>
<td></td>
</tr>
</tfoot>
</table>

読み込み中…
キャンセル
保存