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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +1 lines)
Lines 1385-1391 Note that permanent location is a code, and location may be an authval. Link Here
1385
            }
1385
            }
1386
1386
1387
            [% IF Koha.Preference('AcquisitionDetails') %]
1387
            [% IF Koha.Preference('AcquisitionDetails') %]
1388
                var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'acquisitiondetails-table', 'json') %];
1388
                var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'acquisitiondetails-table', 'json') | $raw %];
1389
                var acquisitiondetails_table = KohaTable("orders", {
1389
                var acquisitiondetails_table = KohaTable("orders", {
1390
                    "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
1390
                    "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
1391
                    'bPaginate': false,
1391
                    'bPaginate': false,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt (-1 / +1 lines)
Lines 131-137 Link Here
131
[% INCLUDE 'columns_settings.inc' %]
131
[% INCLUDE 'columns_settings.inc' %]
132
    <script id="js">
132
    <script id="js">
133
        $(document).ready(function() {
133
        $(document).ready(function() {
134
            var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'checkoutshistory-table', 'json') %];
134
            var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'checkoutshistory-table', 'json') | $raw %];
135
            [% UNLESS show_patron_column %]
135
            [% UNLESS show_patron_column %]
136
                // Remove the patron column definition
136
                // Remove the patron column definition
137
                table_settings['columns'].splice(0,1);
137
                table_settings['columns'].splice(0,1);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-1 / +1 lines)
Lines 838-844 Link Here
838
    <script>
838
    <script>
839
        var prefilters = '[% prefilters | $raw %]';
839
        var prefilters = '[% prefilters | $raw %]';
840
        // Set column settings
840
        // Set column settings
841
        var table_settings = [% TablesSettings.GetTableSettings( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) %];
841
        var table_settings = [% TablesSettings.GetTableSettings( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) | $raw %];
842
842
843
        [% IF services_json.length > 0 %]
843
        [% IF services_json.length > 0 %]
844
        var services = [% services_json | $raw %];
844
        var services = [% services_json | $raw %];
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-1 / +1 lines)
Lines 137-143 Link Here
137
    [% Asset.js("js/members-menu.js") | $raw %]
137
    [% Asset.js("js/members-menu.js") | $raw %]
138
    <script>
138
    <script>
139
        $(document).ready(function() {
139
        $(document).ready(function() {
140
            var table_settings = [% TablesSettings.GetTableSettings('members', 'holdshistory', 'holdshistory-table', 'json') %];
140
            var table_settings = [% TablesSettings.GetTableSettings('members', 'holdshistory', 'holdshistory-table', 'json') | $raw %];
141
            [% UNLESS show_itemtype_column %]
141
            [% UNLESS show_itemtype_column %]
142
              //Remove item type column settings
142
              //Remove item type column settings
143
              table_settings['columns'] = table_settings['columns'].filter(function(c){return c['columnname'] != 'itemtype';});
143
              table_settings['columns'] = table_settings['columns'].filter(function(c){return c['columnname'] != 'itemtype';});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/ill-requests.tt (-1 / +1 lines)
Lines 59-65 Link Here
59
        <script>
59
        <script>
60
            var prefilters = '[% prefilters | html %]';
60
            var prefilters = '[% prefilters | html %]';
61
            // Set column settings
61
            // Set column settings
62
            var table_settings = [% TablesSettings.GetTableSettings( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) %];
62
            var table_settings = [% TablesSettings.GetTableSettings( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) | $raw %];
63
        </script>
63
        </script>
64
        [% INCLUDE 'ill-list-table-strings.inc' %]
64
        [% INCLUDE 'ill-list-table-strings.inc' %]
65
        [% Asset.js("js/ill-list-table.js") | $raw %]
65
        [% Asset.js("js/ill-list-table.js") | $raw %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-1 / +1 lines)
Lines 156-162 Link Here
156
    [% INCLUDE 'columns_settings.inc' %]
156
    [% INCLUDE 'columns_settings.inc' %]
157
    <script id="js">
157
    <script id="js">
158
        $(document).ready(function() {
158
        $(document).ready(function() {
159
            var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
159
            var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') | $raw %];
160
            var table = KohaTable("table_readingrec", {
160
            var table = KohaTable("table_readingrec", {
161
                "sPaginationType": "full",
161
                "sPaginationType": "full",
162
                "aaSorting": [[10, 'desc']]
162
                "aaSorting": [[10, 'desc']]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt (-2 / +1 lines)
Lines 171-177 Link Here
171
    [% INCLUDE 'datatables.inc' %]
171
    [% INCLUDE 'datatables.inc' %]
172
    [% INCLUDE 'columns_settings.inc' %]
172
    [% INCLUDE 'columns_settings.inc' %]
173
    <script>
173
    <script>
174
        var table_settings = [% TablesSettings.GetTableSettings( 'reports', 'orders_by_fund', 'funds-table', 'json' ) %];
174
        var table_settings = [% TablesSettings.GetTableSettings( 'reports', 'orders_by_fund', 'funds-table', 'json' ) | $raw %];
175
        $(document).ready( function () {
175
        $(document).ready( function () {
176
            var funds_table = KohaTable("funds", {
176
            var funds_table = KohaTable("funds", {
177
                'autoWidth': false,
177
                'autoWidth': false,
178
- 

Return to bug 29648