Bug 12054: Inactive vendors should be inactive
[koha.git] / admin / aqcontract.pl
1 #!/usr/bin/perl
2
3 #script to administer the contract table
4 #written 02/09/2008 by john.soros@biblibre.com
5
6 # Copyright 2008-2009 BibLibre SARL
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 use strict;
24 use warnings;
25 use CGI qw ( -utf8 );
26 use C4::Context;
27 use C4::Auth;
28 use C4::Output;
29 use C4::Dates qw/format_date format_date_in_iso/;
30 use C4::Contract;
31
32 use Koha::Acquisition::Bookseller;
33
34 my $input          = new CGI;
35 my $contractnumber = $input->param('contractnumber');
36 my $booksellerid   = $input->param('booksellerid');
37 my $op             = $input->param('op') || 'list';
38
39 my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
40
41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
42     {   template_name   => "admin/aqcontract.tt",
43         query           => $input,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { acquisition => 'contracts_manage' },
47         debug           => 1,
48     }
49 );
50
51 $template->param(
52     contractnumber => $contractnumber,
53     booksellerid   => $booksellerid,
54     booksellername => $bookseller->{name},
55     basketcount   => $bookseller->{'basketcount'},
56     active         => $bookseller->{active},
57     subscriptioncount   => $bookseller->{'subscriptioncount'},
58 );
59
60 #ADD_FORM: called if $op is 'add_form'. Used to create form to add or  modify a record
61 if ( $op eq 'add_form' ) {
62     $template->param( add_form => 1 );
63
64    # if contractnumber exists, it's a modify action, so read values to modify...
65     if ($contractnumber) {
66         my $contract = GetContract({
67             contractnumber => $contractnumber
68         });
69
70         $template->param(
71             contractnumber      => $contract->{contractnumber},
72             contractname        => $contract->{contractname},
73             contractdescription => $contract->{contractdescription},
74             contractstartdate => format_date( $contract->{contractstartdate} ),
75             contractenddate   => format_date( $contract->{contractenddate} ),
76         );
77     } else {
78         $template->param(
79             contractnumber           => undef,
80             contractname             => undef,
81             contractdescription      => undef,
82             contractstartdate        => undef,
83             contractenddate          => undef,
84         );
85     }
86
87     # END $OP eq ADD_FORM
88 }
89 #ADD_VALIDATE: called by add_form, used to insert/modify data in DB
90 elsif ( $op eq 'add_validate' ) {
91 ## Please see file perltidy.ERR
92     $template->param( add_validate => 1 );
93
94     my $is_a_modif = $input->param("is_a_modif");
95
96     if ( $is_a_modif ) {
97         ModContract({
98             contractstartdate   => format_date_in_iso( $input->param('contractstartdate') ),
99             contractenddate     => format_date_in_iso( $input->param('contractenddate') ),
100             contractname        => $input->param('contractname'),
101             contractdescription => $input->param('contractdescription'),
102             booksellerid        => $input->param('booksellerid'),
103             contractnumber      => $input->param('contractnumber'),
104         });
105     } else {
106         AddContract({
107             contractname        => $input->param('contractname'),
108             contractdescription => $input->param('contractdescription'),
109             booksellerid        => $input->param('booksellerid'),
110             contractstartdate   => format_date_in_iso( $input->param('contractstartdate') ),
111             contractenddate     => format_date_in_iso( $input->param('contractenddate') ),
112         });
113     }
114
115     print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
116     exit;
117
118     # END $OP eq ADD_VALIDATE
119 }
120 #DELETE_CONFIRM: called by default form, used to confirm deletion of data in DB
121 elsif ( $op eq 'delete_confirm' ) {
122     $template->param( delete_confirm => 1 );
123
124     my $contract = GetContract( { contractnumber => $contractnumber } );
125
126     $template->param(
127         contractnumber      => $$contract{contractnumber},
128         contractname        => $$contract{contractname},
129         contractdescription => $$contract{contractdescription},
130         contractstartdate   => format_date( $$contract{contractstartdate} ),
131         contractenddate     => format_date( $$contract{contractenddate} ),
132     );
133
134     # END $OP eq DELETE_CONFIRM
135 }
136 #DELETE_CONFIRMED: called by delete_confirm, used to effectively confirm deletion of data in DB
137 elsif ( $op eq 'delete_confirmed' ) {
138     my $deleted = DelContract( { contractnumber => $contractnumber } );
139
140     if ( $deleted ) {
141         print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
142         exit;
143     } else {
144         $template->param( error => 'not_deleted' );
145         $op = 'list';
146     }
147
148     # END $OP eq LIST
149 }
150 # DEFAULT: Builds a list of contracts and displays them
151 if ( $op eq 'list' ) {
152     $template->param(else => 1);
153
154     # get contracts
155     my @contracts = @{GetContracts( { booksellerid => $booksellerid } )};
156
157     # format dates
158     for ( @contracts ) {
159         $$_{contractstartdate} = format_date($$_{contractstartdate});
160         $$_{contractenddate}   = format_date($$_{contractenddate});
161     }
162
163     $template->param(loop => \@contracts);
164
165     #---- END $OP eq DEFAULT
166 }
167
168 output_html_with_http_headers $input, $cookie, $template->output;
169