Bugzilla – Attachment 9849 Details for
Bug 8129
quick slips issuing does not work
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED OFF] Bug 8129 - Quickslips not printing
SIGNED-OFF-Bug-8129---Quickslips-not-printing.patch (text/plain), 1.55 KB, created by
Kyle M Hall
on 2012-05-30 11:42:55 UTC
(
hide
)
Description:
[SIGNED OFF] Bug 8129 - Quickslips not printing
Filename:
MIME Type:
Creator:
Kyle M Hall
Created:
2012-05-30 11:42:55 UTC
Size:
1.55 KB
patch
obsolete
>From ba4fb43b11dc86d1c027e3e5bcc1aea266ce8207 Mon Sep 17 00:00:00 2001 >From: Liz Rea <wizzyrea@gmail.com> >Date: Tue, 29 May 2012 16:06:22 -0500 >Subject: [PATCH] [SIGNED OFF] Bug 8129 - Quickslips not printing > >Implemented from the suggestions attached to the bug. > >To test: >Check out a book to a patron >Click print -> quick slip > >Slip should show only today's checkouts. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/Members.pm | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > >diff --git a/C4/Members.pm b/C4/Members.pm >index 343a0db..ce54952 100644 >--- a/C4/Members.pm >+++ b/C4/Members.pm >@@ -2279,14 +2279,14 @@ sub IssueSlip { > > # return unless ( C4::Context->boolean_preference('printcirculationslips') ); > >- my $today = POSIX::strftime("%Y-%m-%d", localtime); >+ my $now = POSIX::strftime("%Y-%m-%d", localtime); > > my $issueslist = GetPendingIssues($borrowernumber); > foreach my $it (@$issueslist){ >- if ($it->{'issuedate'} eq $today) { >- $it->{'today'} = 1; >+ if ((substr $it->{'issuedate'}, 0, 10) eq $now) { >+ $it->{'now'} = 1; > } >- elsif ($it->{'date_due'} le $today) { >+ elsif ((substr $it->{'date_due'}, 0, 10) le $now) { > $it->{'overdue'} = 1; > } > >@@ -2302,7 +2302,7 @@ sub IssueSlip { > 'biblio' => $_, > 'items' => $_, > 'issues' => $_, >- }, grep { $_->{'today'} } @issues ], >+ }, grep { $_->{'now'} } @issues ], > ); > } > else { >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8129
:
9844
|
9848
| 9849