Lines 1699-1705
Note that permanent location is a code, and location may be an authval.
Link Here
|
1699 |
"orderable": true, |
1699 |
"orderable": true, |
1700 |
"render": function(data, type, row, meta) { |
1700 |
"render": function(data, type, row, meta) { |
1701 |
if ( row.lost_status == bundle_lost_value ) { |
1701 |
if ( row.lost_status == bundle_lost_value ) { |
1702 |
let out = '<span class="lost">' + _("Last seen") + ': ' + row.last_seen_date + '</span>'; |
1702 |
let out = '<span class="lost">' + _("Last seen") + ': ' + $date(row.last_seen_date) + '</span>'; |
1703 |
if ( row.return_claim ) { |
1703 |
if ( row.return_claim ) { |
1704 |
out = out + '<span class="claims_return">' + _("Claims returned by") + ': ' + $patron_to_html( row.return_claim.patron, { display_cardnumber: false, url: true } ) + '</span>'; |
1704 |
out = out + '<span class="claims_return">' + _("Claims returned by") + ': ' + $patron_to_html( row.return_claim.patron, { display_cardnumber: false, url: true } ) + '</span>'; |
1705 |
} |
1705 |
} |
1706 |
- |
|
|