1 #=====================================================================
 
   2 # SQL-Ledger Accounting
 
   5 #  Author: Dieter Simader
 
   6 #   Email: dsimader@sql-ledger.org
 
   7 #     Web: http://www.sql-ledger.org
 
  11 # This program is free software; you can redistribute it and/or modify
 
  12 # it under the terms of the GNU General Public License as published by
 
  13 # the Free Software Foundation; either version 2 of the License, or
 
  14 # (at your option) any later version.
 
  16 # This program is distributed in the hope that it will be useful,
 
  17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  19 # GNU General Public License for more details.
 
  20 # You should have received a copy of the GNU General Public License
 
  21 # along with this program; if not, write to the Free Software
 
  22 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  23 #======================================================================
 
  25 # this is a variation of the Lingua package
 
  26 # written for check and receipt printing
 
  27 # it returns a properly formatted text string
 
  28 # for a number up to 10**12
 
  33   %{ $self->{numbername} } =
 
  73   my ($self, $amount) = @_;
 
  75   return $self->{numbername}{0} unless $amount;
 
  79   # split amount into chunks of 3
 
  80   my @num = reverse split //, $amount;
 
  90     push @numblock, join / /, reverse @a;
 
  93   my $belowhundred = !$#numblock;
 
  98     @num = split //, $numblock[$i];
 
 103     if ($numblock[$i] == 0) {
 
 108     if ($numblock[$i] > 99) {
 
 109       # the one from hundreds
 
 110       push @textnumber, $self->{numbername}{$num[0]};
 
 112       # add hundred designation
 
 113       push @textnumber, $self->{numbername}{10**2};
 
 116       $numblock[$i] -= $num[0] * 100;
 
 119     $appendn = 'en' if ($i == 2);
 
 120     $appendn = 'n' if ($i > 2);
 
 122     if ($numblock[$i] > 9) {
 
 124       push @textnumber, $self->format_ten($numblock[$i], $belowhundred);
 
 125     } elsif ($numblock[$i] > 1) {
 
 127       push @textnumber, $self->{numbername}{$numblock[$i]};
 
 128     } elsif ($numblock[$i] == 1) {
 
 130         push @textnumber, $self->{numbername}{$numblock[$i]}.'s';
 
 133           push @textnumber, $self->{numbername}{$numblock[$i]}.'e';
 
 135           push @textnumber, $self->{numbername}{$numblock[$i]};
 
 141     # add thousand, million
 
 143       $amount = 10**($i * 3);
 
 144       push @textnumber, $self->{numbername}{$amount}.$appendn;
 
 151   join '', @textnumber;
 
 157   my ($self, $amount, $belowhundred) = @_;
 
 160   my @num = split //, $amount;
 
 164       $textnumber = $self->{numbername}{$amount}; 
 
 167         $amount = $num[0] * 10;
 
 168         $textnumber = $self->{numbername}{$num[1]}.'und'.$self->{numbername}{$amount};
 
 170         $amount = $num[0] * 10;
 
 171         $textnumber = $self->{numbername}{$amount}.$self->{numbername}{$num[1]};
 
 172         $textnumber .= 's' if ($num[1] == 1);
 
 176     $textnumber = $self->{numbername}{$amount};