Lines 1655-1661
Link Here
|
1655 |
<script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script> |
1655 |
<script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script> |
1656 |
[% END %] |
1656 |
[% END %] |
1657 |
[% INCLUDE 'datatables.inc' %] |
1657 |
[% INCLUDE 'datatables.inc' %] |
1658 |
[% INCLUDE 'columns_settings.inc' %] |
|
|
1659 |
[% INCLUDE 'js-date-format.inc' %] |
1658 |
[% INCLUDE 'js-date-format.inc' %] |
1660 |
[% Asset.js("lib/dayjs/plugin/isSameOrAfter.js") | $raw %] |
1659 |
[% Asset.js("lib/dayjs/plugin/isSameOrAfter.js") | $raw %] |
1661 |
[% Asset.js("lib/dayjs/plugin/isSameOrBefore.js") | $raw %] |
1660 |
[% Asset.js("lib/dayjs/plugin/isSameOrBefore.js") | $raw %] |
Lines 2017-2028
Link Here
|
2017 |
|
2016 |
|
2018 |
[% IF Koha.Preference('AcquisitionDetails') %] |
2017 |
[% IF Koha.Preference('AcquisitionDetails') %] |
2019 |
var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'acquisitiondetails-table', 'json') | $raw %]; |
2018 |
var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'acquisitiondetails-table', 'json') | $raw %]; |
2020 |
var acquisitiondetails_table = KohaTable("orders", { |
2019 |
var acquisitiondetails_table = $("#orders").kohaTable( |
2021 |
"dom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', |
2020 |
{ |
2022 |
"paginate": false, |
2021 |
dom: 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', |
2023 |
"autoWidth": false, |
2022 |
paginate: false, |
2024 |
"order": [[ 4, "desc" ]], |
2023 |
autoWidth: false, |
2025 |
}, table_settings); |
2024 |
order: [[4, "desc"]], |
|
|
2025 |
}, |
2026 |
table_settings |
2027 |
); |
2026 |
[% END %] |
2028 |
[% END %] |
2027 |
|
2029 |
|
2028 |
[% IF suggestions.count %] |
2030 |
[% IF suggestions.count %] |
Lines 2037-2047
Link Here
|
2037 |
|
2039 |
|
2038 |
[% IF ( reviews ) %] |
2040 |
[% IF ( reviews ) %] |
2039 |
var comment_table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'comments-table', 'json') | $raw %]; |
2041 |
var comment_table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'comments-table', 'json') | $raw %]; |
2040 |
var comments_table = KohaTable("comments_table", { |
2042 |
var comments_table = $("#comments_table").kohatable( |
2041 |
"paginate": false, |
2043 |
{ |
2042 |
"autoWidth": false, |
2044 |
paginate: false, |
2043 |
"order": [[ 2, "desc" ]], |
2045 |
autoWidth: false, |
2044 |
}, comment_table_settings); |
2046 |
order: [[2, "desc"]], |
|
|
2047 |
}, |
2048 |
comment_table_settings |
2049 |
); |
2045 |
[% END %] |
2050 |
[% END %] |
2046 |
}); |
2051 |
}); |
2047 |
|
2052 |
|