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
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.
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.
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>.
29 use C4
::Dates qw
/format_date format_date_in_iso/;
32 use Koha
::Acquisition
::Bookseller
;
35 my $contractnumber = $input->param('contractnumber');
36 my $booksellerid = $input->param('booksellerid');
37 my $op = $input->param('op') || 'list';
39 my $bookseller = Koha
::Acquisition
::Bookseller
->fetch({ id
=> $booksellerid });
41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
42 { template_name
=> "admin/aqcontract.tt",
46 flagsrequired
=> { acquisition
=> 'contracts_manage' },
52 contractnumber
=> $contractnumber,
53 booksellerid
=> $booksellerid,
54 booksellername
=> $bookseller->{name
},
55 basketcount
=> $bookseller->{'basketcount'},
56 active
=> $bookseller->{active
},
57 subscriptioncount
=> $bookseller->{'subscriptioncount'},
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 );
64 # if contractnumber exists, it's a modify action, so read values to modify...
65 if ($contractnumber) {
66 my $contract = GetContract
({
67 contractnumber
=> $contractnumber
71 contractnumber
=> $contract->{contractnumber
},
72 contractname
=> $contract->{contractname
},
73 contractdescription
=> $contract->{contractdescription
},
74 contractstartdate
=> format_date
( $contract->{contractstartdate
} ),
75 contractenddate
=> format_date
( $contract->{contractenddate
} ),
79 contractnumber
=> undef,
80 contractname
=> undef,
81 contractdescription
=> undef,
82 contractstartdate
=> undef,
83 contractenddate
=> undef,
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 );
94 my $is_a_modif = $input->param("is_a_modif");
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'),
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') ),
115 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
118 # END $OP eq ADD_VALIDATE
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 );
124 my $contract = GetContract
( { contractnumber
=> $contractnumber } );
127 contractnumber
=> $$contract{contractnumber
},
128 contractname
=> $$contract{contractname
},
129 contractdescription
=> $$contract{contractdescription
},
130 contractstartdate
=> format_date
( $$contract{contractstartdate
} ),
131 contractenddate
=> format_date
( $$contract{contractenddate
} ),
134 # END $OP eq DELETE_CONFIRM
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 } );
141 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
144 $template->param( error
=> 'not_deleted' );
150 # DEFAULT: Builds a list of contracts and displays them
151 if ( $op eq 'list' ) {
152 $template->param(else => 1);
155 my @contracts = @
{GetContracts
( { booksellerid
=> $booksellerid } )};
159 $$_{contractstartdate
} = format_date
($$_{contractstartdate
});
160 $$_{contractenddate
} = format_date
($$_{contractenddate
});
163 $template->param(loop => \
@contracts);
165 #---- END $OP eq DEFAULT
168 output_html_with_http_headers
$input, $cookie, $template->output;