Bugzilla – Attachment 72473 Details for
Bug 19933
Move C4::Members::patronflags to the Koha namespace - part 1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19933: Remove patronflags - In CanBookBeIssued
Bug-19933-Remove-patronflags---In-CanBookBeIssued.patch (text/plain), 1.41 KB, created by
Josef Moravec
on 2018-03-06 14:06:35 UTC
(
hide
)
Description:
Bug 19933: Remove patronflags - In CanBookBeIssued
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2018-03-06 14:06:35 UTC
Size:
1.41 KB
patch
obsolete
>From 4f5994d137b759ca76f6356fd05d41b59046afeb Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Sun, 7 Jan 2018 13:48:16 -0300 >Subject: [PATCH] Bug 19933: Remove patronflags - In CanBookBeIssued > >The change is trivial here, we only want to pass gonenoaddress, lost and >is_debared to the template. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > C4/Circulation.pm | 20 +++++++++----------- > 1 file changed, 9 insertions(+), 11 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index d583e53..d150ce1 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -724,17 +724,15 @@ sub CanBookBeIssued { > return( { STATS => 1 }, {}); > } > >- my $flags = C4::Members::patronflags( $patron_unblessed ); >- if ( ref $flags ) { >- if ( $flags->{GNA} ) { >- $issuingimpossible{GNA} = 1; >- } >- if ( $flags->{'LOST'} ) { >- $issuingimpossible{CARD_LOST} = 1; >- } >- if ( $flags->{'DBARRED'} ) { >- $issuingimpossible{DEBARRED} = 1; >- } >+ if ( $patron->gonenoaddress == 1 ) { >+ $issuingimpossible{GNA} = 1; >+ } >+ >+ if ( $patron->lost == 1 ) { >+ $issuingimpossible{CARD_LOST} = 1; >+ } >+ if ( $patron->is_debarred ) { >+ $issuingimpossible{DEBARRED} = 1; > } > > if ( $patron->is_expired ) { >-- >2.1.4
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 19933
:
70347
|
70348
|
70349
|
70350
|
71803
|
71804
|
71805
|
71806
|
72004
|
72005
|
72006
|
72007
|
72094
|
72095
|
72350
|
72351
|
72352
|
72353
|
72354
|
72355
|
72356
|
72472
| 72473 |
72474
|
72475
|
72476
|
72477
|
72478