7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>Koha › Acquisitions › Ordered</title>
9 [% INCLUDE 'doc-head-close.inc' %]
12 <body id="acq_ordered" class="acq">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'acquisitions-search.inc' %]
16 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › Ordered - [% fund_code | html %]</div>
18 <div class="main container-fluid">
20 <div class="col-sm-10 col-sm-push-2">
23 <h1>Fund: [% fund_code | html %]</h1>
29 <th class="anti-the"> Title </th>
33 <th> Left on order </th>
34 <th> Estimated cost per unit </th>
35 <th class="title-string"> Date ordered </th>
40 [% FOREACH order IN ordered %]
43 <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">
44 [% order.title | html %]
48 [% IF ( CAN_user_acquisition_order_manage ) %]
49 <a href="/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber | uri %]&booksellerid=[% order.booksellerid | uri %]&basketno=[% order.basketno | uri %]">[% order.ordernumber | html %]</a>
51 [% order.ordernumber | html %]
55 <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid | uri %]">[% order.vendorname | html %]</a>
58 [% ItemTypes.GetDescription( order.itype ) | html %]
61 [% order.left | html %]
63 <td class="data cell">
64 [% order.ecost_tax_included | $Price %]
67 <span title="[% order.entrydate | html %]">[% order.entrydate | $KohaDates %]</span>
69 <td class="data cell">
70 [% order.subtotal | $Price %]
76 [% IF ( adjustments && adjustments.count > 0 ) %]
77 [% FOREACH adjustment IN adjustments %]
80 <td colspan="6">Adjustment cost for invoice
81 <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% adjustment.invoiceid | uri %]">
82 [% adjustment.invoice.invoicenumber | html %]
85 <td class="data total">[% adjustment.adjustment | $Price %]</td>
107 </div> <!-- /.col-sm-10.col-sm-push-2 -->
109 <div class="col-sm-2 col-sm-pull-10">
111 [% INCLUDE 'acquisitions-menu.inc' %]
113 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
114 </div> <!-- /.row -->
116 [% MACRO jsinclude BLOCK %]
117 [% Asset.js("js/acquisitions-menu.js") | $raw %]
118 [% INCLUDE 'datatables.inc' %]
120 $(document).ready(function() {
121 $("#spent").dataTable($.extend(true, {}, dataTablesDefaults, {
123 { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
124 { "sType": "title-string", "aTargets" : [ "title-string" ] }
126 "sPaginationType": "full"
132 [% INCLUDE 'intranet-bottom.inc' %]