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>.
31 use Koha
::Acquisition
::Booksellers
;
34 my $contractnumber = $input->param('contractnumber');
35 my $booksellerid = $input->param('booksellerid');
36 my $op = $input->param('op') || 'list';
38 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $booksellerid );
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
41 { template_name
=> "admin/aqcontract.tt",
45 flagsrequired
=> { acquisition
=> 'contracts_manage' },
51 contractnumber
=> $contractnumber,
52 booksellerid
=> $booksellerid,
53 booksellername
=> $bookseller->name,
54 basketcount
=> $bookseller->baskets->count,
55 active
=> $bookseller->active,
56 subscriptioncount
=> $bookseller->subscriptions->count,
59 #ADD_FORM: called if $op is 'add_form'. Used to create form to add or modify a record
60 if ( $op eq 'add_form' ) {
61 $template->param( add_form
=> 1 );
63 # if contractnumber exists, it's a modify action, so read values to modify...
64 if ($contractnumber) {
65 my $contract = GetContract
({
66 contractnumber
=> $contractnumber
70 contractnumber
=> $contract->{contractnumber
},
71 contractname
=> $contract->{contractname
},
72 contractdescription
=> $contract->{contractdescription
},
73 contractstartdate
=> $contract->{contractstartdate
},
74 contractenddate
=> $contract->{contractenddate
},
78 contractnumber
=> undef,
79 contractname
=> undef,
80 contractdescription
=> undef,
81 contractstartdate
=> undef,
82 contractenddate
=> undef,
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 my $contractstart_dt = eval { dt_from_string
( scalar $input->param('contractstartdate') ); };
96 my $contractend_dt = eval { dt_from_string
( scalar $input->param('contractenddate') ); };
97 unless ( $contractstart_dt and $contractend_dt ) {
98 my $today = dt_from_string
;
99 $contractstart_dt ||= $today;
100 $contractend_dt ||= $today;
105 contractstartdate
=> eval { output_pref
({ dt
=> dt_from_string
( $contractstart_dt ), dateformat
=> 'iso', dateonly
=> 1 } ); },
106 contractenddate
=> eval { output_pref
({ dt
=> dt_from_string
( $contractend_dt ), dateformat
=> 'iso', dateonly
=> 1 } ); },
107 contractname
=> scalar $input->param('contractname'),
108 contractdescription
=> scalar $input->param('contractdescription'),
109 booksellerid
=> scalar $input->param('booksellerid'),
110 contractnumber
=> scalar $input->param('contractnumber'),
114 contractname
=> scalar $input->param('contractname'),
115 contractdescription
=> scalar $input->param('contractdescription'),
116 booksellerid
=> scalar $input->param('booksellerid'),
117 contractstartdate
=> eval { output_pref
({ dt
=> dt_from_string
( scalar $input->param('contractstartdate') ), dateformat
=> 'iso', dateonly
=> 1 } ); },
118 contractenddate
=> eval { output_pref
({ dt
=> dt_from_string
( scalar $input->param('contractenddate') ), dateformat
=> 'iso', dateonly
=> 1 } ); },
122 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
125 # END $OP eq ADD_VALIDATE
127 #DELETE_CONFIRM: called by default form, used to confirm deletion of data in DB
128 elsif ( $op eq 'delete_confirm' ) {
129 $template->param( delete_confirm
=> 1 );
131 my $contract = GetContract
( { contractnumber
=> $contractnumber } );
134 contractnumber
=> $$contract{contractnumber
},
135 contractname
=> $$contract{contractname
},
136 contractdescription
=> $$contract{contractdescription
},
137 contractstartdate
=> $$contract{contractstartdate
},
138 contractenddate
=> $$contract{contractenddate
},
141 # END $OP eq DELETE_CONFIRM
143 #DELETE_CONFIRMED: called by delete_confirm, used to effectively confirm deletion of data in DB
144 elsif ( $op eq 'delete_confirmed' ) {
145 my $deleted = DelContract
( { contractnumber
=> $contractnumber } );
148 print $input->redirect("/cgi-bin/koha/acqui/supplier.pl?booksellerid=$booksellerid");
151 $template->param( error
=> 'not_deleted' );
157 # DEFAULT: Builds a list of contracts and displays them
158 if ( $op eq 'list' ) {
159 $template->param(else => 1);
162 my @contracts = @
{GetContracts
( { booksellerid
=> $booksellerid } )};
165 for my $contract ( @contracts ) {
166 $contract->{contractstartdate
} = output_pref
({ dt
=> dt_from_string
( $contract->{contractstartdate
} ), dateonly
=> 1 });
167 $contract->{contractenddate
} = output_pref
({ dt
=> dt_from_string
( $contract->{contractenddate
} ), dateonly
=> 1 }),
170 $template->param(loop => \
@contracts);
172 #---- END $OP eq DEFAULT
175 output_html_with_http_headers
$input, $cookie, $template->output;