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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1445-1450 modules: Link Here
1445
              columnname: itemtype
1445
              columnname: itemtype
1446
            -
1446
            -
1447
              columnname: status
1447
              columnname: status
1448
            -
1449
              columnname: notes
1448
1450
1449
    checkouthistory:
1451
    checkouthistory:
1450
      checkouthistory-table:
1452
      checkouthistory-table:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-1 / +10 lines)
Lines 97-102 Link Here
97
                                <th>Requested item type</th>
97
                                <th>Requested item type</th>
98
                            [% END %]
98
                            [% END %]
99
                            <th>Status</th>
99
                            <th>Status</th>
100
                            <th>Notes</th>
100
                        </tr>
101
                        </tr>
101
                    </thead>
102
                    </thead>
102
                </table>
103
                </table>
Lines 141-146 Link Here
141
                                <th>Requested item type</th>
142
                                <th>Requested item type</th>
142
                            [% END %]
143
                            [% END %]
143
                            <th>Status</th>
144
                            <th>Status</th>
145
                            <th>Notes</th>
144
                        </tr>
146
                        </tr>
145
                    </thead>
147
                    </thead>
146
                </table>
148
                </table>
Lines 332-337 Link Here
332
                                return _("Pending");
334
                                return _("Pending");
333
                            }
335
                            }
334
                        },
336
                        },
337
                        {
338
                            data: "notes",
339
                            searchable: true,
340
                            orderable: true,
341
                            render: function (data, type, row, meta) {
342
                                return row.notes;
343
                            }
344
                        },
335
                    ],
345
                    ],
336
                }, table_settings, true, additional_filters);
346
                }, table_settings, true, additional_filters);
337
            }
347
            }
338
- 

Return to bug 38939