Bugzilla – Attachment 40095 Details for
Bug 14376
Allow the librarian to choose a patron when entering a purchase suggestion
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14376: Allow the librarian to choose a patron when entering a purchase suggestion.
Bug-14376-Allow-the-librarian-to-choose-a-patron-w.patch (text/plain), 4.21 KB, created by
Matthias Meusburger
on 2015-06-11 15:02:46 UTC
(
hide
)
Description:
Bug 14376: Allow the librarian to choose a patron when entering a purchase suggestion.
Filename:
MIME Type:
Creator:
Matthias Meusburger
Created:
2015-06-11 15:02:46 UTC
Size:
4.21 KB
patch
obsolete
>From 2510a2cf46a7d26706e24e26ab5cb3659e46418f Mon Sep 17 00:00:00 2001 >From: Matthias Meusburger <matthias.meusburger@biblibre.com> >Date: Thu, 11 Jun 2015 16:42:29 +0200 >Subject: [PATCH] Bug 14376: Allow the librarian to choose a patron when > entering a purchase suggestion. > > Sometimes librarians are creating purchase suggestions that came from patrons > which didn't use the opac (but sent an email, or told the librarian verbally...) > > This patch allows the librarian to change the creator of the purchase suggestion > when entering it. > > This way, the patron will be able to receive notifications during the purchase > suggestion workflow. > > Test plan: > - Create a new suggestion > - Edit the input "By" from "Suggestion creation" > - Check that autocomplete works. > - Submit the suggestion with a user different than the logged-in librarian. > - Check that the correct user is recorded for this suggestion. >--- > .../prog/en/modules/suggestion/suggestion.tt | 32 +++++++++++++++++--- > 1 file changed, 28 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >index 4bd3908..559ea92 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -167,8 +167,25 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o > [% IF ( op_save ) %] > <script type="text/javascript"> > // <![CDATA[ >- $(document).ready(function() { calcNewsuggTotal(); }); >- // ]]> >+ $(document).ready(function() { >+ calcNewsuggTotal(); >+ $( "#findborrowersuggestion" ).autocomplete({ >+ source: "/cgi-bin/koha/circ/ysearch.pl", >+ minLength: 3, >+ select: function( event, ui ) { >+ $( "#findborrowersuggestion" ).val( ui.item.surname + ', ' + ui.item.firstname + ' (' + ui.item.cardnumber + ')' ); >+ $( "#suggestedby").val( ui.item.borrowernumber ); >+ return false; >+ } >+ }) >+ .data( "ui-autocomplete" )._renderItem = function( ul, item ) { >+ return $( "<li></li>" ) >+ .data( "ui-autocomplete-item", item ) >+ .append( "<a>" + item.surname + ", " + item.firstname + " (" + item.cardnumber + ") <small>" + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" ) >+ .appendTo( ul ); >+ }; >+ }); >+ // ]]> > </script> > [% END %] > <script type="text/javascript" src="[% themelang %]/js/acq.js"></script> >@@ -397,8 +414,15 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o > <tr> > <th><label for="suggesteddate">Suggestion creation</label> </th> > <td><input type="text" id="suggesteddate" name="suggesteddate" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/></td> >- <td><input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby %]"/>[% IF ( suggestedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_borrowernumber %]">[% suggestedby_surname %], [% suggestedby_firstname %]</a> [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])[% END %] >- </td> >+ <td> >+ <div class="autocomplete"> >+ <input autocomplete="on" id="findborrowersuggestion" name="findborrowersuggestion" size="40" class="focus" type="text" [% IF ( suggestedby_borrowernumber ) %] value="[% suggestedby_surname %], [% suggestedby_firstname %] [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])" [% END %] >+value="" /> >+ <input name="branch" value="[% Branches.GetLoggedInBranchcode() %]" type="hidden" /> >+ <input name="printer" value="" type="hidden" /> >+ </div> >+ <input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby %]"/> >+ </td> > </tr> > <tr> > <th><label for="managedon">Suggestion management</label> </th> >-- >1.7.10.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 14376
:
40095
|
40131
|
40181
|
40202
|
40203
|
40514