View | Details | Raw Unified | Return to bug 15167
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt (-46 lines)
Lines 1-46 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Serials &rsaquo; Select vendor</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
<script type="text/javascript" language="Javascript">
5
6
function GetIt(aqbooksellerid,name)
7
{
8
  opener.document.f.aqbooksellerid.value = aqbooksellerid;
9
  opener.document.f.aqbooksellername.value = name;
10
  window.close();
11
}
12
</script>
13
</head>
14
<body id="ser_acqui-search-result" class="ser">
15
16
<div id="doc" class="yui-t7">
17
   <div id="bd">
18
	
19
20
<h1>Vendor search results</h1>
21
<h2>You searched on <b>vendor [% supplier %],</b> [% count %] results found</h2>
22
23
[% IF ( loop_suppliers ) %]
24
<table>
25
	<tr>
26
		<th>Vendor</th>
27
		<th>Select</th>
28
	</tr>
29
	[% FOREACH loop_supplier IN loop_suppliers %]
30
        [% UNLESS ( loop.odd ) %]
31
        <tr class="highlight">
32
        [% ELSE %]
33
        <tr>
34
        [% END %]
35
			<td>[% loop_supplier.name %]</td>
36
			<td><a href="#" onclick="GetIt([% loop_supplier.aqbooksellerid %],$(this).parent().prev().text())">Choose</a></td>
37
		</tr>
38
	[% END %]
39
</table>
40
[% END %]
41
42
    <p><a href="/cgi-bin/koha/serials/acqui-search.pl">Perform a new search</a>  <a class="button" href="#" onclick="window.close()">Close</a></p>
43
44
</div>
45
46
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/serials/acqui-search-result.pl (-99 lines)
Lines 1-98 Link Here
1
#!/usr/bin/perl
2
3
#script to show suppliers and orders
4
#written by chris@katipo.co.nz 23/2/2000
5
6
# Copyright 2000-2002 Katipo Communications
7
#
8
# This file is part of Koha.
9
#
10
# Koha is free software; you can redistribute it and/or modify it
11
# under the terms of the GNU General Public License as published by
12
# the Free Software Foundation; either version 3 of the License, or
13
# (at your option) any later version.
14
#
15
# Koha is distributed in the hope that it will be useful, but
16
# WITHOUT ANY WARRANTY; without even the implied warranty of
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
# GNU General Public License for more details.
19
#
20
# You should have received a copy of the GNU General Public License
21
# along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23
24
=head1 NAME
25
26
acqui-search-result.pl
27
28
=head1 DESCRIPTION
29
30
 TODO
31
32
=head1 PARAMETERS
33
34
=over 4
35
36
=item supplier
37
38
=back
39
40
=cut
41
42
43
use strict;
44
use warnings;
45
use C4::Auth;
46
use C4::Biblio;
47
use C4::Output;
48
use CGI qw ( -utf8 );
49
use C4::Acquisition qw( SearchOrders );
50
use C4::Dates qw/format_date/;
51
52
use Koha::Acquisition::Bookseller;
53
54
my $query=new CGI;
55
my ($template, $loggedinuser, $cookie)
56
    = get_template_and_user({template_name => "serials/acqui-search-result.tt",
57
                 query => $query,
58
                 type => "intranet",
59
                 authnotrequired => 0,
60
                 flagsrequired => {serials => '*'},
61
                 debug => 1,
62
                 });
63
64
my $supplier=$query->param('supplier');
65
my @suppliers = Koha::Acquisition::Bookseller->search({ name => $supplier });
66
#my $count = scalar @suppliers;
67
68
#build result page
69
my $loop_suppliers = [];
70
for my $s (@suppliers) {
71
    my $orders = SearchOrders({
72
        booksellerid => $s->{'id'},
73
        pending => 1
74
    });
75
76
    my $loop_basket = [];
77
    for my $ord ( @{$orders} ) {
78
        push @{$loop_basket}, {
79
            basketno     => $ord->{'basketno'},
80
            total        => $ord->{'count(*)'},
81
            authorisedby => $ord->{'authorisedby'},
82
            creationdate => format_date($ord->{'creationdate'}),
83
            closedate    => format_date($ord->{'closedate'}),
84
        };
85
    }
86
    push @{$loop_suppliers}, {
87
        loop_basket => $loop_basket,
88
        aqbooksellerid => $s->{'id'},
89
        name => $s->{'name'},
90
        active => $s->{'active'},
91
    };
92
}
93
94
$template->param(loop_suppliers => $loop_suppliers,
95
                        supplier => $supplier,
96
                        count => scalar @suppliers);
97
98
output_html_with_http_headers $query, $cookie, $template->output;
99
- 

Return to bug 15167