[Koha-bugs] [Bug 8253] Fine doubling

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Aug 17 14:40:46 CEST 2012


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8253

--- Comment #13 from Kyle M Hall <kyle at bywatersolutions.com> ---
(In reply to comment #12)

Julian,
  I think I understand why this isn't working for you. When I wrote this patch,
Koha also had the bug where it was using '00:00' instead of '23:59' for the
hour/minutes portion. In that case, this would work just fine.

Perhaps we need to make this delete all lines matching 'Orchidées 06/01/2012',
but instead of not matching on 'Orchidées 06/01/2012 23:59", we use the
timestamp of the keeper instead.

So, instead of 

SELECT * FROM accountlines WHERE description LIKE $truncated_description AND
description NOT LIKE $full_description

We would use

SELECT * FROM accountlines WHERE description LIKE $truncated_description AND
timestamp NOT LIKE $keepers_timestamp

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


More information about the Koha-bugs mailing list