@@ -, +, @@ - Claim orders - filter - Search results --- acqui/lateorders-export.pl | 4 ++-- .../prog/en/modules/acqui/lateorders.tt | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/acqui/lateorders-export.pl +++ a/acqui/lateorders-export.pl @@ -48,9 +48,9 @@ print "ORDER DATE,ESTIMATED DELIVERY DATE,VENDOR,INFORMATION,TOTAL COST,BASKET,C for my $ordernumber ( @ordernumbers ) { my $order = GetOrder $ordernumber; $csv->combine( - "(" . $order->{supplierid} . ") " . $order->{orderdate} . " (" . $order->{latesince} . " days)", + $order->{orderdate} . " (" . $order->{latesince} . " days)", $order->{estimateddeliverydate}, - $order->{supplier}, + $order->{supplier} . " (" . $order->{supplierid} . ") ", $order->{title} . ( $order->{author} ? " Author: $order->{author}" : "" ) . ( $order->{publisher} ? " Published by: $order->{publisher}" : "" ), $order->{unitpricesupplier} . "x" . $order->{quantity_to_receive} . " = " . $order->{subtotal} . " (" . $order->{budget} . ")", $order->{basketname} . " (" . $order->{basketno} . ")", --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt @@ -131,7 +131,6 @@ $(document).ready(function() { - ([% lateorder.supplierid %]) [% lateorder.orderdate %] ([% lateorder.latesince %] days) @@ -142,6 +141,7 @@ $(document).ready(function() { [% lateorder.supplier %] + ([% lateorder.supplierid %]) [% lateorder.title |html %] @@ -183,7 +183,7 @@ $(document).ready(function() {

[% UNLESS lateorder.budget_lock %] - + [% END %]

@@ -195,7 +195,7 @@ $(document).ready(function() {
-

Filter Results:

+

Filter results:

[% FOREACH ERROR_LOO IN ERROR_LOOP %] [% IF ( ERROR_LOO.delay_digits ) %]

The number of days ([% ERROR_LOO.bad_delay %]) must be a number between 0 and 999.

[% END %] [% END %] @@ -219,7 +219,7 @@ $(document).ready(function() { [% END %] -
+
[% INCLUDE 'acquisitions-menu.inc' %] --