Bug 24082: Add refund action to relevant lines
[koha.git] / pos / register.pl
1 #!/usr/bin/perl
2
3 # Copyright 2020 PTFS-Europe Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use CGI;
22 use C4::Auth;
23 use C4::Output;
24 use C4::Context;
25
26 use Koha::Cash::Registers;
27 use Koha::Database;
28
29 my $input = CGI->new();
30
31 my ( $template, $loggedinuser, $cookie, $user_flags ) = get_template_and_user(
32     {
33         template_name   => 'pos/register.tt',
34         query           => $input,
35         type            => 'intranet',
36         authnotrequired => 0,
37         flagsrequired   => { cash_management => [ 'cashup', 'anonymous_refund' ] },
38     }
39 );
40 my $logged_in_user = Koha::Patrons->find($loggedinuser) or die "Not logged in";
41 my $schema = Koha::Database->new->schema;
42
43 my $library_id = C4::Context->userenv->{'branch'};
44 my $registerid = $input->param('registerid');
45 my $registers  = Koha::Cash::Registers->search(
46     { branch   => $library_id, archived => 0 },
47     { order_by => { '-asc' => 'name' } }
48 );
49
50 if ( !$registers->count ) {
51     $template->param( error_registers => 1 );
52 }
53 else {
54     if ( !$registerid ) {
55         my $default_register = Koha::Cash::Registers->find(
56             { branch => $library_id, branch_default => 1 } );
57         $registerid = $default_register->id if $default_register;
58     }
59     $registerid = $registers->next->id if !$registerid;
60
61     $template->param(
62         registerid => $registerid,
63         registers  => $registers,
64     );
65
66     my $cash_register = Koha::Cash::Registers->find( { id => $registerid } );
67     my $accountlines = $cash_register->outstanding_accountlines();
68     $template->param(
69         register     => $cash_register,
70         accountlines => $accountlines
71     );
72
73     my $op = $input->param('op') // '';
74     if ( $op eq 'cashup' ) {
75         $cash_register->add_cashup(
76             {
77                 manager_id => $logged_in_user->id,
78                 amount     => $cash_register->outstanding_accountlines->total
79             }
80         );
81     }
82     elsif ( $op eq 'refund' ) {
83         my $amount           = $input->param('amount');
84         my $quantity         = $input->param('quantity');
85         my $accountline_id   = $input->param('accountline');
86         my $transaction_type = $input->param('transaction_type');
87
88         my $accountline = Koha::Account::Lines->find($accountline_id);
89         $schema->txn_do(
90             sub {
91
92                 my $refund = $accountline->reduce(
93                     {
94                         reduction_type => 'Refund',
95                         branch         => $library_id,
96                         staff_id       => $logged_in_user->id,
97                         interface      => 'intranet',
98                         amount         => $amount
99                     }
100                 );
101                 my $payout = $refund->payout(
102                     {
103                         payout_type   => $transaction_type,
104                         branch        => $library_id,
105                         staff_id      => $logged_in_user->id,
106                         cash_register => $cash_register->id,
107                         interface     => 'intranet',
108                         amount        => $amount
109                     }
110                 );
111
112             }
113         );
114     }
115 }
116
117 output_html_with_http_headers( $input, $cookie, $template->output );