Lines 228-238
Link Here
|
228 |
<tbody> |
228 |
<tbody> |
229 |
[% FOR checkout IN checkouts %] |
229 |
[% FOR checkout IN checkouts %] |
230 |
<tr> |
230 |
<tr> |
231 |
<td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
231 |
<td data-sort="[% checkout.date_due | html %]">[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
232 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
232 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
233 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
233 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
234 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
234 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
235 |
<td>[% checkout.issuedate | $KohaDates %]</td> |
235 |
<td data-sort="[% checkout.issuedate | html %]">[% checkout.issuedate | $KohaDates %]</td> |
236 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
236 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
237 |
</tr> |
237 |
</tr> |
238 |
[% END %] |
238 |
[% END %] |
Lines 275-284
Link Here
|
275 |
}); |
275 |
}); |
276 |
|
276 |
|
277 |
$("#checkouts_result").kohaTable({ |
277 |
$("#checkouts_result").kohaTable({ |
278 |
columnDefs: [ |
278 |
columnDefs: [{ targets: [2], orderable: false, searchable: false }], |
279 |
{ targets: [0, 3], orderable: false, searchable: false }, |
|
|
280 |
{ targets: [1], type: "num-html" }, |
281 |
], |
282 |
dom: "t", |
279 |
dom: "t", |
283 |
order: [], |
280 |
order: [], |
284 |
paginate: false, |
281 |
paginate: false, |
285 |
- |
|
|