3 #written 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
7 # Copyright 2000-2002 Katipo Communications
8 # Copyright 2010 BibLibre
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
35 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
39 my $borrowernumber=$input->param('borrowernumber');
42 # get borrower details
43 my $data=GetMember
('borrowernumber'=>$borrowernumber);
44 my $add=$input->param('add');
46 if(checkauth
($input)) {
47 # print $input->header;
48 my $barcode=$input->param('barcode');
51 $itemnum = GetItemnumberFromBarcode
($barcode);
53 my $desc=$input->param('desc');
54 my $amount=$input->param('amount');
55 my $type=$input->param('type');
56 my $note = $input->param('note');
57 my $error = manualinvoice
( $borrowernumber, $itemnum, $desc, $type, $amount, $note );
59 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
60 { template_name
=> "members/maninvoice.tmpl",
64 flagsrequired
=> { borrowers
=> 1 },
68 if ( $error =~ /FOREIGN KEY/ && $error =~ /itemnumber/ ) {
69 $template->param( 'ITEMNUMBER' => 1 );
71 $template->param( 'ERROR' => $error );
72 output_html_with_http_headers
$input, $cookie, $template->output;
74 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
80 my ($template, $loggedinuser, $cookie)
81 = get_template_and_user
({template_name
=> "members/maninvoice.tmpl",
85 flagsrequired
=> {borrowers
=> 1, updatecharges
=> 1},
89 # get authorised values with type of MANUAL_INV
91 my $dbh = C4
::Context
->dbh;
92 my $sth = $dbh->prepare('SELECT * FROM authorised_values WHERE category = "MANUAL_INV"');
94 while ( my $row = $sth->fetchrow_hashref() ) {
95 push @invoice_types, $row;
97 $template->param( invoice_types_loop
=> \
@invoice_types );
99 if ( $data->{'category_type'} eq 'C') {
100 my ( $catcodes, $labels ) = GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
101 my $cnt = scalar(@
$catcodes);
102 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
103 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
106 $template->param( adultborrower
=> 1 ) if ( $data->{'category_type'} eq 'A' );
107 my ($picture, $dberror) = GetPatronImage
($data->{'cardnumber'});
108 $template->param( picture
=> 1 ) if $picture;
110 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
111 my $attributes = GetBorrowerAttributes
($borrowernumber);
113 ExtendedPatronAttributes
=> 1,
114 extendedattributes
=> $attributes
118 borrowernumber
=> $borrowernumber,
119 firstname
=> $data->{'firstname'},
120 surname
=> $data->{'surname'},
121 cardnumber
=> $data->{'cardnumber'},
122 categorycode
=> $data->{'categorycode'},
123 category_type
=> $data->{'category_type'},
124 categoryname
=> $data->{'description'},
125 address
=> $data->{'address'},
126 address2
=> $data->{'address2'},
127 city
=> $data->{'city'},
128 state => $data->{'state'},
129 zipcode
=> $data->{'zipcode'},
130 country
=> $data->{'country'},
131 phone
=> $data->{'phone'},
132 email
=> $data->{'email'},
133 branchcode
=> $data->{'branchcode'},
134 branchname
=> GetBranchName
($data->{'branchcode'}),
135 is_child
=> ($data->{'category_type'} eq 'C'),
136 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
138 output_html_with_http_headers
$input, $cookie, $template->output;