|
Line 0
Link Here
|
| 0 |
- |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
|
|
2 |
<title>Koha › Acquisitions › Receive shipment</title> |
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
| 4 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
| 5 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
| 6 |
[% INCLUDE 'datatables-strings.inc' %] |
| 7 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
| 8 |
<script type="text/javascript"> |
| 9 |
//<![CDATA[ |
| 10 |
$(document).ready(function() { |
| 11 |
$("#recshipment").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 12 |
"aoColumnDefs": [ |
| 13 |
{ "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false }, |
| 14 |
], |
| 15 |
"aaSorting": [[ 1, "asc" ]], |
| 16 |
"iDisplayLength": 10, |
| 17 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
| 18 |
})); |
| 19 |
}); |
| 20 |
//]]> |
| 21 |
</script> |
| 22 |
</head> |
| 23 |
|
| 24 |
[% INCLUDE 'header.inc' %] |
| 25 |
[% INCLUDE 'acquisitions-search.inc' %] |
| 26 |
|
| 27 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › </div> |
| 28 |
<div id="doc3" class="yui-t2"> |
| 29 |
<div id="bd"> |
| 30 |
<div id="yui-main"> |
| 31 |
<div class="yui-b"> |
| 32 |
<div class="yui-g"> |
| 33 |
<div id="acqui_recshipment"> |
| 34 |
[% IF (supplier_loop) %] |
| 35 |
<h1>Receive shipment</h1> |
| 36 |
<div id="acqui_recshipment"> |
| 37 |
<table id="recshipment"> |
| 38 |
<thead> |
| 39 |
<tr> |
| 40 |
<th>Vendor</th> |
| 41 |
<th>Status</th> |
| 42 |
<th> </th> |
| 43 |
<th> </th> |
| 44 |
</tr> |
| 45 |
</thead> |
| 46 |
<tbody> |
| 47 |
[% FOREACH suppliers IN supplier_loop %] |
| 48 |
<tr> |
| 49 |
<td><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% suppliers.id %]">[% suppliers.name %]</td> |
| 50 |
[% IF(suppliers.active == 1)%] |
| 51 |
<td>Active</td> |
| 52 |
[% ELSE %] |
| 53 |
<td>Inactive</td> |
| 54 |
[% END %] |
| 55 |
<td><a href="/cgi-bin/koha/acqui/parcels.pl?booksellerid=[% suppliers.id %]">Receive shipment</a></td> |
| 56 |
<td><a href="/cgi-bin/koha/acqui/basketheader.pl?booksellerid=[% suppliers.id %]&op=add_form">New basket</a></td> |
| 57 |
</tr> |
| 58 |
[% END %] |
| 59 |
</tbody> |
| 60 |
</table> |
| 61 |
</div> |
| 62 |
[% END %] |
| 63 |
</div> |
| 64 |
</div> |
| 65 |
</div> |
| 66 |
</div> |
| 67 |
<div class="yui-b"> |
| 68 |
[% INCLUDE 'acquisitions-menu.inc' %] |
| 69 |
</div> |
| 70 |
</div> |
| 71 |
[% INCLUDE 'intranet-bottom.inc' %] |