Owen Leonard
4c23d24f40
This patch adds the JS required to enable correct sorting of dates in DD/MM/YYYY format to pages which require it. To test, set your dateformat accordingly and confirm on the affected pages that dates are sorted correctly. Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Resolved conflict in serials/serials-search.tt. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
120 lines
3.4 KiB
Text
120 lines
3.4 KiB
Text
[% USE KohaDates %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Acquisitions › Spent</title>
|
|
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
|
|
[% INCLUDE 'datatables-strings.inc' %]
|
|
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(document).ready(function() {
|
|
[% IF (dateformat == 'metric') %]
|
|
dt_add_type_uk_date();
|
|
[% END %]
|
|
var spent = $("#spent").dataTable($.extend(true, {}, dataTablesDefaults, {
|
|
"sPaginationType": "four_button"
|
|
} ) );
|
|
});
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="acq_spent" 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> › Spent - [% fund_code %]</div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
|
|
<h1>Fund: [% fund_code %]</h1>
|
|
<h2>Spent</h2>
|
|
|
|
|
|
<table cellspacing="0" cellpadding="0" border="0" id="spent" class="collapse">
|
|
<thead>
|
|
<tr>
|
|
<th> Title </th>
|
|
<th> Order </th>
|
|
<th> Vendor </th>
|
|
<th> Invoice </th>
|
|
<th> Itemtype </th>
|
|
<th> Received </th>
|
|
<th> Unit price </th>
|
|
<th> Date ordered </th>
|
|
<th> Date received </th>
|
|
<th> Subtotal </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
[% FOREACH order IN spent %]
|
|
[% IF loop.odd %]
|
|
<tr class="highlight">
|
|
[% ELSE %]
|
|
<tr>
|
|
[% END %]
|
|
|
|
<td class="cell">
|
|
[% order.title %]
|
|
</td>
|
|
<td class="cell">
|
|
<a href="/cgi-bin/koha/acqui/orderreceive.pl?ordernumber=[% order.ordernumber %]&biblio=[% order.biblionumber %]&invoiceid=[% order.invoiceid %]">[% order.ordernumber %]</a>
|
|
</td>
|
|
<td class="cell">
|
|
<a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid %]">[% order.booksellerid %]</a>
|
|
</td>
|
|
<td class="cell">
|
|
<a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid %]">[% order.invoicenumber %]</a>
|
|
</td>
|
|
<td class="cell">
|
|
[% order.itype %]
|
|
</td>
|
|
<td class="cell">
|
|
[% order.quantityreceived %]
|
|
</td>
|
|
<td class="cell" align="right">
|
|
[% order.unitprice %]
|
|
</td>
|
|
<td class="cell" align="right">
|
|
[% order.entrydate | $KohaDates %]
|
|
</td>
|
|
<td class="cell" align="right">
|
|
[% order.datereceived | $KohaDates %]
|
|
</td>
|
|
<td class="cell" align="right">
|
|
[% order.rowtotal %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
<tfoot>
|
|
[% IF shipmentcosts.size %]
|
|
<tr valign="top">
|
|
<td colspan="9"> Sub total </td>
|
|
<td align="right"> [% subtotal %] </td>
|
|
</tr>
|
|
[% FOREACH shipmentcost IN shipmentcosts %]
|
|
<tr>
|
|
<td></td>
|
|
<td colspan="8">Shipment cost for invoice [% shipmentcost.invoicenumber %]</td>
|
|
<td class="total">[% shipmentcost.shipmentcost %]</td>
|
|
</tr>
|
|
[% END %]
|
|
[% END %]
|
|
<tr>
|
|
<td colspan="9">TOTAL</td>
|
|
<td class="total">[% total %]</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
[% INCLUDE 'acquisitions-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|