Owen Leonard
61ca2359f2
This patch modifies the cataloging plugin dateaccessioned.pl so that it triggers the addition of a datepicker widget to fields it is linked with. Despite its name the plugin can be used on any item field which requires a date. To test, apply the patch and make sure you have one or more item subfields linked to the dateaccessioned.pl plugin. For instance, in MARC21: - Administration -> MARC bibliographic framework -> MARC structure -> 952 -> Edit subfields: - subfields d ("Date acquired") and w ("Price effective from"): - Other options -> Plugin -> dateaccessioned.pl - Go to cataloging and add or edit an item on a bibliographic record - The "Date acquired" and "Price effective from" fields should be styled as datepickers. - Clicking in these fields should populate the field with today's date and trigger the datepicker popup. - Test that all the datepicker features work correctly. - Test that manual entry of a date works. - With the AcqCreateItem system preference set to "placing an order," go to Acquisitions -> Vendor -> Add to basket. - Add a title to your basket using your preferred method. - In the "New order" form, find the section for adding an item. - Test the "Date acquired" and "Price effective from" fields, which should behave just like they did in the cataloging module. Signed-off-by: Maryse Simard <maryse.simard@inlibro.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
138 lines
6.5 KiB
Text
138 lines
6.5 KiB
Text
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% USE KohaDates %]
|
|
[% USE Branches %]
|
|
[% USE Koha %]
|
|
[% PROCESS 'i18n.inc' %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Serials [% biblionumber | html %]</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body id="acq_newordersubscription" class="acq">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'acquisitions-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | html %]">[% booksellername | html %]</a> › <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | html %]">Basket [% basketno | html %]</a> › Add order from a subscription</div>
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-push-2">
|
|
<main>
|
|
|
|
<h2>Serials subscriptions</h2>
|
|
[% IF (done_searched) %]
|
|
<label for="show_only_renewed">
|
|
<input type="checkbox" style="vertical-align: middle;" id="show_only_renewed" />
|
|
Show only renewed
|
|
</label>
|
|
[% IF (subs_loop) %]
|
|
<table id="srlt">
|
|
<thead>
|
|
<tr>
|
|
<th>ISSN</th>
|
|
<th class="anti-the">Title</th>
|
|
<th> Notes </th>
|
|
<th>Vendor</th>
|
|
<th>Library</th>
|
|
<th>Call number</th>
|
|
<th class="title-string">Expiration date</th>
|
|
<th class="NoSort"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH sub IN subs_loop %]
|
|
<tr data-reneweddate="[% sub.reneweddate | html %]" >
|
|
<td>[% sub.issn | html %]</td>
|
|
<td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% sub.subscriptionid | uri %]" class="button" title="subscription detail">[% IF (sub.title) %][% sub.title | html %][% ELSE %]
|
|
---
|
|
[% END %][% IF (sub.unititle) %], [% sub.unititle | html %][% END %]</a>
|
|
</td>
|
|
<td>[% IF (sub.publicnotes) %][% sub.publicnotes | html %][% END %]
|
|
[% IF (sub.internalnotes) %]([% sub.internalnotes | html %])[% END %]
|
|
</td>
|
|
<td>
|
|
[% IF (sub.vendorname) %][% sub.vendorname | html %][% END %]
|
|
</td>
|
|
<td>
|
|
[% IF (sub.branchcode) %][% Branches.GetName( sub.branchcode ) | html %][% END %]
|
|
</td>
|
|
<td>
|
|
[% IF (sub.callnumber) %][% sub.callnumber | html %][% END %]
|
|
</td>
|
|
<td>
|
|
[% IF (sub.enddate) %]
|
|
<span title="[% sub.enddate | html %]">[% sub.enddate | $KohaDates %]</span>
|
|
[% ELSE %]
|
|
<span title="0000-00-00"></span>
|
|
[% END %]
|
|
</td>
|
|
<td class="actions">
|
|
[% IF (sub.alreadyOnOrder) %]
|
|
Outstanding order
|
|
[% END %]
|
|
[% IF not sub.aqbooksellerid || booksellerid == sub.aqbooksellerid %]
|
|
<a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&biblionumber=[% sub.biblionumber | uri %]&from_subscriptionid=[% sub.subscriptionid | uri %]" title="Order this one" class="btn btn-default btn-xs">
|
|
<i class="fa fa-plus"></i> [% tp('verb', 'Order') | html %]
|
|
</a>
|
|
[% ELSE %]
|
|
<a title="This subscription depends on another supplier" style="cursor:help">Cannot be ordered</a>
|
|
[% END %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% ELSE %]
|
|
<p>Sorry, there is no result for your search.</p>
|
|
[% END %]
|
|
[% ELSE %]
|
|
<p>Use the search form on the left to find subscriptions.</p>
|
|
[% END %]
|
|
</main>
|
|
</div> <!-- /.col-sm-10.col-sm-push-2 -->
|
|
|
|
<div class="col-sm-2 col-sm-pull-10">
|
|
<aside>
|
|
[% INCLUDE 'subscriptions-search.inc' %]
|
|
[% INCLUDE 'acquisitions-menu.inc' %]
|
|
</aside>
|
|
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
|
</div> <!-- /.row -->
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/acquisitions-menu.js") | $raw %]
|
|
[% INCLUDE 'datatables.inc' %]
|
|
[% INCLUDE 'calendar.inc' %]
|
|
<script>
|
|
function updateRowsVisibility(show_only_renewed) {
|
|
if ( show_only_renewed ) {
|
|
$("#srlt [data-reneweddate='']").hide();
|
|
} else {
|
|
$("#srlt > tbody > tr").show();
|
|
}
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$("#srlt").dataTable($.extend(true, {}, dataTablesDefaults, {
|
|
"aoColumnDefs": [
|
|
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
|
|
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] },
|
|
{ "sType": "title-string", "aTargets" : [ "title-string" ] }
|
|
],
|
|
"sPaginationType": "full"
|
|
}));
|
|
|
|
$("#show_only_renewed").click(function(){
|
|
updateRowsVisibility( $(this).is(":checked") );
|
|
});
|
|
$("#show_only_renewed").prop('checked', false);
|
|
updateRowsVisibility(false);
|
|
|
|
$("#advsearch_form").show();
|
|
});
|
|
</script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|