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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt (-4 / +7 lines)
Lines 398-408 Link Here
398
                        }
398
                        }
399
                    },
399
                    },
400
                    {
400
                    {
401
                        data: 'basket.authorizer.library_id',
401
                        data: "", // 'basket.authorizer.library_id'
402
                        orderable: false,
402
                        orderable: false,
403
                        searchable: false,
403
                        searchable: false, // FIXME: not searchable as there's no FK
404
                        render: function(data, type, row, meta) {
404
                        render: function(data, type, row, meta) {
405
                            return escape_str(row.basket.authorizer._strings.library_id.str);
405
                            if ( basket.authorizer != null ) {
406
                                return escape_str(row.basket.authorizer._strings.library_id.str);
407
                            }
408
409
                            return "";
406
                        }
410
                        }
407
                    },
411
                    },
408
                    {
412
                    {
409
- 

Return to bug 32266