[Koha-bugs] [Bug 17649] Create only one message per borrower and overdue level

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Oct 19 12:16:09 CEST 2018


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

Victor Grousset/tuxayo <victor.grousset at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Patch doesn't apply         |Needs Signoff

--- Comment #11 from Victor Grousset/tuxayo <victor.grousset at biblibre.com> ---
Rebased and fixed conflict. Easy to solve and shouldn't invalidate the signoff.


SELECT biblio.*, items.*, issues.*, biblioitems.itemtype, branchname
  FROM issues,items,biblio, biblioitems, branches b
  WHERE items.itemnumber=issues.itemnumber
    AND biblio.biblionumber   = items.biblionumber
    AND b.branchcode = items.homebranch
    AND biblio.biblionumber   = biblioitems.biblionumber
    AND issues.borrowernumber = ?
<<<<<<< 17e5691daaa0f6b73623198eded648c78e40056a
    AND issues.branchcode = ?
    AND items.itemlost = 0
||||||| merged common ancestors
    AND issues.branchcode = ?
=======
>>>>>>> Bug 17649 Only one message per borrower and overdue level
    AND TO_DAYS($date)-TO_DAYS(issues.date_due) >= 0
END_SQL
    $overduequery.= " AND issues.branchcode = ?" unless $all_in_one;
    my $sth2 =  $dbh->prepare($overduequery);

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


More information about the Koha-bugs mailing list