From 7ae5323cdae1623f7e85fbe9432a38e221bba03c Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 29 Oct 2014 17:10:22 -0400 Subject: [PATCH] KMAIN 1347: Switched PO and LI values as per card instructions Cross-port: 1f94bdd --- Open-ILS/xul/staff_client/server/cat/update_items.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/cat/update_items.js b/Open-ILS/xul/staff_client/server/cat/update_items.js index c6faead43b..5a3fee1ca6 100644 --- a/Open-ILS/xul/staff_client/server/cat/update_items.js +++ b/Open-ILS/xul/staff_client/server/cat/update_items.js @@ -5,8 +5,8 @@ const rel_vert_pos_copy_count = 3; const rel_vert_pos_barcode = 4; const rel_vert_pos_copy_note = 5; const update_timer = 1000; -const call_number_width = 140; -const barcode_width = 140; +const call_number_width = 145; +const barcode_width = 145; const status_width = 90; var g = {}; g.use_defaults = true; @@ -1514,7 +1514,7 @@ g.render_lineitem_dropdown = function() { var po = g.lineitem_list[i][1]; var li = g.lineitem_list[i][0]; - var li_string = "Li:"+li+" PO:"+po; + var li_string = "PO: "+po+" / LI: "+li; var item = menulist.appendItem( li_string, i ); } -- 2.11.0