Bug 14931: (Follow-up) Validate date entry in contracts
[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::Contract;
30 use Koha::DateUtils;
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   => $contract->{contractstartdate},
75             contractenddate     => $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     my $contractstart_dt = eval { dt_from_string( $input->param('contractstartdate') ); };
97     $contractstart_dt = dt_from_string if ( ! $contractstart_dt );
98
99     my $contractend_dt = eval { dt_from_string( $input->param('contractenddate') ); };
100     $contractend_dt = dt_from_string if ( ! $contractend_dt );
101
102     if ( $is_a_modif ) {
103         ModContract({
104             contractstartdate   => eval { output_pref({ dt => dt_from_string( $contractstart_dt ), dateformat => 'iso', dateonly => 1 } ); },
105             contractenddate     => eval { output_pref({ dt => dt_from_string( $contractend_dt ), dateformat => 'iso', dateonly => 1 } ); },
106             contractname        => $input->param('contractname'),
107             contractdescription => $input->param('contractdescription'),
108             booksellerid        => $input->param('booksellerid'),
109             contractnumber      => $input->param('contractnumber'),
110         });
111     } else {
112         AddContract({
113             contractname        => $input->param('contractname'),
114             contractdescription => $input->param('contractdescription'),
115             booksellerid        => $input->param('booksellerid'),
116             contractstartdate   => eval { output_pref({ dt => dt_from_string( $input->param('contractstartdate') ), dateformat => 'iso', dateonly => 1 } ); },
117             contractenddate     => eval { output_pref({ dt => dt_from_string( $input->param('contractenddate') ), dateformat => 'iso', dateonly => 1 } ); },
118         });
119     }
120
121     print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
122     exit;
123
124     # END $OP eq ADD_VALIDATE
125 }
126 #DELETE_CONFIRM: called by default form, used to confirm deletion of data in DB
127 elsif ( $op eq 'delete_confirm' ) {
128     $template->param( delete_confirm => 1 );
129
130     my $contract = GetContract( { contractnumber => $contractnumber } );
131
132     $template->param(
133         contractnumber      => $$contract{contractnumber},
134         contractname        => $$contract{contractname},
135         contractdescription => $$contract{contractdescription},
136         contractstartdate   => $$contract{contractstartdate},
137         contractenddate     => $$contract{contractenddate},
138     );
139
140     # END $OP eq DELETE_CONFIRM
141 }
142 #DELETE_CONFIRMED: called by delete_confirm, used to effectively confirm deletion of data in DB
143 elsif ( $op eq 'delete_confirmed' ) {
144     my $deleted = DelContract( { contractnumber => $contractnumber } );
145
146     if ( $deleted ) {
147         print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
148         exit;
149     } else {
150         $template->param( error => 'not_deleted' );
151         $op = 'list';
152     }
153
154     # END $OP eq LIST
155 }
156 # DEFAULT: Builds a list of contracts and displays them
157 if ( $op eq 'list' ) {
158     $template->param(else => 1);
159
160     # get contracts
161     my @contracts = @{GetContracts( { booksellerid => $booksellerid } )};
162
163     # format dates
164     for ( @contracts ) {
165         $$_{contractstartdate} =  output_pref({ dt => dt_from_string( $$_{contractstartdate} ), dateonly => 1 });
166         $$_{contractenddate}   =  output_pref({ dt => dt_from_string( $$_{contractenddate} ), dateonly => 1 }),
167     }
168
169     $template->param(loop => \@contracts);
170
171     #---- END $OP eq DEFAULT
172 }
173
174 output_html_with_http_headers $input, $cookie, $template->output;
175