Bugzilla – Attachment 68737 Details for
Bug 17039
Add cancel/new item option when editing an item
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17039: Adding 'cancel' link and 'add new item' button to item edit form
Bug-17039-Adding-cancel-link-and-add-new-item-butt.patch (text/plain), 2.70 KB, created by
Kyle M Hall (khall)
on 2017-10-27 14:50:03 UTC
(
hide
)
Description:
Bug 17039: Adding 'cancel' link and 'add new item' button to item edit form
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-10-27 14:50:03 UTC
Size:
2.70 KB
patch
obsolete
>From ab2627ae19588315447d9164683dda797758ac48 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Tue, 29 Aug 2017 03:03:45 +0000 >Subject: [PATCH] Bug 17039: Adding 'cancel' link and 'add new item' button to > item edit form > >To test: >1) Go the the detail page for a record on staff side >2) Edit an existing item and scroll down to Save button >3) Notice no easy way to add a new item or cancel out of the form >4) Apply patch and refresh page >5) You should now see a new button next to the Save button, 'Add a new >item', and a link 'Cancel' >6) Confirm clicking Cancel takes you back to the detail page for the >record >7) Go to edit an item again >8) Change some fields/add some info to the item >9) Click the 'Add a new item' button and a confirm box should pop up. >10) Confirm that clicking 'cancel' does NOT take you to a new page, and >your changes are still there >11) Click the button again, and this time click 'OK' >12) Confirm you are redirected to the 'add item' form > >Sponsored-by: Catalyst IT > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >index 384a9c4..992f161 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >@@ -51,6 +51,12 @@ $(document).ready(function(){ > }); > }); > >+ $("#addnewitem").click(function(){ >+ if ( confirm(_("Are you sure you want to add a new item? Any changes made on this page will be lost.")) ){ >+ window.location.href = "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]"; >+ } >+ }); >+ > var columns_settings = [% ColumnsSettings.GetColumns( 'cataloguing', 'additem', 'itemst', 'json' ) %] > // Skip the first column > columns_settings.unshift( { cannot_be_toggled: "1" } ); >@@ -355,7 +361,9 @@ function confirm_deletion() { > <input type="hidden" name="tag" value="[% itemtagfield %]" /> > <input type="hidden" name="subfield" value="[% itemtagsubfield %]" /> > <input type="hidden" name="field_value" value="[% itemnumber %]" /> >- <input type="submit" value="Save changes" onclick="return Check(this.form)" /> >+ <input type="submit" value="Save changes" onclick="return Check(this.form)"> >+ <input type="button" id="addnewitem" value="Add a new item"> >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">Cancel</a> > [% END %]</fieldset> > > [%# Fields for fast cataloging %] >-- >2.10.2
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 17039
:
66572
|
67133
|
68737
|
68738