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 1724-1754
Link Here
|
1724 |
|
1726 |
|
1725 |
KohaTable("#holdingst", { |
1727 |
KohaTable("#holdingst", { |
1726 |
dom: '<"clearfix">t', |
1728 |
dom: '<"clearfix">t', |
1727 |
"columnDefs": [ |
1729 |
"aoColumnDefs": [ |
1728 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1730 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1729 |
], |
1731 |
], |
1730 |
"bKohaColumnsUseNames": true, |
1732 |
"bKohaColumnsUseNames": true, |
1731 |
"autoWidth": false, |
1733 |
"autoWidth": false, |
1732 |
"responsive": { |
1734 |
"responsive": { |
1733 |
"details": { |
1735 |
"details": { "type": 'column', "target": -1 } |
1734 |
"type": 'column', |
1736 |
} |
1735 |
"target": -1 |
|
|
1736 |
} |
1737 |
}, |
1738 |
aoColumnDefs: [ { |
1739 |
className:"dtr-control", |
1740 |
orderable: false, |
1741 |
targets: [-1], |
1742 |
} ], |
1743 |
}, columns_settings); |
1737 |
}, columns_settings); |
1744 |
|
1738 |
|
1745 |
KohaTable("#otherholdingst", { |
1739 |
KohaTable("#otherholdingst", { |
1746 |
dom: '<"clearfix">t', |
1740 |
dom: '<"clearfix">t', |
1747 |
"columnDefs": [ |
1741 |
"aoColumnDefs": [ |
1748 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1742 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1749 |
], |
1743 |
], |
1750 |
"bKohaColumnsUseNames": true, |
1744 |
"bKohaColumnsUseNames": true, |
1751 |
"autoWidth": false |
1745 |
"autoWidth": false, |
|
|
1746 |
"responsive": { |
1747 |
"details": { "type": 'column', "target": -1 } |
1748 |
} |
1752 |
}, columns_settings); |
1749 |
}, columns_settings); |
1753 |
|
1750 |
|
1754 |
var serial_column_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %]; |
1751 |
var serial_column_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %]; |
Lines 1757-1765
Link Here
|
1757 |
dom: '<"clearfix">t', |
1754 |
dom: '<"clearfix">t', |
1758 |
"sorting": [[ 1, "desc" ]], |
1755 |
"sorting": [[ 1, "desc" ]], |
1759 |
"autoWidth": false, |
1756 |
"autoWidth": false, |
1760 |
"bKohaColumnsUseNames": true |
1757 |
"bKohaColumnsUseNames": true, |
|
|
1758 |
"responsive": { |
1759 |
"details": { "type": 'column', "target": -1 } |
1760 |
}, |
1761 |
"aoColumnDefs": [ |
1762 |
{ "className": "dtr-control", "orderable": false, "targets": -1 } |
1763 |
], |
1761 |
}, serial_column_settings); |
1764 |
}, serial_column_settings); |
1762 |
|
1765 |
|
|
|
1766 |
var dTables = $("#holdingst,#subscriptionst,#otherholdingst"); |
1767 |
$('a[data-toggle="tab"]').on('shown.bs.tab', function (event) { |
1768 |
dTables.DataTable().responsive.recalc(); |
1769 |
} ); |
1770 |
|
1763 |
[% IF ( TagsInputEnabled && loggedinusername ) %] |
1771 |
[% IF ( TagsInputEnabled && loggedinusername ) %] |
1764 |
$(".tag_add").click(function(){ |
1772 |
$(".tag_add").click(function(){ |
1765 |
var thisid = $(this).attr("id"); |
1773 |
var thisid = $(this).attr("id"); |