diff --git a/Changelog b/Changelog index eff2986217..7890d86a1f 100644 --- a/Changelog +++ b/Changelog @@ -3,7 +3,7 @@ Initial Release: Monday, Oct 12 2011 Supported Presently Changelog for 1.3.45 -* Cleaned up sql files so App::LedgerSMB::Admin (Chris T) +* Cleaned up sql files so App::LedgerSMB::Admin works (Chris T) * Fixed pricematrix prices not respected for vendors (Chris T, bug 1230) * Added tests for Sysconfig (Chris T, bug 1232) * Added first-rate starman/plack support (Chris T) @@ -13,8 +13,12 @@ Changelog for 1.3.45 * Fixed bug 1251, some backports failing due to misplacing db cnx (Chris T) * Fixed bug 1241, join projection, amounts in invoice details report (Chris T) * Fixed internal server error on single payment interface (Chris T) +* Fixed bug 1240, false alarms of customer credit usage exceeded (Chris T) +* Adding tax_id hidden field to order and offer forms to be able to include it on tex templates (Pongracz I) +* Fixed bug 1258, manual tax number entries do not respect number formats (Pongracz I) Chris T is Chris Travers +Pongracz I is Pongracz Istvan Changelog for 1.3.44 * Allow blank salutations, bug 1204. (Chris T) diff --git a/LedgerSMB.pm b/LedgerSMB.pm index e9a2d2bbb2..ccc4710309 100755 --- a/LedgerSMB.pm +++ b/LedgerSMB.pm @@ -223,7 +223,7 @@ $CGI::Simple::POST_MAX = -1; package LedgerSMB; use base 'LedgerSMB::Request'; -our $VERSION = '1.3.44'; +our $VERSION = '1.3.45'; my $logger = Log::Log4perl->get_logger('LedgerSMB'); diff --git a/LedgerSMB/AA.pm b/LedgerSMB/AA.pm index 7a48b6c011..2e8d7832b3 100755 --- a/LedgerSMB/AA.pm +++ b/LedgerSMB/AA.pm @@ -1427,6 +1427,7 @@ sub get_name { SELECT sum(o.amount * coalesce(e.$buysell, 1)) as used FROM oe o LEFT JOIN exchangerate e ON o.transdate = e.transdate + AND o.curr = e.curr WHERE not closed and oe_class_id in (1, 2) and entity_credit_account = ?) s|; diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index 0eff255be8..930e440f59 100644 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -166,8 +166,8 @@ sub new { #menubar will be deprecated, replaced with below $self->{lynx} = 1 if ( ( defined $self->{path} ) && ( $self->{path} =~ /lynx/i ) ); - $self->{version} = "1.3.44"; - $self->{dbversion} = "1.3.44"; + $self->{version} = "1.3.45"; + $self->{dbversion} = "1.3.45"; bless $self, $type; diff --git a/VERSION b/VERSION index 155d478ccd..38670bbf46 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.44 +1.3.45 diff --git a/bin/is.pl b/bin/is.pl index b7d82bfd4a..b4bf242e8d 100755 --- a/bin/is.pl +++ b/bin/is.pl @@ -735,7 +735,7 @@ sub form_footer { * $form->{"mt_basis_$item"}; } $form->{invtotal} += $form->round_amount( - $form->{"mt_amount_$item"}, 2); + $form->parse_amount( \%myconfig, $form->{"mt_amount_$item"}), 2); # Setting this up as a table # Note that the screens may be not wide enough to display # this in the normal way so we have to change the layout of the @@ -744,7 +744,7 @@ sub form_footer {