Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/transferorder.tt
Owen Leonard 609f2f1fc7 Bug 19755: Move template JavaScript to the footer: Acquisitions, part 3
This patch modifies even more staff client acquisitions templates so
that JavaScript is included in the footer instead of the header.

To test, apply the patch and test the JavaScript-driven features of the
modified templates: All button controls, DataTables functionality, tabs,
etc.

- Acquisitions -> Vendor -> Vendor details
  - Contracts datatable
  - Edit vendor
    - Add contacts, form validation
- Acquisitions -> Vendor -> Invoices -> Invoice -> "Go to receipt"
  - Datatables, MARC and Card previews
    - Transfer
      - Confirmation of transfer, window closes
- Acquisitions -> Vendor -> Receive shipments
  - Datatables, date pickers
- Acquisitions -> Available funds table -> Spent report
  - Datatables
- Acquisitions -> Vendor -> Uncertain prices
  - Datatables, form validation
- Acquisitions -> Vendor -> Basket -> Add to basket from external source
  - Select and clear all on search form
  - Search results
    - Datatables, MARC and Card previews, in-table pop-up controls
      (click any table cell)

Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2018-02-15 13:30:23 -03:00

152 lines
No EOL
6.3 KiB
Text

[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Acquisitions &rsaquo; Transfer order</title>
[%- USE KohaDates -%]
[% INCLUDE 'doc-head-close.inc' %]
<style type="text/css">
#custom-doc { width:44.46em;*width:43.39em;min-width:578px; margin:auto; text-align:left; }
</style>
</head>
<body id="acq_transferorder" class="acq">
<div id="custom-doc" class="yui-t7">
<div id="bd">
<div class="yui-g">
[% IF ( bookselleridfrom ) %]
<h3>Search for a vendor to transfer to</h3>
<div class="transferinfo">
<ul>
<li><span class="label">From vendor: </span>[% booksellerfromname %]</li>
<li><span class="label">Basket: </span>[% basketfromname %]</li>
<li><span class="label">Order: </span>[% ordernumber %]</li>
</ul>
</div>
[% ELSE %]
<h3>Search for a vendor to transfer from</h3>
[% END %]
<form method="get" action="transferorder.pl">
<fieldset>
<input type="hidden" name="op" value="do_search" />
[% IF ( ordernumber ) %]
<input type="hidden" name="ordernumber" value="[% ordernumber %]" />
[% END %]
[% IF ( bookselleridfrom ) %]
<input type="hidden" name="bookselleridfrom" value="[% bookselleridfrom %]" />
[% END %]
<label for="query">Vendor:</label>
<input type="text" id="query" name="query" />
<input type="submit" value="Search" />
</fieldset>
</form>
[% IF ( show_baskets ) %]
<h3>Baskets for [% booksellertoname %]</h3>
[% IF ( basketsloop ) %]
<table>
<thead>
<tr>
<th>Basket (#)</th>
<th>Created by</th>
<th>Date</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
[% FOREACH basket IN basketsloop %]
<tr>
<td>[% basket.basketname %] (#[% basket.basketno %])</td>
<td>[% basket.createdby %]</td>
<td>[% basket.creationdate | $KohaDates %]</td>
<td><a class="btn btn-default btn-xs confirm_transfer" href="transferorder.pl?basketno=[% basket.basketno %]&ordernumber=[% ordernumber %]">Choose</a>
</tr>
[% END %]
</tbody>
</table>
[% ELSE %]
<p>There are no open baskets for this vendor.</p>
[% END %]
[% END %]
[% IF ( ordersloop ) %]
<h3>Orders for [% booksellerfromname %]</h3>
<table>
<thead>
<tr>
<th>Order</th>
<th>Summary</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
[% FOREACH ordersloo IN ordersloop %]
<tr>
<td><a href="neworderempty.pl?ordernumber=[% ordersloo.ordernumber %]">[% ordersloo.ordernumber %]</a></td>
<td>
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% ordersloo.biblionumber %]">[% ordersloo.title |html %]</a>
[% IF ( ordersloo.author ) %] by [% ordersloo.author %][% END %]
[% IF ( ordersloo.isbn ) %] &ndash; [% ordersloo.isbn %][% END %]
[% IF ( ordersloo.publishercode ) %]
<br />Publisher: [% ordersloo.publishercode %]
[%- IF ( ordersloo.publicationyear > 0) -%], [% ordersloo.publicationyear %]
[%- ELSIF ( ordersloo.copyrightdate > 0) -%] [% ordersloo.copyrightdate %]
[% END %]
[% END %]
</td>
<td><a class="btn btn-default btn-xs" href="transferorder.pl?bookselleridfrom=[% ordersloo.bookselleridfrom %]&ordernumber=[% ordersloo.ordernumber %]">Transfer</a></td>
</tr>
[% END %]
</tbody>
</table>
[% END %]
[% IF ( do_search ) %]
[% IF ( bookselleridfrom ) %]
<h3>Choose a vendor to transfer to</h3>
[% ELSE %]
<h3>Choose a vendor to transfer from</h3>
[% END %]
[% IF ( booksellersloop ) %]
<table>
<thead>
<tr>
<th>Name</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
[% FOREACH bookseller IN booksellersloop %]
<tr>
<td>[% bookseller.name %]</td>
<td><a class="btn btn-default btn-xs" href="transferorder.pl?[% IF (bookselleridfrom) %]bookselleridto[% ELSE %]bookselleridfrom[% END %]=[% bookseller.id %][% IF (ordernumber) %]&ordernumber=[% ordernumber %][% END %]">Choose</a></td>
</tr>
[% END %]
</tbody>
</table>
[% ELSE %]
<p>No results found.</p>
[% END %]
[% END %]
</div>
<div id="closewindow"><a href="#" class="btn btn-default btn-default close">Cancel</a></div>
</div>
</div>
[% MACRO jsinclude BLOCK %]
[% IF transferred %]
<script type="text/javascript">
opener.location.reload();
window.close();
</script>
[% END %]
[% IF ( bookselleridfrom ) %]
<script type="text/javascript">
$(document).ready(function(){
$(".confirm_transfer").on("click",function(){
return confirm( _("Transfer order to this basket?") );
});
});
</script>
[% END %]
[% END %]
[% INCLUDE 'intranet-bottom.inc' %]