Bugzilla – Attachment 143905 Details for
Bug 32045
Cannot order multiple from staged file
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32045: Use bootstrap tabs to select item tab
Bug-32045-Use-bootstrap-tabs-to-select-item-tab.patch (text/plain), 1.99 KB, created by
Nick Clemens (kidclamp)
on 2022-11-15 14:19:11 UTC
(
hide
)
Description:
Bug 32045: Use bootstrap tabs to select item tab
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2022-11-15 14:19:11 UTC
Size:
1.99 KB
patch
obsolete
>From b09c92d0d5daa4b3cf5cc95e3c0038aaa8e98189 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 15 Nov 2022 14:13:53 +0000 >Subject: [PATCH] Bug 32045: Use bootstrap tabs to select item tab > >When the form to add orders from a staged file is validated, we use >toptabs functionality to switch to the item tab if there are missing fields. > >The display now uses bootstrap tabs, so the JS is throwing an error: >Uncaught Error: cannot call methods on tabs prior to initialization; attempted to call method 'option' > >This patch simply switches the call to switch tabs > >To test: >1 - Stage a file for import >2 - Either use Marc(Item)FieldsToOrder to populate the orders > or select a budget on the third tab >3 - View the second tab, items info, confirm itemtype is required, but don't populate it >4 - Attempt to save order, nothing happens >5 - Check the JS console (F12) >6 - Note the error: > Uncaught Error: cannot call methods on tabs prior to initialization; attempted to call method 'option' >7 - Apply patch >8 - Cancel and add from staged file again >9 - Select a budget and save >10 - You now get an error popup: Some required item subfields are not set >11 - Confirm after the error you are shown the items tab >12 - Select itemtype >13 - Save >14 - Confirm orders added successfully >--- > koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >index 34785cda2c..8b960108a1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >@@ -73,7 +73,7 @@ $(document).ready(function() { > > if (0 < CheckMandatorySubfields(this.form)) { > // Open the item tab >- $('#tabs').tabs('option', 'active', 1); >+ $('.nav-tabs .items_info').tab('show'); > > alert(__('Some required item subfields are not set')); > return false; >-- >2.30.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 32045
:
143905
|
143909
|
144051