Bug 24157: New permission - edit_invoices
[koha.git] / acqui / invoice.pl
blobf784b3e4d09e318164a83663ace384249b14650f
1 #!/usr/bin/perl
3 # Copyright 2011 BibLibre SARL
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 =head1 NAME
21 invoice.pl
23 =head1 DESCRIPTION
25 Invoice details
27 =cut
29 use Modern::Perl;
31 use CGI qw ( -utf8 );
32 use C4::Auth;
33 use C4::Output;
34 use C4::Acquisition;
35 use C4::Budgets;
37 use Koha::Acquisition::Booksellers;
38 use Koha::Acquisition::Currencies;
39 use Koha::DateUtils;
40 use Koha::Misc::Files;
41 use Koha::Acquisition::Invoice::Adjustments;
43 my $input = new CGI;
44 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
46 template_name => 'acqui/invoice.tt',
47 query => $input,
48 type => 'intranet',
49 authnotrequired => 0,
50 flagsrequired => { 'acquisition' => '*' },
51 debug => 1,
55 my $logged_in_patron = Koha::Patrons->find( $loggedinuser );
56 my $invoiceid = $input->param('invoiceid');
57 my $op = $input->param('op');
59 output_and_exit( $input, $cookie, $template, 'insufficient_permission' )
60 if $op
61 && not $logged_in_patron->has_permission( { acquisition => 'edit_invoices' } );
63 my $invoice_files;
64 if ( C4::Context->preference('AcqEnableFiles') ) {
65 $invoice_files = Koha::Misc::Files->new(
66 tabletag => 'aqinvoices', recordid => $invoiceid );
69 if ( $op && $op eq 'close' ) {
70 CloseInvoice($invoiceid);
71 my $referer = $input->param('referer');
72 if ($referer) {
73 print $input->redirect($referer);
74 exit 0;
77 elsif ( $op && $op eq 'reopen' ) {
78 output_and_exit( $input, $cookie, $template, 'insufficient_permission' )
79 unless $logged_in_patron->has_permission( { acquisition => 'reopen_closed_invoices' } );
81 ReopenInvoice($invoiceid);
82 my $referer = $input->param('referer');
83 if ($referer) {
84 print $input->redirect($referer);
85 exit 0;
88 elsif ( $op && $op eq 'mod' ) {
89 my $shipmentcost = $input->param('shipmentcost');
90 my $shipment_budget_id = $input->param('shipment_budget_id');
91 my $invoicenumber = $input->param('invoicenumber');
92 ModInvoice(
93 invoiceid => $invoiceid,
94 invoicenumber => $invoicenumber,
95 shipmentdate => scalar output_pref( { str => scalar $input->param('shipmentdate'), dateformat => 'iso', dateonly => 1 } ),
96 billingdate => scalar output_pref( { str => scalar $input->param('billingdate'), dateformat => 'iso', dateonly => 1 } ),
97 shipmentcost => $shipmentcost,
98 shipmentcost_budgetid => $shipment_budget_id
100 if ($input->param('reopen')) {
101 ReopenInvoice($invoiceid)
102 if $logged_in_patron->has_permission( { acquisition => 'reopen_closed_invoices' } );
103 } elsif ($input->param('close')) {
104 CloseInvoice($invoiceid);
105 } elsif ($input->param('merge')) {
106 my @sources = $input->multi_param('merge');
107 MergeInvoices($invoiceid, \@sources);
108 defined($invoice_files) && $invoice_files->MergeFileRecIds(@sources);
110 $template->param( modified => 1 );
112 elsif ( $op && $op eq 'delete' ) {
113 DelInvoice($invoiceid);
114 defined($invoice_files) && $invoice_files->DelAllFiles();
115 my $referer = $input->param('referer') || 'invoices.pl';
116 if ($referer) {
117 print $input->redirect($referer);
118 exit 0;
121 elsif ( $op && $op eq 'del_adj' ) {
122 my $adjustment_id = $input->param('adjustment_id');
123 my $del_adj = Koha::Acquisition::Invoice::Adjustments->find( $adjustment_id );
124 $del_adj->delete() if ($del_adj);
126 elsif ( $op && $op eq 'mod_adj' ) {
127 my @adjustment_id = $input->multi_param('adjustment_id');
128 my @adjustment = $input->multi_param('adjustment');
129 my @reason = $input->multi_param('reason');
130 my @note = $input->multi_param('note');
131 my @budget_id = $input->multi_param('budget_id');
132 my @encumber_open = $input->multi_param('encumber_open');
133 my %e_open = map { $_ => 1 } @encumber_open;
135 for( my $i=0; $i < scalar @adjustment; $i++ ){
136 if( $adjustment_id[$i] eq 'new' ){
137 next unless ( $adjustment[$i] || $reason[$i] );
138 my $new_adj = Koha::Acquisition::Invoice::Adjustment->new({
139 invoiceid => $invoiceid,
140 adjustment => $adjustment[$i],
141 reason => $reason[$i],
142 note => $note[$i],
143 budget_id => $budget_id[$i] || undef,
144 encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0,
146 $new_adj->store();
148 else {
149 my $old_adj = Koha::Acquisition::Invoice::Adjustments->find( $adjustment_id[$i] );
150 unless ( $old_adj->adjustment == $adjustment[$i] && $old_adj->reason eq $reason[$i] && $old_adj->budget_id == $budget_id[$i] && $old_adj->encumber_open == $e_open{$adjustment_id[$i]} && $old_adj->note eq $note[$i] ){
151 $old_adj->timestamp(undef);
152 $old_adj->adjustment( $adjustment[$i] );
153 $old_adj->reason( $reason[$i] );
154 $old_adj->note( $note[$i] );
155 $old_adj->budget_id( $budget_id[$i] || undef );
156 $old_adj->encumber_open( $e_open{$adjustment_id[$i]} ? 1 : 0 );
157 $old_adj->update();
163 my $details = GetInvoiceDetails($invoiceid);
164 my $bookseller = Koha::Acquisition::Booksellers->find( $details->{booksellerid} );
165 my @orders_loop = ();
166 my $orders = $details->{'orders'};
167 my @foot_loop;
168 my %foot;
169 my $shipmentcost = $details->{shipmentcost} || 0;
170 my $total_quantity = 0;
171 my $total_tax_excluded = 0;
172 my $total_tax_included = 0;
173 my $total_tax_value = 0;
174 foreach my $order (@$orders) {
175 my $line = get_infos( $order, $bookseller);
177 $line->{total_tax_excluded} = get_rounded_price($line->{unitprice_tax_excluded}) * $line->{quantity};
178 $line->{total_tax_included} = get_rounded_price($line->{unitprice_tax_included}) * $line->{quantity};
180 $line->{tax_value} = $line->{tax_value_on_receiving};
181 $line->{tax_rate} = $line->{tax_rate_on_receiving};
183 $foot{$$line{tax_rate}}{tax_rate} = $$line{tax_rate};
184 $foot{$$line{tax_rate}}{tax_value} += get_rounded_price($$line{tax_value});
185 $total_tax_value += $$line{tax_value};
186 $foot{$$line{tax_rate}}{quantity} += $$line{quantity};
187 $total_quantity += $$line{quantity};
188 $foot{$$line{tax_rate}}{total_tax_excluded} += get_rounded_price($$line{total_tax_excluded});
189 $total_tax_excluded += get_rounded_price($$line{total_tax_excluded});
190 $foot{$$line{tax_rate}}{total_tax_included} += get_rounded_price($$line{total_tax_included});
191 $total_tax_included += get_rounded_price($$line{total_tax_included});
193 $line->{orderline} = $line->{parent_ordernumber};
194 push @orders_loop, $line;
197 push @foot_loop, map {$_} values %foot;
199 my $shipmentcost_budgetid = $details->{shipmentcost_budgetid};
201 # build budget list
202 my $budget_loop = [];
203 my $budgets = GetBudgetHierarchy();
204 foreach my $r ( @{$budgets} ) {
205 next unless ( CanUserUseBudget( $loggedinuser, $r, $flags ) );
207 if ( !defined $r->{budget_amount} || $r->{budget_amount} == 0 ) {
208 next;
211 my $selected = $shipmentcost_budgetid ? $r->{budget_id} eq $shipmentcost_budgetid : 0;
213 push @{$budget_loop},
215 b_id => $r->{budget_id},
216 b_txt => $r->{budget_name},
217 b_active => $r->{budget_period_active},
218 selected => $selected,
222 @{$budget_loop} =
223 sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @{$budget_loop};
225 my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({ invoiceid => $details->{'invoiceid'} });
226 if ( $adjustments ) { $template->param( adjustments => $adjustments ); }
228 $template->param(
229 invoiceid => $details->{'invoiceid'},
230 invoicenumber => $details->{'invoicenumber'},
231 suppliername => $details->{'suppliername'},
232 booksellerid => $details->{'booksellerid'},
233 shipmentdate => $details->{'shipmentdate'},
234 billingdate => $details->{'billingdate'},
235 invoiceclosedate => $details->{'closedate'},
236 shipmentcost => $shipmentcost,
237 orders_loop => \@orders_loop,
238 foot_loop => \@foot_loop,
239 total_quantity => $total_quantity,
240 total_tax_excluded => $total_tax_excluded,
241 total_tax_included => $total_tax_included,
242 total_tax_value => $total_tax_value,
243 total_tax_excluded_shipment => $total_tax_excluded + $shipmentcost,
244 total_tax_included_shipment => $total_tax_included + $shipmentcost,
245 invoiceincgst => $bookseller->invoiceincgst,
246 currency => Koha::Acquisition::Currencies->get_active,
247 budgets => $budget_loop,
248 budget => GetBudget( $shipmentcost_budgetid ),
251 defined( $invoice_files ) && $template->param( files => $invoice_files->GetFilesInfo() );
253 # FIXME
254 # Fonction dupplicated from basket.pl
255 # Code must to be exported. Where ??
256 sub get_infos {
257 my $order = shift;
258 my $bookseller = shift;
259 my $qty = $order->{'quantity'} || 0;
260 if ( !defined $order->{quantityreceived} ) {
261 $order->{quantityreceived} = 0;
263 my $budget = GetBudget( $order->{'budget_id'} );
265 my %line = %{ $order };
266 $line{order_received} = ( $qty == $order->{'quantityreceived'} );
267 $line{budget_name} = $budget->{budget_name};
269 if ( $line{'title'} ) {
270 my $volume = $order->{'volume'};
271 my $seriestitle = $order->{'seriestitle'};
272 $line{'title'} .= " / $seriestitle" if $seriestitle;
273 $line{'title'} .= " / $volume" if $volume;
276 return \%line;
279 output_html_with_http_headers $input, $cookie, $template->output;