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

(-)a/api/v1/swagger/paths/patrons_holds.yaml (-1 lines)
Lines 34-40 Link Here
34
            - deleted_biblio
34
            - deleted_biblio
35
            - item
35
            - item
36
            - pickup_library
36
            - pickup_library
37
            - pickup_library.branchname
38
        collectionFormat: csv
37
        collectionFormat: csv
39
    produces:
38
    produces:
40
      - application/json
39
      - application/json
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-3 / +2 lines)
Lines 203-209 Link Here
203
                };
203
                };
204
204
205
                let table_url = '/api/v1/patrons/[% patron.borrowernumber | uri %]/holds';
205
                let table_url = '/api/v1/patrons/[% patron.borrowernumber | uri %]/holds';
206
                let table_embeds = ['+strings', 'biblio', 'item', 'pickup_library', 'pickup_library.branchname'];
206
                let table_embeds = ['+strings', 'biblio', 'item', 'pickup_library'];
207
                if (old){
207
                if (old){
208
                    table_url += '?old=1';
208
                    table_url += '?old=1';
209
                    table_embeds.push('deleted_biblio');
209
                    table_embeds.push('deleted_biblio');
Lines 253-259 Link Here
253
                            }
253
                            }
254
                        },
254
                        },
255
                        {
255
                        {
256
                            data: "pickup_library_id:pickup_library.branchname",
256
                            data: "pickup_library_id:pickup_library.name",
257
                            searchable: true,
257
                            searchable: true,
258
                            orderable: true,
258
                            orderable: true,
259
                            render: function (data, type, row, meta) {
259
                            render: function (data, type, row, meta) {
260
- 

Return to bug 40543