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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 556-561 modules: Link Here
556
              columnname: author
556
              columnname: author
557
            -
557
            -
558
              columnname: callnumber
558
              columnname: callnumber
559
            -
560
              columnname: volume
559
            -
561
            -
560
              columnname: barcode
562
              columnname: barcode
561
            -
563
            -
(-)a/api/v1/swagger/paths/items.yaml (+1 lines)
Lines 249-254 Link Here
249
          type: string
249
          type: string
250
          enum:
250
          enum:
251
            - biblio
251
            - biblio
252
            - biblio.biblioitem
252
            - checkout
253
            - checkout
253
            - return_claims
254
            - return_claims
254
            - return_claim
255
            - return_claim
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +8 lines)
Lines 1864-1874 Link Here
1864
                    },
1864
                    },
1865
                    "embed": [
1865
                    "embed": [
1866
                        "biblio",
1866
                        "biblio",
1867
                        "biblio.biblioitem",
1867
                        "return_claim.patron"
1868
                        "return_claim.patron"
1868
                    ],
1869
                    ],
1869
                    "order": [[ 1, "asc" ]],
1870
                    "order": [[ 1, "asc" ]],
1870
                    "columnDefs": [ {
1871
                    "columnDefs": [ {
1871
                        "targets": [0,1,2,3],
1872
                        "targets": [0,1,2,3,4],
1872
                        "render": function (data, type, row, meta) {
1873
                        "render": function (data, type, row, meta) {
1873
                            if ( data && type == 'display' ) {
1874
                            if ( data && type == 'display' ) {
1874
                                return data.escapeHtml();
1875
                                return data.escapeHtml();
Lines 1898-1903 Link Here
1898
                            "searchable": true,
1899
                            "searchable": true,
1899
                            "orderable": true,
1900
                            "orderable": true,
1900
                        },
1901
                        },
1902
                        {
1903
                            "data": "biblio.biblioitem.volume",
1904
                            "title": _("Volume"),
1905
                            "searchable": true,
1906
                            "orderable": true,
1907
                        },
1901
                        {
1908
                        {
1902
                            "data": "external_id",
1909
                            "data": "external_id",
1903
                            "title": _("Barcode"),
1910
                            "title": _("Barcode"),
1904
- 

Return to bug 33035