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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1422-1427 modules: Link Here
1422
              columnname: itemtype
1422
              columnname: itemtype
1423
            -
1423
            -
1424
              columnname: status
1424
              columnname: status
1425
            -
1426
              columnname: notes
1425
1427
1426
    checkouthistory:
1428
    checkouthistory:
1427
      checkouthistory-table:
1429
      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 323-328 Link Here
323
                                return _("Pending");
325
                                return _("Pending");
324
                            }
326
                            }
325
                        },
327
                        },
328
                        {
329
                            data: "notes",
330
                            searchable: true,
331
                            orderable: true,
332
                            render: function (data, type, row, meta) {
333
                                return row.notes;
334
                            }
335
                        },
326
                    ],
336
                    ],
327
                }, table_settings, true, additional_filters);
337
                }, table_settings, true, additional_filters);
328
            }
338
            }
329
- 

Return to bug 38939