From: erickson Date: Mon, 27 Nov 2006 16:25:25 +0000 (+0000) Subject: using updated mbts code to fetch summary in xact-closed test X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3b888ca93acf356486832c377d045049d63dd9fd;p=evergreen%2Fpines.git using updated mbts code to fetch summary in xact-closed test git-svn-id: svn://svn.open-ils.org/ILS/trunk@6616 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm index a7f728ffa8..cae1671ade 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm @@ -456,8 +456,7 @@ sub _check_open_xact { or return $editor->event; # grab the summary and see how much is owed on this transaction - my $summary = $editor->retrieve_money_billable_transaction_summary($xactid) - or return $editor->event; + my ($summary) = $U->fetch_mbts($xactid, $editor); # grab the circulation if it is a circ; my $circ = $editor->retrieve_action_circulation($xactid);