improving issues_stats by adding location & itemcallnumber filters
[koha-ffzg.git] / members / maninvoice.pl
index 9dc43ac..217cd00 100755 (executable)
@@ -26,25 +26,25 @@ use C4::Auth;
 use C4::Output;
 use C4::Interface::CGI::Output;
 use CGI;
-use C4::Search;
-use C4::Accounts2;
 use C4::Members;
-
+use C4::Accounts;
 
 my $input=new CGI;
 
-my $bornum=$input->param('bornum');
-#get borrower details
-my $data=borrdata('',$bornum);
-my $user=$data->{firstname}.",".$data->{surname}."-".$data->{cardnumber};
+my $borrowernumber=$input->param('borrowernumber');
+
+# get borrower details
+my $data=borrdata('',$borrowernumber);
 my $add=$input->param('add');
+
 if ($add){
 #  print $input->header;
-  my $desc=$input->param('desc');
-  my $amount=$input->param('amount');
-  my $type=$input->param('type');
-  manualinvoice($bornum,$desc,$type,$amount);
-  print $input->redirect("/cgi-bin/koha/members/boraccount.pl?bornum=$bornum");
+    my $itemnum=$input->param('itemnum');
+    my $desc=$input->param('desc');
+    my $amount=$input->param('amount');
+    my $type=$input->param('type');
+    manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
+    print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
 } else {
        my ($template, $loggedinuser, $cookie)
        = get_template_and_user({template_name => "members/maninvoice.tmpl",
@@ -54,7 +54,13 @@ if ($add){
                                        flagsrequired => {borrowers => 1},
                                        debug => 1,
                                        });
-       $template->param(bornum => $bornum);
-       $template->param(user => $user);
-       output_html_with_http_headers $input, $cookie, $template->output;
+       $template->param(
+                    borrowernumber => $borrowernumber,
+                    firstname => $data->{'firstname'},
+                    surname  => $data->{'surname'},
+    );
+    print $input->header(
+           -type => guesstype($template->output),
+           -cookie => $cookie
+    ),$template->output;
 }