From: phasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4> Date: Tue, 29 Sep 2009 05:44:09 +0000 (+0000) Subject: I misunderstood the arguments here. These methods may take an unlimited number of... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b75c356578bc08d37db229d67263d03cf4f71d8c;p=evergreen%2Fmasslnc.git I misunderstood the arguments here. These methods may take an unlimited number of arguments for bill id's, not an array of bill ids git-svn-id: svn://svn.open-ils.org/ILS/trunk@14195 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 7b3ccec0b0..711f82460f 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm @@ -357,7 +357,7 @@ __PACKAGE__->register_method( signature => q/ Voids a bill @param authtoken Login session key - @param billids Single bill id or array of bill id's for the bills to void + @param billid Id for the bill to void. This parameter may be repeated for reference other bills. @return 1 on success, Event on error / ); @@ -415,7 +415,7 @@ __PACKAGE__->register_method( Edits the note for a bill @param authtoken Login session key @param note The replacement note for the bills we're editing - @param billids Single bill id or array of bill id's for the bills whose notes we want to edit. + @param billid Id for the bill to edit the note of. This parameter may be repeated to reference other bills. @return 1 on success, Event on error / );