3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2008-2009 BibLibre SARL
5 # Copyright 2010 PTFS Europe Ltd
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 this script shows the details for a bookseller given on input arg.
29 It allows to edit & save information about this bookseller.
37 To know the bookseller this script has to display details.
51 use C4
::Bookseller
qw( GetBookSellerFromId DelBookseller );
52 use C4
::Bookseller
::Contact
;
56 my $op = $query->param('op') || 'display';
57 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
58 { template_name
=> 'acqui/supplier.tt',
62 flagsrequired
=> { acquisition
=> '*' },
66 my $booksellerid = $query->param('booksellerid');
69 $supplier = GetBookSellerFromId
($booksellerid);
70 foreach ( keys %{$supplier} ) {
71 $template->{'VARS'}->{$_} = $supplier->{$_};
73 $template->{'VARS'}->{'booksellerid'} = $booksellerid;
75 $template->{'VARS'}->{'contacts'} = C4
::Bookseller
::Contact
->new() unless $template->{'VARS'}->{'contacts'};
77 #build array for currencies
78 if ( $op eq 'display' ) {
79 my $contracts = GetContracts
( { booksellerid
=> $booksellerid } );
82 active
=> $supplier->{'active'},
83 gstrate
=> $supplier->{'gstrate'} + 0.0,
84 invoiceprice
=> $supplier->{'invoiceprice'},
85 listprice
=> $supplier->{'listprice'},
86 basketcount
=> $supplier->{'basketcount'},
87 subscriptioncount
=> $supplier->{'subscriptioncount'},
88 contracts
=> $contracts,
90 } elsif ( $op eq 'delete' ) {
91 # no further message needed for the user
92 # the DELETE button only appears in the template if basketcount == 0
93 if ( $supplier->{'basketcount'} == 0 ) {
94 DelBookseller
($booksellerid);
96 print $query->redirect('/cgi-bin/koha/acqui/acqui-home.pl');
99 my @currencies = GetCurrencies
();
101 my $active_currency = GetCurrency
();
102 my $active_listprice = $supplier->{'listprice'};
103 my $active_invoiceprice = $supplier->{'invoiceprice'};
104 if (!$supplier->{listprice
}) {
105 $active_listprice = $active_currency->{currency
};
107 if (!$supplier->{invoiceprice
}) {
108 $active_invoiceprice = $active_currency->{currency
};
111 push @
{$loop_currency},
113 currency
=> $_->{currency
},
114 listprice
=> ( $_->{currency
} eq $active_listprice ),
115 invoiceprice
=> ( $_->{currency
} eq $active_invoiceprice ),
119 # get option values from gist syspref
120 my @gst_values = map {
122 }, split( '\|', C4
::Context
->preference("gist") );
125 # set active ON by default for supplier add (id empty for add)
126 active
=> $booksellerid ?
$supplier->{'active'} : 1,
127 gstrate
=> $supplier->{gstrate
} ?
$supplier->{'gstrate'}+0.0 : 0,
128 gst_values
=> \
@gst_values,
129 loop_currency
=> $loop_currency,
134 output_html_with_http_headers
$query, $cookie, $template->output;