From 6e3a07c756874fae4f95dec4dd8d30e3f16bdbef Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Mon, 13 Feb 2017 22:53:10 +0000 Subject: [PATCH] Bug 10086: Link to go to basket from uncertain prices page This patch moves the Edit button into an Edit column, styled with bootstrap button and font awesome icon, and adds a link on the basket name to go to the basket. To test: 1) Add an item with uncertain prices to a basket 2) Go to the vendor of the basket 3) Click Uncertain prices on the left 4) Notice 'edit' button does not look like a button, and basket name is not a link 5) Apply patch and refresh page 6) Basket name is now a link. Click to confirm it takes you to the right page 7) Edit button is now in edit column. Confirm it works as expected 8) Confirm you cannot sort on Edit column and the button does not wrap on a narrower browser 9) Check that the correct information is displayed for the order column (title, author, publisher code, publication year, copyright date, isbn) Sponsored-by: Catalyst IT --- .../prog/en/modules/acqui/uncertainprice.tt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt index 1243a06d13..63e9f08a3d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt @@ -101,18 +101,19 @@ Basket - [% tp('noun', 'Order') | html %] + [% tp('noun', 'Order') | html %] By - Uncertain - Price - Quantity + Uncertain + Price + Quantity + Edit [% FOREACH uncertainpriceorder IN uncertainpriceorders %] - [% uncertainpriceorder.basketname | html %] + [% uncertainpriceorder.basketname %] [% uncertainpriceorder.title | html %] @@ -125,9 +126,6 @@ [% END %] [% IF ( uncertainpriceorder.isbn ) %]
[% uncertainpriceorder.isbn | html %][% END %]
- - Edit - [% uncertainpriceorder.firstname | html %] [% uncertainpriceorder.surname | html %] @@ -146,6 +144,9 @@ [% END %] + + Edit + [% END %] @@ -172,7 +173,7 @@ $(document).ready(function() { var uncertainpricet = $("#uncertainpricet").dataTable($.extend(true, {}, dataTablesDefaults, { "aoColumnDefs": [ - { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, + { 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, ], "sPaginationType": "full" })); -- 2.30.2