Bug 21156: Add plural translation capabilities to JS files
[koha.git] / pos / pay.pl
blobfe9ee8703b21592a2c1a5a9047924d9b144946d3
1 #!/usr/bin/perl
3 use Modern::Perl;
5 use CGI;
6 use JSON qw( from_json );
8 use C4::Auth qw/:DEFAULT get_session/;
9 use C4::Output;
10 use C4::Context;
12 use Koha::Account::DebitTypes;
13 use Koha::AuthorisedValues;
14 use Koha::Cash::Registers;
15 use Koha::Charges::Sales;
16 use Koha::Database;
17 use Koha::Libraries;
19 my $input = CGI->new();
20 my $sessionID = $input->cookie('CGISESSID');
21 my $session = get_session($sessionID);
23 my ( $template, $loggedinuser, $cookie, $user_flags ) = get_template_and_user(
25 template_name => 'pos/pay.tt',
26 query => $input,
27 type => 'intranet',
28 authnotrequired => 0,
29 flagsrequired => { cash_management => 'takepayment' },
32 my $logged_in_user = Koha::Patrons->find($loggedinuser) or die "Not logged in";
34 my $library_id = C4::Context->userenv->{'branch'};
35 my $registerid = $input->param('registerid');
36 my $registers = Koha::Cash::Registers->search(
37 { branch => $library_id, archived => 0 },
38 { order_by => { '-asc' => 'name' } }
41 if ( !$registers->count ) {
42 $template->param( error_registers => 1 );
44 else {
45 if ( !$registerid ) {
46 my $default_register = Koha::Cash::Registers->find(
47 { branch => $library_id, branch_default => 1 } );
48 $registerid = $default_register->id if $default_register;
50 $registerid = $registers->next->id if !$registerid;
52 $template->param(
53 registerid => $registerid,
54 registers => $registers,
58 my $invoice_types =
59 Koha::Account::DebitTypes->search_with_library_limits(
60 { can_be_sold => 1 },
61 {}, $library_id );
62 $template->param( invoice_types => $invoice_types );
64 my $total_paid = $input->param('paid');
65 if ( $total_paid and $total_paid ne '0.00' ) {
66 my $cash_register = Koha::Cash::Registers->find( { id => $registerid } );
67 my $payment_type = $input->param('payment_type');
68 my $sale = Koha::Charges::Sales->new(
70 cash_register => $cash_register,
71 staff_id => $logged_in_user->id
75 my @sales = $input->multi_param('sales');
76 for my $item (@sales) {
77 $item = from_json $item;
78 $sale->add_item($item);
81 my $payment = $sale->purchase( { payment_type => $payment_type } );
83 $template->param(
84 payment_id => $payment->accountlines_id,
85 collected => scalar $input->param('collected'),
86 change => scalar $input->param('change')
90 output_html_with_http_headers( $input, $cookie, $template->output );