View | Details | Raw Unified | Return to bug 30964
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt (-33 / +31 lines)
Lines 51-56 Link Here
51
    </ol>
51
    </ol>
52
</nav>
52
</nav>
53
53
54
55
[% BLOCK waiting_holds %]
56
    [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => logged_in_user.branchcode ) %]
57
    [% FOREACH h IN waiting_holds %]
58
       <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% h.biblionumber | uri %]">[% h.biblio.title | html %]</a> ([% h.biblio.author | html %], <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% h.itemnumber | html %]&biblionumber=[% h.biblionumber | html %]#item[% h.itemnumber | html %]">[% h.item.barcode | html %]</a>)<br/>
59
    [% END %]
60
[% END %]
61
62
[% BLOCK patron_info %]
63
    <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cp.borrowernumber | uri %]">[% cp.patron.firstname | html %] [% cp.patron.surname | html %] ([% cp.patron.cardnumber | html %])</a>
64
    [% IF cp.notes %]
65
        <br/>
66
        <span>Notes: </span>[% cp.notes | html %]
67
    [% END %]
68
    [% IF cp.patron.debarred %]
69
        <br/>
70
        <span>Patron's account is restricted</span>
71
    [% END %]
72
    [% IF cp.patron.has_overdues %]
73
        <br />
74
        <span>Patron has items overdue</span>
75
    [% END %]
76
[% END %]
77
54
<div class="main container-fluid">
78
<div class="main container-fluid">
55
    <div class="row">
79
    <div class="row">
56
        <div class="col-md-10 col-md-offset-1 col-lg-10 col-lg-offset-1">
80
        <div class="col-md-10 col-md-offset-1 col-lg-10 col-lg-offset-1">
Lines 160-176 Link Here
160
                                                <tr class="[% class | html %]">
184
                                                <tr class="[% class | html %]">
161
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
185
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
162
                                                    <td>
186
                                                    <td>
163
                                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cp.borrowernumber | uri %]">[% cp.patron.firstname | html %] [% cp.patron.surname | html %] ([% cp.patron.cardnumber | html %])</a>
187
                                                        [% PROCESS patron_info %]
164
                                                        [% IF cp.notes %]
165
                                                            <br/>
166
                                                            Notes: [% cp.notes | html %]
167
                                                        [% END %]
168
                                                    </td>
188
                                                    </td>
169
                                                    <td>
189
                                                    <td>
170
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => logged_in_user.branchcode ) %]
190
                                                        [% PROCESS waiting_holds %]
171
                                                        [% FOREACH h IN waiting_holds %]
172
                                                           <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% h.biblionumber | uri %]">[% h.biblio.title | html %]</a> ([% h.biblio.author | html %], <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% h.itemnumber | html %]&biblionumber=[% h.biblionumber | html %]#item[% h.itemnumber | html %]">[% h.item.barcode | html %]</a>)<br/>
173
                                                        [% END %]
174
                                                    </td>
191
                                                    </td>
175
                                                    <td>
192
                                                    <td>
176
                                                        <form method="post" class="form">
193
                                                        <form method="post" class="form">
Lines 230-246 Link Here
230
                                                <tr class="[% class | html %]">
247
                                                <tr class="[% class | html %]">
231
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
248
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
232
                                                    <td>
249
                                                    <td>
233
                                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cp.borrowernumber | uri %]">[% cp.patron.firstname | html %] [% cp.patron.surname | html %] ([% cp.patron.cardnumber | html %])</a>
250
                                                        [% PROCESS patron_info %]
234
                                                        [% IF cp.notes %]
235
                                                            <br/>
236
                                                            Notes: [% cp.notes | html %]
237
                                                        [% END %]
238
                                                    </td>
251
                                                    </td>
239
                                                    <td>
252
                                                    <td>
240
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => logged_in_user.branchcode ) %]
253
                                                        [% PROCESS waiting_holds %]
241
                                                        [% FOREACH h IN waiting_holds %]
242
                                                           <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% h.biblionumber | uri %]">[% h.biblio.title | html %]</a> ([% h.biblio.author | html %], <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% h.itemnumber | html %]&biblionumber=[% h.biblionumber | html %]#item[% h.itemnumber | html %]">[% h.item.barcode | html %]</a>)<br/>
243
                                                        [% END %]
244
                                                    </td>
254
                                                    </td>
245
                                                    <td>
255
                                                    <td>
246
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
256
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 312-328 Link Here
312
                                                <tr class="[% class | html %]">
322
                                                <tr class="[% class | html %]">
313
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
323
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
314
                                                    <td>
324
                                                    <td>
315
                                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cp.borrowernumber | uri %]">[% cp.patron.firstname | html %] [% cp.patron.surname | html %] ([% cp.patron.cardnumber | html %])</a>
325
                                                        [% PROCESS patron_info %]
316
                                                        [% IF cp.notes %]
317
                                                            <br/>
318
                                                            Notes: [% cp.notes | html %]
319
                                                        [% END %]
320
                                                    </td>
326
                                                    </td>
321
                                                    <td>
327
                                                    <td>
322
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => logged_in_user.branchcode ) %]
328
                                                        [% PROCESS waiting_holds %]
323
                                                        [% FOREACH h IN waiting_holds %]
324
                                                           <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% h.biblionumber | uri %]">[% h.biblio.title | html %]</a> ([% h.biblio.author | html %], <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% h.itemnumber | html %]&biblionumber=[% h.biblionumber | html %]#item[% h.itemnumber | html %]">[% h.item.barcode | html %]</a>)<br/>
325
                                                        [% END %]
326
                                                    </td>
329
                                                    </td>
327
                                                    <td>
330
                                                    <td>
328
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
331
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 392-402 Link Here
392
                                                <tr class="[% class | html %]">
395
                                                <tr class="[% class | html %]">
393
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
396
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
394
                                                    <td>
397
                                                    <td>
395
                                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% cp.borrowernumber | uri %]">[% cp.patron.firstname | html %] [% cp.patron.surname | html %] ([% cp.patron.cardnumber | html %])</a>
398
                                                        [% PROCESS patron_info %]
396
                                                        [% IF cp.notes %]
397
                                                            <br/>
398
                                                            Notes: [% cp.notes | html %]
399
                                                        [% END %]
400
                                                    </td>
399
                                                    </td>
401
                                                    <td>
400
                                                    <td>
402
                                                    [% FOREACH c IN cp.checkouts %]
401
                                                    [% FOREACH c IN cp.checkouts %]
403
- 

Return to bug 30964