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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-5 / +4 lines)
Lines 243-261 Link Here
243
            checked_out: _("Checked out"),
243
            checked_out: _("Checked out"),
244
            local_use: _("On-site checkout"),
244
            local_use: _("On-site checkout"),
245
            in_transit: _("In transit"),
245
            in_transit: _("In transit"),
246
            lost: _("Lost"),
246
            lost: _("Lost (all)"),
247
            ...Object.fromEntries(
247
            ...Object.fromEntries(
248
                [...av_lost].map(([k, v]) => [`lost-${k}`, `⤷ ${v}`])
248
                [...av_lost].map(([k, v]) => [`lost-${k}`, `⤷ ${v}`])
249
            ),
249
            ),
250
            withdrawn: _("Withdrawn"),
250
            withdrawn: _("Withdrawn (all)"),
251
            ...Object.fromEntries(
251
            ...Object.fromEntries(
252
                [...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `⤷ ${v}`])
252
                [...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `⤷ ${v}`])
253
            ),
253
            ),
254
            damaged:_("Damaged"),
254
            damaged:_("Damaged (all)"),
255
            ...Object.fromEntries(
255
            ...Object.fromEntries(
256
                [...av_damaged].map(([k, v]) => [`damaged-${k}`, `⤷ ${v}`])
256
                [...av_damaged].map(([k, v]) => [`damaged-${k}`, `⤷ ${v}`])
257
            ),
257
            ),
258
            not_for_loan: _("Not for loan"),
258
            not_for_loan: _("Not for loan (all)"),
259
            ...Object.fromEntries(
259
            ...Object.fromEntries(
260
                [...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `⤷ ${v}`])
260
                [...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `⤷ ${v}`])
261
            ),
261
            ),
262
- 

Return to bug 41254