From: erickson Date: Thu, 17 Aug 2006 18:42:46 +0000 (+0000) Subject: shoving payment time into the payment object X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ac0c48b9a8dc92790ed8c4d45bd7ebaeff554527;p=evergreen%2Fpines.git shoving payment time into the payment object git-svn-id: svn://svn.open-ils.org/ILS/trunk@5567 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 395d8099bd..e7ff9ffb66 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm @@ -250,6 +250,7 @@ sub retrieve_payments2 { my $type = $_->payment_type; my $meth = "retrieve_money_$type"; my $p = $e->$meth($_->id) or return $e->event; + $p->payment_type($type); try { $p->cash_drawer($e->retrieve_actor_workstation($p->cash_drawer)); } catch Error with {};