[Koha-bugs] [Bug 10021] Remove dead code related to notifys

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Nov 3 09:58:59 CET 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10021

Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA

--- Comment #32 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
QA Comment:

GetOverduesForBranch
Please add a test. You make some fundamental changes here.

koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt
-    <input type="hidden" name="totals[% line.accountlines_id %]" value="[%
line.totals %]" />
Not sure. Why do yo remove this line ?

New code:
+    my $accounts = Koha::Account::Lines->search({ borrowernumber =>
$borrowernumber, }, { order_by => ['accounttype'] });
+    my @accounts;
+    while ( my $account = $accounts->next ) {
This does not look very nice. Can we get more confusion on $account, @accounts
or $accounts ?
Renaming @accounts here might be the least we can do?
No blocker on itself.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list