Bug 6448 [1/3] EAN-13/UPC-A itemBarcodeInputFilter
[koha.git] / admin / aqcontract.pl
blob9d3f0acec5157fdf6fd437c46b98293a97b6540b
1 #!/usr/bin/perl
3 #script to administer the contract table
4 #written 02/09/2008 by john.soros@biblibre.com
6 # Copyright 2008-2009 BibLibre SARL
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 use strict;
24 use warnings;
25 use CGI;
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::Bookseller qw/GetBookSellerFromId/;
31 use C4::Contract;
33 my $input = new CGI;
34 my $contractnumber = $input->param('contractnumber');
35 my $booksellerid = $input->param('booksellerid');
36 my $op = $input->param('op') || '';
38 my $bookseller = GetBookSellerFromId($booksellerid);
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41 { template_name => "admin/aqcontract.tmpl",
42 query => $input,
43 type => "intranet",
44 authnotrequired => 0,
45 flagsrequired => { acquisition => 'contracts_manage' },
46 debug => 1,
50 $template->param(
51 contractnumber => $contractnumber,
52 booksellerid => $booksellerid,
53 booksellername => $bookseller->{name},
54 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
55 dateformat => C4::Context->preference("dateformat"),
58 #ADD_FORM: called if $op is 'add_form'. Used to create form to add or modify a record
59 if ( $op eq 'add_form' ) {
60 $template->param( add_form => 1 );
62 # if contractnumber exists, it's a modify action, so read values to modify...
63 if ($contractnumber) {
64 my $contract =
65 @{ GetContract( { contractnumber => $contractnumber } ) }[0];
67 $template->param(
68 contractnumber => $contract->{contractnumber},
69 contractname => $contract->{contractname},
70 contractdescription => $contract->{contractdescription},
71 contractstartdate => format_date( $contract->{contractstartdate} ),
72 contractenddate => format_date( $contract->{contractenddate} ),
73 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar,
75 } else {
76 $template->param(
77 contractnumber => undef,
78 contractname => undef,
79 contractdescription => undef,
80 contractstartdate => undef,
81 contractenddate => undef,
82 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar,
86 # END $OP eq ADD_FORM
88 #ADD_VALIDATE: called by add_form, used to insert/modify data in DB
89 elsif ( $op eq 'add_validate' ) {
90 ## Please see file perltidy.ERR
91 $template->param( add_validate => 1 );
93 my $is_a_modif = $input->param("is_a_modif");
95 if ( $is_a_modif ) {
96 ModContract({
97 contractstartdate => format_date_in_iso( $input->param('contractstartdate') ),
98 contractenddate => format_date_in_iso( $input->param('contractenddate') ),
99 contractname => $input->param('contractname'),
100 contractdescription => $input->param('contractdescription'),
101 booksellerid => $input->param('booksellerid'),
102 contractnumber => $input->param('contractnumber'),
104 } else {
105 AddContract({
106 contractname => $input->param('contractname'),
107 contractdescription => $input->param('contractdescription'),
108 booksellerid => $input->param('booksellerid'),
109 contractstartdate => format_date_in_iso( $input->param('contractstartdate') ),
110 contractenddate => format_date_in_iso( $input->param('contractenddate') ),
114 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
115 exit;
117 # END $OP eq ADD_VALIDATE
119 #DELETE_CONFIRM: called by default form, used to confirm deletion of data in DB
120 elsif ( $op eq 'delete_confirm' ) {
121 $template->param( delete_confirm => 1 );
123 my $contract = @{GetContract( { contractnumber => $contractnumber } )}[0];
125 $template->param(
126 contractnumber => $$contract{contractnumber},
127 contractname => $$contract{contractname},
128 contractdescription => $$contract{contractdescription},
129 contractstartdate => format_date( $$contract{contractstartdate} ),
130 contractenddate => format_date( $$contract{contractenddate} ),
133 # END $OP eq DELETE_CONFIRM
135 #DELETE_CONFIRMED: called by delete_confirm, used to effectively confirm deletion of data in DB
136 elsif ( $op eq 'delete_confirmed' ) {
137 $template->param( delete_confirmed => 1 );
139 DelContract( { contractnumber => $contractnumber } );
141 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
142 exit;
144 # END $OP eq DELETE_CONFIRMED
146 # DEFAULT: Builds a list of contracts and displays them
147 else {
148 $template->param(else => 1);
150 # get contracts
151 my @contracts = @{GetContract( { booksellerid => $booksellerid } )};
153 # format dates
154 for ( @contracts ) {
155 $$_{contractstartdate} = format_date($$_{contractstartdate});
156 $$_{contractenddate} = format_date($$_{contractenddate});
159 $template->param(loop => \@contracts);
161 #---- END $OP eq DEFAULT
164 output_html_with_http_headers $input, $cookie, $template->output;