Bugzilla – Attachment 4700 Details for
Bug 6611
patron barcode removed when editing an attribute
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[Signed Off] Bug 6611 : With the change to making cardnumber a nullable field, we need to pass it around when we are updating borrowers, to make sure we don't null it
Signed-Off-Bug-6611--With-the-change-to-making-car.patch (text/plain), 1.93 KB, created by
Liz Rea
on 2011-07-21 13:58:47 UTC
(
hide
)
Description:
[Signed Off] Bug 6611 : With the change to making cardnumber a nullable field, we need to pass it around when we are updating borrowers, to make sure we don't null it
Filename:
MIME Type:
Creator:
Liz Rea
Created:
2011-07-21 13:58:47 UTC
Size:
1.93 KB
patch
obsolete
>From eda946417ef0389a83a7c80859ce3bd62f6b1081 Mon Sep 17 00:00:00 2001 >From: Chris Cormack <chrisc@catalyst.net.nz> >Date: Thu, 21 Jul 2011 10:21:31 +1200 >Subject: [PATCH] [Signed Off] Bug 6611 : With the change to making cardnumber a nullable field, we need to pass it around when we are updating borrowers, to make sure we don't null it >Content-Type: text/plain; charset="utf-8" > >Tested with every small edit link on moremember.pl. >--- > .../prog/en/modules/members/memberentrygen.tt | 13 ++++++++++++- > 1 files changed, 12 insertions(+), 1 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >index 6d60917..f96c27f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >@@ -162,7 +162,18 @@ > <input type="hidden" name="borrowernumber" value="[% IF ( opduplicate ) %][% ELSE %][% borrowernumber %][% END %]" /> > <input type="hidden" name="nodouble" value="[% IF ( opduplicate ) %][% ELSE %][% nodouble %][% END %]" /> > [% IF ( step ) %]<input type="hidden" name="step" value="[% step %]" />[% END %] >-[% IF ( opadd ) %]<input type="hidden" name="op" value="insert" />[% ELSIF ( opduplicate ) %]<input type="hidden" name="op" value="insert" />[% ELSE %]<input type="hidden" name="op" value="save" />[% END %] >+[% IF ( opadd ) %]<input type="hidden" name="op" value="insert" /> >+[% ELSIF ( opduplicate ) %] >+<input type="hidden" name="op" value="insert" /> >+[% ELSE %] >+<input type="hidden" name="op" value="save" /> >+[% IF step == 4 || step == 5 || step == 6 || step == 2 || step == 1 %] >+[%# Only put the cardnumber if we arent showing it in the form later %] >+[% IF cardnumber %] >+<input type="hidden" name="cardnumber" value="[% cardnumber %]"> >+[% END %] >+[% END %] >+[% END %] > > [% IF ( step_1 ) %] > <fieldset class="rows" id="memberentry_identity"> >-- >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 6611
:
4688
| 4700