70b69010340235dec569f8c9d73f6e0c2bb5bb2e
[koha-ffzg.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / holds-table.inc
1 [% USE Branches %]
2 [% USE ItemTypes %]
3 [% USE KohaDates %]
4 [% PROCESS 'i18n.inc' %]
5
6 [% IF ( HOLDS.count ) %]
7     <div id="opac-user-holds" class="tab-pane" role="tabpanel" aria-labelledby="opac-user-holds-tab">
8         <table id="holdst" class="table table-bordered table-striped">
9             <caption>Holds <span class="count">([% HOLDS.count | html %] total)</span></caption>
10             <!-- HOLDS TABLE ROWS -->
11             <thead>
12                 <tr>
13                     <th class="anti-the">Title</th>
14                     [% IF ( showpriority ) %]
15                         <th>Placed on</th>
16                     [% ELSE %]
17                         <th class="psort">Placed on</th>
18                     [% END %]
19                     <th>Expires on</th>
20                     [% UNLESS( singleBranchMode) %]
21                         <th>Pick up location</th>
22                     [% END %]
23                     [% IF ( showpriority ) %]
24                         <th class="psort">Priority</th>
25                     [% END %]
26                     <th>Status</th>
27                     [% IF SuspendHoldsOpac and ! onlyinfo %]
28                             <th class="nosort" >Suspend</th>
29                     [% END %]
30                     [% IF ! onlyinfo %]
31                         <th class="nosort">Modify</th>
32                     [% END %]
33                 </tr>
34             </thead>
35             <tbody>
36                 [% SET all_holds_waiting = 1 %]
37                 [% FOREACH HOLD IN HOLDS %]
38                     [% UNLESS ( HOLD.is_waiting || HOLD.is_in_transit || HOLD.is_in_processing) %]
39                         [% SET all_holds_waiting = 0 %]
40                     [% END %]
41                     [% IF ( HOLD.is_at_destination ) %]
42                         <tr class="reserved">
43                     [% ELSIF HOLD.is_in_transit %]
44                         <tr class="transfered">
45                     [% ELSE %]
46                         <tr>
47                     [% END %]
48                         <td class="title">
49                             [% IF ! onlyinfo %]
50                                 [% INCLUDE 'biblio-title.inc' biblio=HOLD.biblio link=> 1 %]
51                                 [% HOLD.item.enumchron | html %]
52                             [% ELSE %]
53                                 <strong>
54                                     [% INCLUDE 'biblio-title.inc' biblio=HOLD.biblio %]
55                                     [% HOLD.item.enumchron | html %]
56                                 </strong>
57                             [% END %]
58                             [% HOLD.biblio.author | html %]
59                             [% IF HOLD.item_level_hold %]
60                                 <p class="hint">Item on hold: [% HOLD.item.barcode | html %]</p>
61                             [% END %]
62                         </td>
63                         <td class="reservedate" data-order="[% HOLD.reservedate | html %]">
64                             <span class="tdlabel">Hold date:</span>
65                                 [% HOLD.reservedate | $KohaDates %]
66                             </span>
67                         </td>
68                         [% IF ! HOLD.found %]
69                             <td class="expirationdate" data-order="[% HOLD.expirationdate | html %]">
70                                 [% IF ( HOLD.expirationdate ) %]
71                                     <span class="tdlabel">Expiration:</span>
72                                     [% HOLD.expirationdate | $KohaDates %]
73                                 [% ELSE %]
74                                     <span class="tdlabel">Expiration:</span>
75                                     Never expires
76                                 [% END %]
77                         [% ELSE %]
78                             <td class="expirationdate" data-order="0000-00-00">
79                                 -
80                         [% END %]
81                         </td>
82                         [% UNLESS( singleBranchMode) %]
83                             <td class="branch">
84                                 <span class="tdlabel">Pick up location:</span>
85                                 [% HOLD.branch.branchname | html %]
86                             </td>
87                         [% END %]
88                         [% IF ( showpriority ) %]
89                                 <td data-order="[% HOLD.priority | html %]" class="priority">
90                                 <span class="tdlabel">Priority:</span>
91                                 [% HOLD.priority | html %]
92                             </td>
93                         [% END %]
94                         <td class="status">
95                             <span class="tdlabel">Status:</span>
96                             [% IF ( HOLD.is_waiting ) %]
97                                 <i class="fa fa-exclamation-circle text-warning" aria-hidden="true"></i>
98                                 [% IF ( HOLD.is_at_destination ) %]
99                                     Item waiting at <strong> [% HOLD.branch.branchname | html %]</strong>
100                                     [% IF ( HOLD.desk_id ) %], [% HOLD.desk.desk_name | html %],[% END %]
101                                     [% IF ( HOLD.waitingdate ) %]
102                                         since [% HOLD.waitingdate | $KohaDates %]
103                                         [% IF HOLD.expirationdate %]
104                                             until [% HOLD.expirationdate | $KohaDates %]
105                                         [% END %]
106                                     [% END %]
107                                     <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
108                                 [% ELSE %]
109                                     Item in transit to <strong> [% Branches.GetName( HOLD.branchcode ) | html %]</strong> <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
110                                 [% END %]
111                             [% ELSE %]
112                                 [% IF ( HOLD.is_in_transit ) %]
113                                     [% SET transfer = HOLD.item.get_transfer %]
114                                     [% branch_name = BLOCK %]<strong>[% Branches.GetName( transfer.frombranch ) | html %]</strong>[% END %]
115                                     <span>Item in transit from [% branch_name| $raw %] since</span>
116                                     [% transfer.datesent | $KohaDates %]
117                                 [% ELSIF ( HOLD.is_in_processing ) %]
118                                     <span>Item in processing</span>
119                                 [% ELSIF ( HOLD.suspend ) %]
120                                     <span>Suspended</span>[% IF ( HOLD.suspend_until ) %] <span>until</span> [% HOLD.suspend_until | $KohaDates %][% END %]
121                                 [% ELSE %]
122                                     [% IF HOLD.itemtype %]
123                                         <span>Pending for next available item of item type '[% ItemTypes.GetDescription( HOLD.itemtype ) | html %]'</span>
124                                     [% ELSE %]
125                                         <span>Pending</span>
126                                     [% END %]
127                                 [% END %]
128                             [% END %]
129                         </td>
130                         [% IF SuspendHoldsOpac and ! onlyinfo %]
131                             <td>
132                                 [% IF ( HOLD.is_cancelable_from_opac ) %]
133                                     [% IF HOLD.suspend %]
134                                         <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
135                                             <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
136                                             <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-play" aria-hidden="true"></i> Resume</button>
137                                         </form>
138                                     [% ELSE %]
139                                         [% IF AutoResumeSuspendedHolds %]
140                                             <a class="btn btn-link suspend_hold js-show" href="#" role="button" data-title="[% HOLD.biblio.title | html %] [% FOREACH subtitle IN HOLD.biblio.subtitle.split(' \| ') %][% IF Koha.Preference('marcflavour')=='UNIMARC' %],[% END %][% subtitle | html %][% END %]" data-reserve_id="[% HOLD.reserve_id | html %]"><i class="fa fa-pause" aria-hidden="true"></i> Suspend</a>
141                                         [% ELSE %]
142                                             <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
143                                                 <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
144                                                 <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-pause" aria-hidden="true"></i> Suspend</button>
145                                             </form>
146                                         [% END # / IF AutoResumeSuspendedHolds %]
147                                     [% END # / IF HOLD.suspend %]
148                                 [% END # / IF ( HOLD.is_cancelable_from_opac )%]
149                             </td>
150                         [% END # / IF SuspendHoldsOpac %]
151                         [% IF ! onlyinfo %]
152                             <td class="modify">
153                                 [% IF ( HOLD.is_cancelable_from_opac ) %]
154                                     <form id="delete_hold_[% HOLD.reserve_id | html %]" action="/cgi-bin/koha/opac-modrequest.pl" method="post">
155                                         <input type="hidden" name="biblionumber" value="[% HOLD.biblionumber | html %]" />
156                                         <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
157                                         <button data-title="[% INCLUDE 'biblio-title-head.inc' biblio=HOLD.biblio %]" data-reserve_id="[% HOLD.reserve_id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-hold"><i class="fa fa-remove" aria-hidden="true"></i> [% tp('Cancel hold button', 'Cancel') | html %]</button>
158                                     </form>
159                                 [% ELSIF HOLD.is_waiting && HOLD.cancellation_requestable_from_opac %]
160                                     <form id="req_cancel_hold_[% HOLD.reserve_id | html %]" action="/cgi-bin/koha/opac-modrequest.pl" method="post">
161                                         <input type="hidden" name="biblionumber" value="[% HOLD.biblionumber | html %]" />
162                                         <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
163                                         <input type="hidden" name="cancellation_request" value="1" />
164                                         <button data-title="[% INCLUDE 'biblio-title-head.inc' biblio=HOLD.biblio %]" data-reserve_id="[% HOLD.reserve_id | html %]" type="submit" class="btn btn-sm btn-danger btn-req-delete-hold"><i class="fa fa-remove" aria-hidden="true"></i> [% tp('Cancel hold button', 'Cancel') | html %]</button>
165                                     </form>
166                                 [% END %]
167                             </td>
168                         [% END # / IF onlyinfo %]
169                     </tr>
170                 [% END # /FOREACH HOLDS %]
171             </tbody>
172         </table>
173
174         [% IF SuspendHoldsOpac and ! onlyinfo %]
175             [% UNLESS ( all_holds_waiting ) %]
176                 <div>
177                     <form class="form-inline" id="suspend_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
178                         <button type="submit" id="suspend_all_submit" class="btn btn-primary"><i class="fa fa-pause" aria-hidden="true"></i> Suspend all holds</button>
179                         <input type="hidden" name="suspend" value="1" />
180
181                         [% IF AutoResumeSuspendedHolds %]
182                             <label for="suspend_until"> until </label>
183                             <input type="text" name="suspend_until" id="suspend_until" class="flatpickr futuredate" size="10" />
184                             <p><a href="#" class="clear-flatpickr" data-fp="suspend_until">Clear date to suspend indefinitely</a></p>
185                         [% END %]
186                     </form>
187                 </div>
188                 <br/>
189                 <div>
190                     <form id="resume_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
191                         <button type="submit" id="resume_all_submit" class="btn btn-primary"><i class="fa fa-play" aria-hidden="true"></i> Resume all suspended holds</button>
192                         <input type="hidden" name="suspend" value="0" />
193                     </form>
194                 </div>
195             [% END %]
196         [% END %]
197     </div> <!-- / #opac-user-holds -->
198 [% END # / #HOLDS.count %]