improving issues_stats by adding location & itemcallnumber filters
[koha-ffzg.git] / members / maninvoice.pl
index 20213dd..217cd00 100755 (executable)
@@ -27,36 +27,40 @@ use C4::Output;
 use C4::Interface::CGI::Output;
 use CGI;
 use C4::Members;
-use C4::Accounts2;
-use HTML::Template;
+use C4::Accounts;
 
 my $input=new CGI;
 
-my $bornum=$input->param('bornum');
-#get borrower details
-my $data=borrdata('',$bornum);
+my $borrowernumber=$input->param('borrowernumber');
+
+# get borrower details
+my $data=borrdata('',$borrowernumber);
 my $add=$input->param('add');
+
 if ($add){
 #  print $input->header;
-  my $itemnum=$input->param('itemnum');
-  my $desc=$input->param('desc');
-  my $amount=$input->param('amount');
-  my $type=$input->param('type');
-  manualinvoice($bornum,$itemnum,$desc,$type,$amount);
-  print $input->redirect("/cgi-bin/koha/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 => "maninvoice.tmpl",
+       = get_template_and_user({template_name => "members/maninvoice.tmpl",
                                        query => $input,
                                        type => "intranet",
                                        authnotrequired => 0,
                                        flagsrequired => {borrowers => 1},
                                        debug => 1,
                                        });
-       $template->param(bornum => $bornum);
-       print $input->header(
+       $template->param(
+                    borrowernumber => $borrowernumber,
+                    firstname => $data->{'firstname'},
+                    surname  => $data->{'surname'},
+    );
+    print $input->header(
            -type => guesstype($template->output),
            -cookie => $cookie
-       ),$template->output;
-
+    ),$template->output;
 }