]> git.koha-community.org Git - koha.git/commit
Bug 22421: (follow-up): Check issue during add_credit
authorEmily Lamancusa <emily.lamancusa@montgomerycountymd.gov>
Thu, 24 Oct 2024 15:24:11 +0000 (11:24 -0400)
committerKatrin Fischer <katrin.fischer@bsz-bw.de>
Fri, 8 Nov 2024 11:42:07 +0000 (12:42 +0100)
commite35ab15741acb09dfd2e30631549cc05fcb8952a
tree3b48425e2aa4cdf276e595b3f6d14a544639d6c7
parent33b6aa466ac612673cea99f43de25bf9ed93ee51
Bug 22421: (follow-up): Check issue during add_credit

Additional handling for the case where a credit is added with an
issue_id after the issue is returned.

add_credit will keep the same method signature, where the issue_id
parameter may now refer to a current issue or an old issue. It will then
internally determine whether it is a current or old checkout and handle
it appropriately.

If the caller is updating an account line, or adding a credit to refund
an existing debit, they may not need to know whether it is for a current
checkout or an old checkout. In this case, they can use the account
line's ->checkout accessor to pass in the appropriate issue_id
regardless of whether it is a current or old checkout.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Koha/Account.pm