[Koha-bugs] [Bug 19489] Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Dec 13 20:02:41 CET 2018


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

--- Comment #16 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
2. As well, the html filter is not needed when already KohaDates filtered.

3. in printinvoice.pl

+$accountline->{'item'} = $accountline->{itemnumber} ?
$accountline_object->item : "" ;
+$accountline->{'issue'} = $accountline->{issue_id} ?
$accountline_object->issue : "" ;

It read wrong, why not:
  $accountline->{item} = $accountline_object->item || "" ;
  $accountline->{issue} = $accountline_object->issue || "";
?

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


More information about the Koha-bugs mailing list