Lines 756-761
Link Here
|
756 |
<th id="serial_planneddate" data-colname="serial_planneddate">Received date</th> |
756 |
<th id="serial_planneddate" data-colname="serial_planneddate">Received date</th> |
757 |
<th id="serial_status" data-colname="serial_status">Status</th> |
757 |
<th id="serial_status" data-colname="serial_status">Status</th> |
758 |
<th id="serial_notes" data-colname="serial_notes">Note</th> |
758 |
<th id="serial_notes" data-colname="serial_notes">Note</th> |
|
|
759 |
<th></th> |
759 |
</tr> |
760 |
</tr> |
760 |
</thead> |
761 |
</thead> |
761 |
<tbody> |
762 |
<tbody> |
Lines 779-784
Link Here
|
779 |
[% IF (latestserial.status8 ) %]<span>Stopped</span>[% END %] |
780 |
[% IF (latestserial.status8 ) %]<span>Stopped</span>[% END %] |
780 |
</td> |
781 |
</td> |
781 |
<td class="serial_notes">[% latestserial.notes | html %]</td> |
782 |
<td class="serial_notes">[% latestserial.notes | html %]</td> |
|
|
783 |
<td></td> |
782 |
</tr> |
784 |
</tr> |
783 |
[% END # / FOREACH latestserials %] |
785 |
[% END # / FOREACH latestserials %] |
784 |
</tbody> |
786 |
</tbody> |
Lines 1747-1777
Link Here
|
1747 |
|
1749 |
|
1748 |
KohaTable("#holdingst", { |
1750 |
KohaTable("#holdingst", { |
1749 |
dom: '<"clearfix">t', |
1751 |
dom: '<"clearfix">t', |
1750 |
"columnDefs": [ |
1752 |
"aoColumnDefs": [ |
1751 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1753 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1752 |
], |
1754 |
], |
1753 |
"bKohaColumnsUseNames": true, |
1755 |
"bKohaColumnsUseNames": true, |
1754 |
"autoWidth": false, |
1756 |
"autoWidth": false, |
1755 |
"responsive": { |
1757 |
"responsive": { |
1756 |
"details": { |
1758 |
"details": { "type": 'column', "target": -1 } |
1757 |
"type": 'column', |
1759 |
} |
1758 |
"target": -1 |
|
|
1759 |
} |
1760 |
}, |
1761 |
aoColumnDefs: [ { |
1762 |
className:"dtr-control", |
1763 |
orderable: false, |
1764 |
targets: [-1], |
1765 |
} ], |
1766 |
}, columns_settings); |
1760 |
}, columns_settings); |
1767 |
|
1761 |
|
1768 |
KohaTable("#otherholdingst", { |
1762 |
KohaTable("#otherholdingst", { |
1769 |
dom: '<"clearfix">t', |
1763 |
dom: '<"clearfix">t', |
1770 |
"columnDefs": [ |
1764 |
"aoColumnDefs": [ |
1771 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1765 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1772 |
], |
1766 |
], |
1773 |
"bKohaColumnsUseNames": true, |
1767 |
"bKohaColumnsUseNames": true, |
1774 |
"autoWidth": false |
1768 |
"autoWidth": false, |
|
|
1769 |
"responsive": { |
1770 |
"details": { "type": 'column', "target": -1 } |
1771 |
} |
1775 |
}, columns_settings); |
1772 |
}, columns_settings); |
1776 |
|
1773 |
|
1777 |
var serial_column_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %]; |
1774 |
var serial_column_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %]; |
Lines 1780-1788
Link Here
|
1780 |
dom: '<"clearfix">t', |
1777 |
dom: '<"clearfix">t', |
1781 |
"sorting": [[ 1, "desc" ]], |
1778 |
"sorting": [[ 1, "desc" ]], |
1782 |
"autoWidth": false, |
1779 |
"autoWidth": false, |
1783 |
"bKohaColumnsUseNames": true |
1780 |
"bKohaColumnsUseNames": true, |
|
|
1781 |
"responsive": { |
1782 |
"details": { "type": 'column', "target": -1 } |
1783 |
}, |
1784 |
"aoColumnDefs": [ |
1785 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1786 |
], |
1784 |
}, serial_column_settings); |
1787 |
}, serial_column_settings); |
1785 |
|
1788 |
|
|
|
1789 |
var dTables = $("#holdingst,#subscriptionst,#otherholdingst"); |
1790 |
$('a[data-toggle="tab"]').on('shown.bs.tab', function (event) { |
1791 |
dTables.DataTable().responsive.recalc(); |
1792 |
} ); |
1793 |
|
1786 |
[% IF ( TagsInputEnabled && loggedinusername ) %] |
1794 |
[% IF ( TagsInputEnabled && loggedinusername ) %] |
1787 |
$(".tag_add").click(function(){ |
1795 |
$(".tag_add").click(function(){ |
1788 |
var thisid = $(this).attr("id"); |
1796 |
var thisid = $(this).attr("id"); |