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 => Branches.GetLoggedInBranchcode ) %]
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 162-178 Link Here
162
                                                <tr class="[% class | html %]">
186
                                                <tr class="[% class | html %]">
163
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
187
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
164
                                                    <td>
188
                                                    <td>
165
                                                        <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>
189
                                                        [% PROCESS patron_info %]
166
                                                        [% IF cp.notes %]
167
                                                            <br/>
168
                                                            Notes: [% cp.notes | html %]
169
                                                        [% END %]
170
                                                    </td>
190
                                                    </td>
171
                                                    <td>
191
                                                    <td>
172
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
192
                                                        [% PROCESS waiting_holds %]
173
                                                        [% FOREACH h IN waiting_holds %]
174
                                                           <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/>
175
                                                        [% END %]
176
                                                    </td>
193
                                                    </td>
177
                                                    <td>
194
                                                    <td>
178
                                                        <form method="post" class="form">
195
                                                        <form method="post" class="form">
Lines 232-248 Link Here
232
                                                <tr class="[% class | html %]">
249
                                                <tr class="[% class | html %]">
233
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
250
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
234
                                                    <td>
251
                                                    <td>
235
                                                        <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>
252
                                                        [% PROCESS patron_info %]
236
                                                        [% IF cp.notes %]
237
                                                            <br/>
238
                                                            Notes: [% cp.notes | html %]
239
                                                        [% END %]
240
                                                    </td>
253
                                                    </td>
241
                                                    <td>
254
                                                    <td>
242
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
255
                                                        [% PROCESS waiting_holds %]
243
                                                        [% FOREACH h IN waiting_holds %]
244
                                                           <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/>
245
                                                        [% END %]
246
                                                    </td>
256
                                                    </td>
247
                                                    <td>
257
                                                    <td>
248
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
258
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 314-330 Link Here
314
                                                <tr class="[% class | html %]">
324
                                                <tr class="[% class | html %]">
315
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
325
                                                    <td>[% cp.scheduled_pickup_datetime | $KohaDates with_hours = 1 %]</td>
316
                                                    <td>
326
                                                    <td>
317
                                                        <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>
327
                                                        [% PROCESS patron_info %]
318
                                                        [% IF cp.notes %]
319
                                                            <br/>
320
                                                            Notes: [% cp.notes | html %]
321
                                                        [% END %]
322
                                                    </td>
328
                                                    </td>
323
                                                    <td>
329
                                                    <td>
324
                                                        [% SET waiting_holds = cp.patron.holds.search( found => 'W', branchcode => Branches.GetLoggedInBranchcode ) %]
330
                                                        [% PROCESS waiting_holds %]
325
                                                        [% FOREACH h IN waiting_holds %]
326
                                                           <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/>
327
                                                        [% END %]
328
                                                    </td>
331
                                                    </td>
329
                                                    <td>
332
                                                    <td>
330
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
333
                                                        [% cp.staged_by_staff.firstname | html %] [% cp.staged_by_staff.surname | html %]
Lines 394-404 Link Here
394
                                                <tr class="[% class | html %]">
397
                                                <tr class="[% class | html %]">
395
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
398
                                                    <td>[% cp.delivered_datetime | $KohaDates with_hours = 1 %]</td>
396
                                                    <td>
399
                                                    <td>
397
                                                        <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>
400
                                                        [% PROCESS patron_info %]
398
                                                        [% IF cp.notes %]
399
                                                            <br/>
400
                                                            Notes: [% cp.notes | html %]
401
                                                        [% END %]
402
                                                    </td>
401
                                                    </td>
403
                                                    <td>
402
                                                    <td>
404
                                                    [% FOREACH c IN cp.checkouts %]
403
                                                    [% FOREACH c IN cp.checkouts %]
405
- 

Return to bug 30964