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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1412-1417 modules: Link Here
1412
              columnname: itemtype
1412
              columnname: itemtype
1413
            -
1413
            -
1414
              columnname: status
1414
              columnname: status
1415
            -
1416
              columnname: notes
1415
1417
1416
    checkouthistory:
1418
    checkouthistory:
1417
      checkouthistory-table:
1419
      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 324-329 Link Here
324
                                return _("Pending");
326
                                return _("Pending");
325
                            }
327
                            }
326
                        },
328
                        },
329
                        {
330
                            data: "notes",
331
                            searchable: true,
332
                            orderable: true,
333
                            render: function (data, type, row, meta) {
334
                                return row.notes;
335
                            }
336
                        },
327
                    ],
337
                    ],
328
                }, table_settings, true, additional_filters);
338
                }, table_settings, true, additional_filters);
329
            }
339
            }
330
- 

Return to bug 38939