From 2bb509376b95084eca458df2dd8de907f94694c5 Mon Sep 17 00:00:00 2001 From: einhverfr Date: Wed, 17 Sep 2008 16:24:13 +0000 Subject: Performance tuning for multiple payents screen git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2325 4979c152-3d1c-0410-bac9-87ea11338e46 --- UI/payments/payments_detail.html | 12 ++---------- scripts/payment.pl | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/UI/payments/payments_detail.html b/UI/payments/payments_detail.html index b63b696a..86fc47f7 100644 --- a/UI/payments/payments_detail.html +++ b/UI/payments/payments_detail.html @@ -168,9 +168,8 @@ - + - @@ -294,19 +293,12 @@ name = "invoice_count_${r.contact_id}" value = icount } ?> - - + diff --git a/scripts/payment.pl b/scripts/payment.pl index 9037aca8..6da1d5b6 100644 --- a/scripts/payment.pl +++ b/scripts/payment.pl @@ -360,9 +360,27 @@ sub display_payments { my ($request) = @_; my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request}); $payment->get_payment_detail_data(); + $payment->{grand_total} = 0; for (@{$payment->{contact_invoices}}){ + my $contact_total = 0; $_->{total_due} = $payment->format_amount(amount => $_->{total_due}); + + if (($payment->{action} ne 'update_payments') + or (defined $payment->{"id_$_->{contact_id}"})){ + if ($payment->{"paid_$_->{contact_id}"} eq 'some'){ + for my $invoice (@{$_->{invoices}}){ + my $i_id = $invoice->[0]; + $contact_total + += $payment->{"paid_$_->{contact_id}_$i_id"}; + } + } else { + $contact_total = $_->{total_due}; + } + $payment->{grand_total} += $contact_total; + } + $_->{contact_total} = $contact_total; } + $payment->debug({file => '/tmp/payment'}); @{$payment->{media_options}} = ( {text => $request->{_locale}->text('Screen'), -- cgit v1.2.3