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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +2 lines)
Lines 1029-1042 Link Here
1029
                    Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
1029
                    Dopop('hold-transfer-slip.pl?reserve_id=[% reserve_id | uri %]');
1030
                [% END %]
1030
                [% END %]
1031
            [% END %]
1031
            [% END %]
1032
            var columns_settings = [% TablesSettings.GetColumns( 'circ', 'returns', 'checkedintable', 'json' ) | $raw %]
1032
            var table_settings = [% TablesSettings.GetTableSettings( 'circ', 'returns', 'checkedintable', 'json' ) | $raw %]
1033
            var returns_table = KohaTable("checkedintable", {
1033
            var returns_table = KohaTable("checkedintable", {
1034
                    "bFilter":false,
1034
                    "bFilter":false,
1035
                    "bPaginate":false,
1035
                    "bPaginate":false,
1036
                    "bInfo":false,
1036
                    "bInfo":false,
1037
                    "bSort":false,
1037
                    "bSort":false,
1038
                    "dom": 'B<"clearfix">t',
1038
                    "dom": 'B<"clearfix">t',
1039
                    }, columns_settings);
1039
                    }, table_settings);
1040
1040
1041
            $("#exemptcheck").change(function () {
1041
            $("#exemptcheck").change(function () {
1042
                if (this.checked == true) {
1042
                if (this.checked == true) {
1043
- 

Return to bug 29648