Bugzilla – Attachment 52860 Details for
Bug 16566
'Print slip' button formatting inconsistent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16566 [Revised] 'Print slip' button formatting inconsistent
Bug-16566-Revised-Print-slip-button-formatting-inc.patch (text/plain), 5.91 KB, created by
Kyle M Hall (khall)
on 2016-06-24 18:07:20 UTC
(
hide
)
Description:
Bug 16566 [Revised] 'Print slip' button formatting inconsistent
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-06-24 18:07:20 UTC
Size:
5.91 KB
patch
obsolete
>From e0058104bec4b376465cbece1631355c62da4e98 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 23 May 2016 11:03:48 -0400 >Subject: [PATCH] Bug 16566 [Revised] 'Print slip' button formatting > inconsistent >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch modifies the style of some "print slip" links on the checkin >page to make them consistent with other buttons shown in dialogs. > >This patch also removes the use of "onclick" in some places in favor of >defining events in the JavaScript. > >To test apply the patch and go to Circulation -> Check in. > >- Check in an item which belongs at another branch. You should see a > dialog which asks the user to transfer the item. Confirm that the > "Print slip" button looks correct and works correctly. > >- Check in the same item again. You should see a different dialog which > has both a "Print transfer slip" and "Cancel transfer" button. The > "Print transfer slip" button should look correct and work correctly. > >- Check in an item which is part of a rotating collection. (Or, if Bug > 16570 is still open, check in any item) You should see a dialog which > notifies you that the item is part of a rotating collection. The > "Print slip" button in this dialog should look correct and work > correctly. > >Followed test plan. Buttons appear as expected. >Signed-off-by: Marc Véron <veron@veron.ch> > >Revision following QA: Removed redundant class attribute from the print >button tested in step 1. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 13 +++++++++---- > 1 file changed, 9 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 0c4180c..520b86b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -128,6 +128,10 @@ $(document).ready(function () { > $("#barcode").removeClass("alert"); > }); > [% END %] >+ $('.openWin').on("click",function(e){ >+ e.preventDefault(); >+ Dopop( $(this).data("url") ); >+ }); > }); > //]]> > </script> >@@ -164,7 +168,7 @@ $(document).ready(function () { > <h3>Please transfer item to: [% collectionBranchName %]</h3> > <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> > <p>This item is part of a rotating collection.</p> >- <p><a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&branchcode=[% collectionBranch %]&op=slip'); return true;">Print slip</a></p> >+ <p><button type="button" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&branchcode=[% collectionBranch %]&op=slip"><i class="fa fa-print"></i> Print slip</button></p> > </div> > [% END %] > >@@ -209,7 +213,8 @@ $(document).ready(function () { > <!-- WrongTransfer --> > <h3>Please return item to: [% Branches.GetName( TransferWaitingAt ) %]</h3> > <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> >- <button type="submit" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&&branchcode=[% homebranch %]&op=slip'); return true;"><i class="fa fa-print"></i> Print transfer slip</button><button type="submit" onclick="window.location.href='/cgi-bin/koha/circ/returns.pl?itemnumber=[% itemnumber %]&canceltransfer=1'"><i class="fa fa-times"></i> Cancel transfer</button> >+ <button type="submit" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&&branchcode=[% homebranch %]&op=slip"><i class="fa fa-print"></i> Print transfer slip</button> >+ <button class="deny" type="submit" onclick="window.location.href='/cgi-bin/koha/circ/returns.pl?itemnumber=[% itemnumber %]&canceltransfer=1'"><i class="fa fa-times"></i> Cancel transfer</button> > [% IF ( wborcnum ) %]<h5>Hold for:</h5> > <ul><li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]"> > [% borsurname %], [% borfirstname %]</a> ([% borcnum %])</li> >@@ -339,7 +344,7 @@ $(document).ready(function () { > <div id="return1" class="dialog message audio-alert-action"> > <h3>Please return item to: [% Branches.GetName( returnbranch ) %]</h3> > <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> >- <ul><li><a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&branchcode=[% returnbranch %]&op=slip'); return true;">Print slip</a></li></ul> >+ <p><button type="button" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&branchcode=[% returnbranch %]&op=slip"><i class="fa fa-print"></i> Print slip</button></p> > </div> > [% END %] > >@@ -349,7 +354,7 @@ $(document).ready(function () { > Transfer now?<br /> > <form method="post" action="returns.pl" name="mainform" id="mainform"> > [% IF itemnumber %] >- <button type="submit" name="dotransfer" class="print" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&&branchcode=[% returnbranch %]&op=slip'); return true;"><i class="fa fa-print"></i> Yes, print slip</button> >+ <button type="submit" name="dotransfer" class="print openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&&branchcode=[% returnbranch %]&op=slip"><i class="fa fa-print"></i> Yes, print slip</button> > [% END %] > <button type="submit" name="dotransfer" class="submit"><i class="fa fa-check"></i> Yes</button> > <button type="submit" name="notransfer" class="submit"><i class="fa fa-times"></i> No</button> >-- >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 16566
:
51791
|
51902
|
52551
|
52694
| 52860