X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Fpay.pl;h=4ecdcc925db2ec9f0567aa4ec4801502edaf4fbf;hb=1c6cdaf162591892cc8a4318044482563fe47bdc;hp=02bb6837c2d6a8563c7a48019aceb60a37dedc21;hpb=9890a4880090292c64e8e78ef4976bdfa188d545;p=koha_fer diff --git a/members/pay.pl b/members/pay.pl index 02bb6837c2..4ecdcc925d 100755 --- a/members/pay.pl +++ b/members/pay.pl @@ -1,6 +1,7 @@ #!/usr/bin/perl # Copyright 2000-2002 Katipo Communications +# Copyright 2010 BibLibre # # This file is part of Koha. # @@ -13,9 +14,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. =head1 pay.pl @@ -58,7 +59,7 @@ if ( $borrowernumber eq '' ) { } # get borrower details -my $data = GetMember( $borrowernumber,'borrowernumber' ); +my $data = GetMember( borrowernumber => $borrowernumber ); my $user = $input->remote_user; # get account details @@ -83,7 +84,14 @@ for ( my $i = 0 ; $i < @names ; $i++ ) { makepayment( $borrowernumber, $accountno, $amount, $user, $branch ); $check = 2; } + if ( $temp eq 'no'||$temp eq 'yes'||$temp eq 'wo') { + my $borrowernumber = $input->param( $names[ $i + 5 ] ); + my $accountno = $input->param( $names[ $i + 6 ] ); + my $note = $input->param( $names[ $i + 10 ] ); + ModNote( $borrowernumber, $accountno, $note ); + } } + my $total = $input->param('total') || ''; if ( $check == 0 ) { if ( $total ne '' ) { @@ -114,6 +122,7 @@ if ( $check == 0 ) { $line{borrowernumber} = $borrowernumber; $line{accountno} = $accts->[$i]{'accountno'}; $line{description} = $accts->[$i]{'description'}; + $line{note} = $accts->[$i]{'note'}; $line{title} = $accts->[$i]{'title'}; $line{notify_id} = $accts->[$i]{'notify_id'}; $line{notify_level} = $accts->[$i]{'notify_level'}; @@ -156,6 +165,7 @@ $template->param( picture => 1 ) if $picture; address => $data->{'address'}, address2 => $data->{'address2'}, city => $data->{'city'}, + state => $data->{'state'}, zipcode => $data->{'zipcode'}, country => $data->{'country'}, phone => $data->{'phone'},