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>.
37 use Koha
::Acquisition
::Booksellers
;
38 use Koha
::Acquisition
::Currencies
;
40 use Koha
::Misc
::Files
;
41 use Koha
::Acquisition
::Invoice
::Adjustments
;
44 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user
(
46 template_name
=> 'acqui/invoice.tt',
50 flagsrequired
=> { 'acquisition' => '*' },
55 my $invoiceid = $input->param('invoiceid');
56 my $op = $input->param('op');
59 if ( C4
::Context
->preference('AcqEnableFiles') ) {
60 $invoice_files = Koha
::Misc
::Files
->new(
61 tabletag
=> 'aqinvoices', recordid
=> $invoiceid );
64 if ( $op && $op eq 'close' ) {
65 CloseInvoice
($invoiceid);
66 my $referer = $input->param('referer');
68 print $input->redirect($referer);
72 elsif ( $op && $op eq 'reopen' ) {
73 ReopenInvoice
($invoiceid);
74 my $referer = $input->param('referer');
76 print $input->redirect($referer);
80 elsif ( $op && $op eq 'mod' ) {
81 my $shipmentcost = $input->param('shipmentcost');
82 my $shipment_budget_id = $input->param('shipment_budget_id');
83 my $invoicenumber = $input->param('invoicenumber');
85 invoiceid
=> $invoiceid,
86 invoicenumber
=> $invoicenumber,
87 shipmentdate
=> scalar output_pref
( { str
=> scalar $input->param('shipmentdate'), dateformat
=> 'iso', dateonly
=> 1 } ),
88 billingdate
=> scalar output_pref
( { str
=> scalar $input->param('billingdate'), dateformat
=> 'iso', dateonly
=> 1 } ),
89 shipmentcost
=> $shipmentcost,
90 shipmentcost_budgetid
=> $shipment_budget_id
92 if ($input->param('reopen')) {
93 ReopenInvoice
($invoiceid);
94 } elsif ($input->param('close')) {
95 CloseInvoice
($invoiceid);
96 } elsif ($input->param('merge')) {
97 my @sources = $input->multi_param('merge');
98 MergeInvoices
($invoiceid, \
@sources);
99 defined($invoice_files) && $invoice_files->MergeFileRecIds(@sources);
101 $template->param( modified
=> 1 );
103 elsif ( $op && $op eq 'delete' ) {
104 DelInvoice
($invoiceid);
105 defined($invoice_files) && $invoice_files->DelAllFiles();
106 my $referer = $input->param('referer') || 'invoices.pl';
108 print $input->redirect($referer);
112 elsif ( $op && $op eq 'del_adj' ) {
113 my $adjustment_id = $input->param('adjustment_id');
114 my $del_adj = Koha
::Acquisition
::Invoice
::Adjustments
->find( $adjustment_id );
115 $del_adj->delete() if ($del_adj);
117 elsif ( $op && $op eq 'mod_adj' ) {
118 my @adjustment_id = $input->multi_param('adjustment_id');
119 my @adjustment = $input->multi_param('adjustment');
120 my @reason = $input->multi_param('reason');
121 my @note = $input->multi_param('note');
122 my @budget_id = $input->multi_param('budget_id');
123 my @encumber_open = $input->multi_param('encumber_open');
124 my %e_open = map { $_ => 1 } @encumber_open;
126 for( my $i=0; $i < scalar @adjustment; $i++ ){
127 if( $adjustment_id[$i] eq 'new' ){
128 next unless ( $adjustment[$i] || $reason[$i] );
129 my $new_adj = Koha
::Acquisition
::Invoice
::Adjustment
->new({
130 invoiceid
=> $invoiceid,
131 adjustment
=> $adjustment[$i],
132 reason
=> $reason[$i],
134 budget_id
=> $budget_id[$i] || undef,
135 encumber_open
=> defined $e_open{ $adjustment_id[$i] } ?
1 : 0,
140 my $old_adj = Koha
::Acquisition
::Invoice
::Adjustments
->find( $adjustment_id[$i] );
141 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] ){
142 $old_adj->timestamp(undef);
143 $old_adj->adjustment( $adjustment[$i] );
144 $old_adj->reason( $reason[$i] );
145 $old_adj->note( $note[$i] );
146 $old_adj->budget_id( $budget_id[$i] || undef );
147 $old_adj->encumber_open( $e_open{$adjustment_id[$i]} ?
1 : 0 );
154 my $details = GetInvoiceDetails
($invoiceid);
155 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $details->{booksellerid
} );
156 my @orders_loop = ();
157 my $orders = $details->{'orders'};
160 my $shipmentcost = $details->{shipmentcost
} || 0;
161 my $total_quantity = 0;
162 my $total_tax_excluded = 0;
163 my $total_tax_included = 0;
164 my $total_tax_value = 0;
165 foreach my $order (@
$orders) {
166 my $line = get_infos
( $order, $bookseller);
168 $line->{total_tax_excluded
} = get_rounded_price
($line->{unitprice_tax_excluded
}) * $line->{quantity
};
169 $line->{total_tax_included
} = get_rounded_price
($line->{unitprice_tax_included
}) * $line->{quantity
};
171 $line->{tax_value
} = $line->{tax_value_on_receiving
};
172 $line->{tax_rate
} = $line->{tax_rate_on_receiving
};
174 $foot{$$line{tax_rate
}}{tax_rate
} = $$line{tax_rate
};
175 $foot{$$line{tax_rate
}}{tax_value
} += get_rounded_price
($$line{tax_value
});
176 $total_tax_value += $$line{tax_value
};
177 $foot{$$line{tax_rate
}}{quantity
} += $$line{quantity
};
178 $total_quantity += $$line{quantity
};
179 $foot{$$line{tax_rate
}}{total_tax_excluded
} += get_rounded_price
($$line{total_tax_excluded
});
180 $total_tax_excluded += get_rounded_price
($$line{total_tax_excluded
});
181 $foot{$$line{tax_rate
}}{total_tax_included
} += get_rounded_price
($$line{total_tax_included
});
182 $total_tax_included += get_rounded_price
($$line{total_tax_included
});
184 $line->{orderline
} = $line->{parent_ordernumber
};
185 push @orders_loop, $line;
188 push @foot_loop, map {$_} values %foot;
190 my $shipmentcost_budgetid = $details->{shipmentcost_budgetid
};
193 my $budget_loop = [];
194 my $budgets = GetBudgetHierarchy
();
195 foreach my $r ( @
{$budgets} ) {
196 next unless ( CanUserUseBudget
( $loggedinuser, $r, $flags ) );
198 if ( !defined $r->{budget_amount
} || $r->{budget_amount
} == 0 ) {
202 my $selected = $shipmentcost_budgetid ?
$r->{budget_id
} eq $shipmentcost_budgetid : 0;
204 push @
{$budget_loop},
206 b_id
=> $r->{budget_id
},
207 b_txt
=> $r->{budget_name
},
208 b_active
=> $r->{budget_period_active
},
209 selected
=> $selected,
214 sort { uc( $a->{b_txt
} ) cmp uc( $b->{b_txt
} ) } @
{$budget_loop};
216 my $adjustments = Koha
::Acquisition
::Invoice
::Adjustments
->search({ invoiceid
=> $details->{'invoiceid'} });
217 if ( $adjustments ) { $template->param( adjustments
=> $adjustments ); }
220 invoiceid
=> $details->{'invoiceid'},
221 invoicenumber
=> $details->{'invoicenumber'},
222 suppliername
=> $details->{'suppliername'},
223 booksellerid
=> $details->{'booksellerid'},
224 shipmentdate
=> $details->{'shipmentdate'},
225 billingdate
=> $details->{'billingdate'},
226 invoiceclosedate
=> $details->{'closedate'},
227 shipmentcost
=> $shipmentcost,
228 orders_loop
=> \
@orders_loop,
229 foot_loop
=> \
@foot_loop,
230 total_quantity
=> $total_quantity,
231 total_tax_excluded
=> $total_tax_excluded,
232 total_tax_included
=> $total_tax_included,
233 total_tax_value
=> $total_tax_value,
234 total_tax_excluded_shipment
=> $total_tax_excluded + $shipmentcost,
235 total_tax_included_shipment
=> $total_tax_included + $shipmentcost,
236 invoiceincgst
=> $bookseller->invoiceincgst,
237 currency
=> Koha
::Acquisition
::Currencies
->get_active,
238 budgets
=> $budget_loop,
241 defined( $invoice_files ) && $template->param( files
=> $invoice_files->GetFilesInfo() );
244 # Fonction dupplicated from basket.pl
245 # Code must to be exported. Where ??
248 my $bookseller = shift;
249 my $qty = $order->{'quantity'} || 0;
250 if ( !defined $order->{quantityreceived
} ) {
251 $order->{quantityreceived
} = 0;
253 my $budget = GetBudget
( $order->{'budget_id'} );
255 my %line = %{ $order };
256 $line{order_received
} = ( $qty == $order->{'quantityreceived'} );
257 $line{budget_name
} = $budget->{budget_name
};
259 if ( $line{uncertainprice
} ) {
260 $line{rrp
} .= ' (Uncertain)';
262 if ( $line{'title'} ) {
263 my $volume = $order->{'volume'};
264 my $seriestitle = $order->{'seriestitle'};
265 $line{'title'} .= " / $seriestitle" if $seriestitle;
266 $line{'title'} .= " / $volume" if $volume;
272 output_html_with_http_headers
$input, $cookie, $template->output;