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 52-57 Link Here
52
    </ol>
52
    </ol>
53
</nav>
53
</nav>
54
54
55
56
[% BLOCK waiting_holds %]
57
    [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
58
    [% FOREACH h IN waiting_holds %]
59
       <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/>
60
    [% END %]
61
[% END %]
62
63
[% BLOCK patron_info %]
64
    <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>
65
    [% IF cp.notes %]
66
        <br/>
67
        <span>Notes: </span>[% cp.notes | html %]
68
    [% END %]
69
    [% IF cp.patron.debarred %]
70
        <br/>
71
        <span>Patron's account is restricted</span>
72
    [% END %]
73
    [% IF cp.patron.has_overdues %]
74
        <br />
75
        <span>Patron has items overdue</span>
76
    [% END %]
77
[% END %]
78
55
<div class="main container-fluid">
79
<div class="main container-fluid">
56
    <div class="row">
80
    <div class="row">
57
        <div class="col-sm-12">
81
        <div class="col-sm-12">
Lines 169-185 Link Here
169
                                                <tr class="[% class | html %]">
193
                                                <tr class="[% class | html %]">
170
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
194
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
171
                                                    <td>
195
                                                    <td>
172
                                                        <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>
196
                                                        [% PROCESS patron_info %]
173
                                                        [% IF cp.notes %]
174
                                                            <br/>
175
                                                            Notes: [% cp.notes | html %]
176
                                                        [% END %]
177
                                                    </td>
197
                                                    </td>
178
                                                    <td>
198
                                                    <td>
179
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
199
                                                        [% PROCESS waiting_holds %]
180
                                                        [% FOREACH h IN waiting_holds %]
181
                                                           <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/>
182
                                                        [% END %]
183
                                                    </td>
200
                                                    </td>
184
                                                    <td>
201
                                                    <td>
185
                                                        <form method="post" class="form">
202
                                                        <form method="post" class="form">
Lines 239-255 Link Here
239
                                                <tr class="[% class | html %]">
256
                                                <tr class="[% class | html %]">
240
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
257
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
241
                                                    <td>
258
                                                    <td>
242
                                                        <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>
259
                                                        [% PROCESS patron_info %]
243
                                                        [% IF cp.notes %]
244
                                                            <br/>
245
                                                            Notes: [% cp.notes | html %]
246
                                                        [% END %]
247
                                                    </td>
260
                                                    </td>
248
                                                    <td>
261
                                                    <td>
249
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
262
                                                        [% PROCESS waiting_holds %]
250
                                                        [% FOREACH h IN waiting_holds %]
251
                                                           <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/>
252
                                                        [% END %]
253
                                                    </td>
263
                                                    </td>
254
                                                    <td>
264
                                                    <td>
255
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
265
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 321-337 Link Here
321
                                                <tr class="[% class | html %]">
331
                                                <tr class="[% class | html %]">
322
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
332
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
323
                                                    <td>
333
                                                    <td>
324
                                                        <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>
334
                                                        [% PROCESS patron_info %]
325
                                                        [% IF cp.notes %]
326
                                                            <br/>
327
                                                            Notes: [% cp.notes | html %]
328
                                                        [% END %]
329
                                                    </td>
335
                                                    </td>
330
                                                    <td>
336
                                                    <td>
331
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
337
                                                        [% PROCESS waiting_holds %]
332
                                                        [% FOREACH h IN waiting_holds %]
333
                                                           <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/>
334
                                                        [% END %]
335
                                                    </td>
338
                                                    </td>
336
                                                    <td>
339
                                                    <td>
337
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
340
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 401-411 Link Here
401
                                                <tr class="[% class | html %]">
404
                                                <tr class="[% class | html %]">
402
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
405
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
403
                                                    <td>
406
                                                    <td>
404
                                                        <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>
407
                                                        [% PROCESS patron_info %]
405
                                                        [% IF cp.notes %]
406
                                                            <br/>
407
                                                            Notes: [% cp.notes | html %]
408
                                                        [% END %]
409
                                                    </td>
408
                                                    </td>
410
                                                    <td>
409
                                                    <td>
411
                                                    [% FOREACH c IN cp.checkouts %]
410
                                                    [% FOREACH c IN cp.checkouts %]
412
- 

Return to bug 30964